File: control

package info (click to toggle)
libchild-perl 0.013-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 164 kB
  • sloc: perl: 306; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,270 bytes parent folder | download | duplicates (2)
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
Source: libchild-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ivan Kohler <ivan-debian@420.am>,
           Xavier Guimard <x.guimard@free.fr>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9),
Build-Depends-Indep: perl,
                     libcapture-tiny-perl (>= 0.31)
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libchild-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libchild-perl.git
Homepage: https://metacpan.org/release/Child
Testsuite: autopkgtest-pkg-perl

Package: libchild-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: Object Oriented simple interface to fork()
 Fork is too low level, and difficult to manage. Often people forget to exit
 at the end, reap their children, and check exit status. The problem is the
 low level functions provided to do these things. Throw in pipes for IPC and
 you just have a pile of things nobody wants to think about.
 .
 Child is an Object Oriented interface to fork. It provides a clean way to
 start a child process, and manage it afterwords. It provides methods for
 running, waiting, killing, checking, and even communicating with a child
 process.