libcoro-perl 6.310-1 source package in Ubuntu

Changelog

libcoro-perl (6.310-1) unstable; urgency=low


  [ Salvatore Bonaccorso ]
  * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
  * Change search.cpan.org based URIs to metacpan.org based URIs

  [ Xavier Guimard ]
  * Imported Upstream version 6.310
  * Add libanyevent-perl (>= 7) in recommended dependencies and update
    libio-aio-perl dependency version
  * Update patches
  * Update debian/copyright years

 -- Xavier Guimard <email address hidden>  Sun, 12 May 2013 15:55:15 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libcoro-perl_6.310-1.dsc 2.2 KiB 4e3a6f1bbed9a82faad979bb415be015d3eba6f75c6c9e6741433617b1993e40
libcoro-perl_6.310.orig.tar.gz 180.9 KiB a73ace48d940b28e3dfb32d2f3507205d3ddfdc6610075ecc72e19476bb6de44
libcoro-perl_6.310-1.debian.tar.gz 7.3 KiB 9e2f4d13ef062c8dd6ef94b25c045e22fb9c28135ce01af0c8ef75bde1909027

Available diffs

No changes file available.

Binary packages built by this source

libcoro-perl: 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.