File: control

package info (click to toggle)
libanyevent-fork-perl 1.31-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 236 kB
  • sloc: perl: 248; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 1,609 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
30
31
32
33
34
35
36
37
38
Source: libanyevent-fork-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Lucas Kanashiro <kanashiro@debian.org>
Build-Depends: debhelper (>= 11)
Build-Depends-Indep: libanyevent-perl (>= 6),
 libcommon-sense-perl (>= 3.6),
 libio-fdpass-perl (>= 0.2),
 libproc-fastspawn-perl (>= 0.1),
 perl
Standards-Version: 4.1.5
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libanyevent-fork-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libanyevent-fork-perl.git
Homepage: https://metacpan.org/release/AnyEvent-Fork
Testsuite: autopkgtest-pkg-perl

Package: libanyevent-fork-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends},
 libanyevent-perl (>= 6),
 libcommon-sense-perl (>= 3.6),
 libio-fdpass-perl (>= 0.2),
 libproc-fastspawn-perl (>= 0.1)
Description: module to create new processes
 AnyEvent::Fork allows you to create new processes, without actually forking
 them from your current process (avoiding the problems of forking), but
 preserving most of the advantages of fork.
 .
 It can be used to create new worker processes or new independent subprocesses
 for short- and long-running jobs, process pools (e.g. for use in pre-forked
 servers) but also to spawn new external processes (such as CGI scripts from a
 web server), which can be faster (and more well behaved) than using fork+exec
 in big processes.
 .
 Special care has been taken to make this module useful from other modules,
 while still supporting specialised environments such as App::Staticperl or
 PAR::Packer.