libcoro-perl 6.000-1ubuntu1 source package in Ubuntu

Changelog

libcoro-perl (6.000-1ubuntu1) oneiric; urgency=low

  * Merge from debian unstable.  Remaining changes:
    - debian/patches/sjlj_no_fortify_source.patch: Disable glibc FORTIFY_SOURCE
      when setjmp/longjmp is used, in order to keep coroutine tricks working.
      Fixes armel FTBFS.

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

  * New upstream release
  * Refresh patches
  * Bump Standards-Version to 3.9.2 (no chenges needed)
  * Bump libcoro upstream copyright years
  * Add debian/NEWS with incompatible changes
  * Add fix-wrong-path-for-interpreter patch
  * Add Coro/ecb.h to debian/copyright
 -- Angel Abad <email address hidden>   Fri, 01 Jul 2011 08:43:55 +0200

Upload details

Uploaded by:
Angel Abad
Uploaded to:
Oneiric
Original maintainer:
Ubuntu Developers
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.000.orig.tar.gz 171.4 KiB 06c54fc9d17885f8de0e3d2efa6e2b0e1d93b63e78e6767aa39b0bed603a2610
libcoro-perl_6.000-1ubuntu1.debian.tar.gz 6.4 KiB 2375c3924faee74e92ef595f7e3d99ac1f50042edb68402e2eaf03af37dfe876
libcoro-perl_6.000-1ubuntu1.dsc 1.5 KiB 4b3562edf1cd328e6fa1f93f326b9ccb496b0b26e8f0d0de16a1d186bd3d2d3c

Available diffs

View changes file

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.