File: control

package info (click to toggle)
ffcall 2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,756 kB
  • sloc: asm: 95,947; ansic: 42,669; sh: 5,019; makefile: 1,558; cpp: 2
file content (103 lines) | stat: -rw-r--r-- 3,847 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
Source: ffcall
Section: libs
Priority: optional
Maintainer: Debian Common Lisp Team <debian-common-lisp@lists.debian.org>
Uploaders: Sébastien Villemot <sebastien@debian.org>
Build-Depends: debhelper-compat (= 13)
Standards-Version: 4.6.1
Vcs-Git: https://salsa.debian.org/common-lisp-team/ffcall.git
Vcs-Browser: https://salsa.debian.org/common-lisp-team/ffcall
Homepage: https://www.gnu.org/software/libffcall/
Rules-Requires-Root: no

Package: libffcall-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: libffcall1b (= ${binary:Version}),
         libavcall1 (= ${binary:Version}),
         libcallback1 (= ${binary:Version}),
         libtrampoline1 (= ${binary:Version}),
         ${misc:Depends}
Description: foreign function call libraries - development files
 ffcall is a collection of libraries which can be used to build
 foreign function call interfaces in embedded interpreters.
 .
 The main libffcall library consists of two parts:
 .
    avcall - calling C functions with variable arguments
 .
    callback - closures with variable arguments as first-class C functions
 .
 The avcall and callback modules are also provided as separate
 libraries, but those are deprecated and are installed only for backward
 compatibility.
 .
 Two other libraries are provided:
 .
    vacall - C functions accepting variable argument prototypes
    (non-reentrant variant of part of 'callback')
 .
    trampoline - closures as first-class C functions
    (non-reentrant variant of part of 'callback')
 .
 This package also includes documentation, in HTML format and as manual pages.

Package: libffcall1b
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: foreign function call libraries - main shared library
 ffcall is a collection of libraries which can be used to build
 foreign function call interfaces in embedded interpreters.
 .
 This package installs a shared version of the main libffcall library,
 which consists of two parts:
 .
    avcall - calling C functions with variable arguments
 .
    callback - closures with variable arguments as first-class C functions

Package: libavcall1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: foreign function call libraries - calling C functions with variable arguments
 ffcall is a collection of libraries which can be used to build
 foreign function call interfaces in embedded interpreters.
 .
 This package installs a shared library version of the avcall library, which
 can be used for calling C functions with variable arguments.
 .
 The use of this shared library is deprecated. The main libffcall library,
 which embeds avcall, should be preferred.

Package: libcallback1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: foreign function call libraries - closures with variable arguments in C
 ffcall is a collection of libraries which can be used to build
 foreign function call interfaces in embedded interpreters.
 .
 This package installs a shared library version of the callback library, which
 provides closures with variable arguments as first-class C functions.
 .
 The use of this shared library is deprecated. The main libffcall library,
 which embeds callback, should be preferred.

Package: libtrampoline1
Architecture: any
Multi-Arch: same
Depends: ${shlibs:Depends},
         ${misc:Depends}
Description: foreign function call libraries - closures in C (non-reentrant variant)
 ffcall is a collection of libraries which can be used to build
 foreign function call interfaces in embedded interpreters.
 .
 This package installs a shared library version of the trampoline library,
 which implements closures as first-class C functions. This is a non-reentrant
 variant of part of the 'callback' library.