libanyevent-perl 7.040-3 source package in Ubuntu

Changelog

libanyevent-perl (7.040-3) unstable; urgency=low


  * Switch back to Architecture: any in debian/control.
    debian/rules: make sure we build only arch:any packages as a safeguard
    against making the same mistake again.
    Thanks to Niko Tyni for the analysis.
    (Closes: #708730)

 -- gregor herrmann <email address hidden>  Sat, 18 May 2013 17:39:55 +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
libanyevent-perl_7.040-3.dsc 2.4 KiB a9fc8ec31667d6392a885200ec8bddff74c8f79690ddad051c900023c0428ade
libanyevent-perl_7.040.orig.tar.gz 279.8 KiB 6a9d94fa61c7f5dc515c834eb224dbc6ce4123da8fd5bfa0cf3815f3f3e908b2
libanyevent-perl_7.040-3.debian.tar.gz 8.2 KiB 83e67aa66c64702d7312db4dd7251c6d9485020631cc821d997700d971ec3fa1

Available diffs

No changes file available.

Binary packages built by this source

libanyevent-perl: event loop framework with multiple implementations

 AnyEvent is not an event model itself, it only interfaces to whatever event
 model the main program happens to use, in a pragmatic way. For event models,
 the statement "there can only be one" is a bitter reality: In general, only
 one event loop can be active at the same time in a process. This module
 cannot change this, but it can hide the differences between them.
 .
 The goal of AnyEvent is to offer module authors the ability to do event
 programming (waiting for I/O or timer events) without subscribing to a
 religion, a way of living, and most importantly: without forcing your module
 users into the same thing by forcing them to use the same event model you use.
 .
 During the first call of any watcher-creation method, the module tries to
 detect the currently loaded event loop by probing whether one of the
 following modules is already loaded: EV, AnyEvent::Loop, Event, Glib, Tk,
 Event::Lib, Qt, POE. The first one found is used. If none are detected, the
 module tries to load the first four modules in the order given; but note that
 if EV is not available, the pure-perl AnyEvent::Loop should always work, so
 the other two are not normally tried.