libfuture-perl 0.32-1 source package in Ubuntu

Changelog

libfuture-perl (0.32-1) unstable; urgency=medium

  * Team upload.

  [ Salvatore Bonaccorso ]
  * Update Vcs-Browser URL to cgit web frontend

  [ Axel Beckert ]
  * Mark package as autopkgtestable
  * Declare compliance with Debian Policy 3.9.6
  * Add explicit build dependency on libmodule-build-perl
  * Add debian/upstream/metadata
  * Import upstream version 0.32
    + Add debian/NEWS for upstream API changes.

 -- Axel Beckert <email address hidden>  Sun, 07 Jun 2015 14:44:45 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfuture-perl_0.32-1.dsc 2.1 KiB b3fec3481f707c7fbbd0bd7ad834f0fbfc1eb99f4f755cfd7934f40b93e5f40a
libfuture-perl_0.32.orig.tar.gz 78.2 KiB 39418065446e15dd579f2359094efe04b1f836a5805c4ce4e8287b05de27b58d
libfuture-perl_0.32-1.debian.tar.xz 2.8 KiB 938d43a571e700da59dd094bb0df256ff254308c8e43a5cfe7dd18f0b4302139

Available diffs

No changes file available.

Binary packages built by this source

libfuture-perl: module for operations awaiting completion

 A Future object represents an operation that is currently in progress, or
 has recently completed. It can be used in a variety of ways to manage the
 flow of control, and data, through an asynchronous program.
 .
 Some futures represent a single operation and are explicitly marked as ready
 by calling the done or fail methods. These are called "leaf" futures here,
 and are returned by the new constructor.
 .
 Other futures represent a collection sub-tasks, and are implicitly marked as
 ready depending on the readiness of their component futures as required.
 These are called "dependent" futures here, and are returned by the various
 wait_* and need_* constructors.
 .
 It is intended that library functions that perform asynchonous operations
 would use Future objects to represent outstanding operations, and allow their
 calling programs to control or wait for these operations to complete. The
 implementation and the user of such an interface would typically make use of
 different methods on the class. The methods below are documented in two
 sections; those of interest to each side of the interface.