annotate R/rdyncall/DESCRIPTION @ 46:c21d1c2c84e1
 
- removed pydc.py wrapper overhead (which only called pydcext.so functions, directly, anyways)
  * implies renaming pydcext.* to pydc.*
  * while at it, iterate directly over args that are passed in (before we did extract fptr, sig and a tuple for the args and iterated over latter afterwards); we might have a tiny perf improvement now
- added type stub as package_data
 | author | Tassilo Philipp | 
 | date | Fri, 13 Nov 2020 14:10:31 +0100 | 
 | parents | 0cfcc391201f | 
 | children |  | 
 | rev | line source | 
  
| 0 | 1 Package: rdyncall | 
|  | 2 Version: 0.8.0 | 
|  | 3 Date: 2014-09-19 | 
|  | 4 Title: Improved Foreign Function Interface (FFI) and Dynamic Bindings to C Libraries (e.g. OpenGL) | 
|  | 5 Author: Daniel Adler <dadler@uni-goettingen.de> | 
|  | 6 Maintainer: Daniel Adler <dadler@uni-goettingen.de> | 
|  | 7 Depends: R (>= 2.4) | 
|  | 8 Description: The package provides a cross-platform framework for dynamic binding of C libraries using a flexible Foreign Function Interface (FFI). | 
|  | 9   The FFI supports almost all fundamental C types, multiple calling conventions, symbolic access to foreign C struct/union data types and wrapping of R functions as C callback function pointers. | 
|  | 10   Dynamic bindings to shared C libraries are data-driven by cross-platform binding specification using a compact plain text format ; an initial repository of bindings to a couple of common C libraries (OpenGL, SDL, Expat, glew, CUDA, OpenCL, ODE, R) comes with the package. | 
|  | 11   The package includes a variety of technology demos and OS-specific notes for installation of shared libraries. | 
|  | 12 License: file LICENSE | 
|  | 13 URL: http://dyncall.org | 
|  | 14 |