File: control

package info (click to toggle)
ocaml-spawn 0.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 212 kB
  • sloc: ansic: 569; ml: 374; makefile: 22
file content (68 lines) | stat: -rw-r--r-- 2,406 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
Source: ocaml-spawn
Section: ocaml
Priority: optional
Maintainer: Debian OCaml Maintainers <debian-ocaml-maint@lists.debian.org>
Uploaders: Stéphane Glondu <glondu@debian.org>
Build-Depends:
 debhelper-compat (= 13),
 ocaml,
 ocaml-dune,
 libppx-expect-ocaml-dev <!nocheck>,
 dh-ocaml (>= 2)
Standards-Version: 4.7.2
Rules-Requires-Root: no
Homepage: https://github.com/janestreet/spawn
Vcs-Browser: https://salsa.debian.org/ocaml-team/ocaml-spawn
Vcs-Git: https://salsa.debian.org/ocaml-team/ocaml-spawn.git

Package: libspawn-ocaml-dev
Provides: ${ocaml:Provides}
Architecture: any
Depends:
 ${ocaml:Depends},
 ${shlibs:Depends},
 ${misc:Depends}
Recommends:
 ocaml-findlib,
Description: spawning sub-processes (development)
 Spawn is a small OCaml library exposing only one functionality:
 spawning sub-process.
 .
 It has three main goals:
  1. provide missing features of Unix.create_process such as providing
     a working directory
  2. provide better errors when a system call fails in the
     sub-process. For instance if a command is not found, you get a
     proper [Unix.Unix_error] exception
  3. improve performance by using vfork when available. It is often
     claimed that nowadays fork is as fast as vfork, however in
     practice fork takes time proportional to the process memory while
     vfork is constant time. In application using a lot of memory,
     vfork can be thousands of times faster than fork.
 .
 This package contains development files.

Package: libspawn-ocaml
Provides: ${ocaml:Provides}
Architecture: any
Depends:
 ${ocaml:Depends},
 ${shlibs:Depends},
 ${misc:Depends}
Description: spawning sub-processes (runtime)
 Spawn is a small OCaml library exposing only one functionality:
 spawning sub-process.
 .
 It has three main goals:
  1. provide missing features of Unix.create_process such as providing
     a working directory
  2. provide better errors when a system call fails in the
     sub-process. For instance if a command is not found, you get a
     proper [Unix.Unix_error] exception
  3. improve performance by using vfork when available. It is often
     claimed that nowadays fork is as fast as vfork, however in
     practice fork takes time proportional to the process memory while
     vfork is constant time. In application using a lot of memory,
     vfork can be thousands of times faster than fork.
 .
 This package contains runtime files.