libfuture-perl 0.37-1 source package in Ubuntu

Changelog

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

  * Team upload

  [ Alex Muntada ]
  * Remove inactive pkg-perl members from Uploaders.

  [ Damyan Ivanov ]
  * declare conformance with Policy 4.1.2 (no changes needed)
  * New upstream version 0.37
  * add version to the libmodule-build-perl build dependency
  * drop fix-spelling-error patch, applied upstream

 -- Damyan Ivanov <email address hidden>  Mon, 11 Dec 2017 20:06:39 +0000

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

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfuture-perl_0.37-1.dsc 2.1 KiB d5f5d7a9089f8c5b5a9d4f580b0c82c0b8b6b9d62d84daa0548d1d6c3e0a0a1c
libfuture-perl_0.37.orig.tar.gz 84.9 KiB 1c52059264cf6e29b838a3996e23d334a7c73cf159e9dba5aa385aa9ff89865c
libfuture-perl_0.37-1.debian.tar.xz 3.2 KiB 8ad3a425423f064b8049b70e17073aae882cfed36939a2a2a651d4dd97bf2418

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 asynchronous 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.