File: control

package info (click to toggle)
libcoro-perl 6.540-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 984 kB
  • sloc: ansic: 2,455; perl: 2,121; makefile: 3
file content (53 lines) | stat: -rw-r--r-- 2,182 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
Source: libcoro-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>,
           Xavier Guimard <yadd@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 10),
               libanyevent-perl,
               libcanary-stability-perl,
               libcommon-sense-perl,
               libev-perl,
               libevent-perl,
               libguard-perl,
               perl
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcoro-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcoro-perl.git
Homepage: https://metacpan.org/release/Coro

Package: libcoro-perl
Architecture: any
Multi-Arch: same
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends},
         libanyevent-perl,
         libcommon-sense-perl,
         libguard-perl
Recommends: libev-perl,
            libevent-perl,
            libio-aio-perl,
            libnet-http-perl
Description: Perl framework implementing coroutines
 Coro is a collection of modules which manages continuations in general, most
 often in the form of cooperative threads (also called coros, or simply "coro"
 in the documentation). They do not actually execute at the same time, even on
 machines with multiple processors.
 .
 The specific flavor of thread offered by this module also guarantees you that
 it will not switch between threads unless necessary. It switches at easily-
 identified points in your program, so locking and parallel access are rarely
 an issue, making threaded programming much safer and easier than using other
 threading models.
 .
 Coro provides a full shared address space, which makes communication between
 threads very easy. A parallel matrix multiplication benchmark runs over 300
 times faster on a single core than perl's ithreads on a quad core using all
 four cores.
 .
 This version of Coro has been patched by the Debian Project to provide
 compatibility with Perl 5.22 and Perl 5.24. Please send bug reports to
 Debian (<https://www.debian.org/Bugs/>) and not the original author.