libdata-stream-bulk-perl 0.08-1 source package in Ubuntu

Changelog

libdata-stream-bulk-perl (0.08-1) unstable; urgency=low

  * New upstream release.
  * Bump build-dep on libmoose-perl to >= 0.89 for "-excludes".
  * No longer run POD tests; remove build-dep on libtest-pod-perl.
  * debian/copyright: Formatting changes for current DEP-5 proposal; refer to
    /usr/share/common-licenses/GPL-1; update years of copyright; refer to
    "Debian systems" instead of "Debian GNU/Linux systems".
  * Use debhelper compat level 8.
  * Bump Standards-Version to 3.9.1.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Fri,  15 Oct 2010 09:37:47 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Natty
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe perl

Builds

Natty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libdata-stream-bulk-perl_0.08.orig.tar.gz 19.1 KiB 49c2cbb6d07651aa44f5cedeba33eb1bfd99ac1c2e5dd88dda5eb0e21b406470
libdata-stream-bulk-perl_0.08-1.debian.tar.gz 2.6 KiB a3df3c469c4db94aafbcdd0f97b18f6861ddefe672259a57aa20f12fc72f6cc3
libdata-stream-bulk-perl_0.08-1.dsc 2.3 KiB 997bb494c03cf2830ec5633082bcf9cdc104ff0cd6c69d38e4468982bbea54a0

Available diffs

View changes file

Binary packages built by this source

libdata-stream-bulk-perl: N at a time iteration API

 Data::Stream::Bulk is a utility for working with data streams of indefinite
 size. It tries to find a middle ground between one-at-a-time and all-at-once
 processing of data sets by providing a common interface for both.
 .
 Often, data sets from streams can fit entirely in memory, so operating on them
 with an array is simple and appropriate. However, in cases where the stream is
 not bounded, the array can grow to a very large size and quickly consume all
 available memory. This module allows developers to work with data in blocks
 which are guaranteed to fit in memory.