libio-tee-perl 0.64-2 source package in Ubuntu

Changelog

libio-tee-perl (0.64-2) unstable; urgency=low

  [ gregor herrmann ]
  * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
    (source stanza).

  [ Nathan Handler ]
  * debian/watch: Update to ignore development releases.

  [ Fabrizio Regalli ]
  * Bump to 3.9.2 Standard-Version.
  * Switch to DEP5 license format.
  * Add myself to Uploaders.
  * Switch d/compat to 8.
  * Build-Depends: switch to debhelper (>= 8).
  * Bump to 3.0 quilt format.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Sun,  12 Jun 2011 12:47:25 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Xenial release universe perl
Trusty release universe perl
Precise release universe perl

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libio-tee-perl_0.64.orig.tar.gz 4.9 KiB 3ed276b1c2d3511338653c2532e73753d284943c1a8f5159ff37fecc2b345ed6
libio-tee-perl_0.64-2.debian.tar.gz 2.2 KiB 1964aa3afc12426170ee0e4291d20db5b4cc09c5ed0c0a68bfea40f6ea35ea70
libio-tee-perl_0.64-2.dsc 1.9 KiB 3debce8ebf8bab6208c8ead3d7a52a1fae2bd2ce63449e3508f3cc939af2d46a

Available diffs

View changes file

Binary packages built by this source

libio-tee-perl: module for multiplexing output to multiple output handles

 IO::Tee objects can be used to multiplex input and output in two
 different ways. The first way is to multiplex output to zero or more
 output handles. The IO::Tee constructor, given a list of output
 handles, returns a tied handle that can be written to. When written
 to (using print or printf), the IO::Tee object multiplexes the
 output to the list of handles originally passed to the constructor.
 As a shortcut, you can also directly pass a string or an array
 reference to the constructor, in which case IO::File::new is called
 for you with the specified argument or arguments.
 .
 The second way is to multiplex input from one input handle to zero or
 more output handles as it is being read. The IO::Tee constructor,
 given an input handle followed by a list of output handles, returns a
 tied handle that can be read from as well as written to. When written
 to, the IO::Tee object multiplexes the output to all handles passed
 to the constructor, as described in the previous paragraph. When read
 from, the IO::Tee object reads from the input handle given as the
 first argument to the IO::Tee constructor, then writes any data
 read to the output handles given as the remaining arguments to the
 constructor.