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

Changelog

libio-tee-perl (0.66-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libio-tee-perl: Add Multi-Arch: foreign.
  * Update standards version to 4.5.1, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Sun, 16 Oct 2022 06:02:32 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libio-tee-perl_0.66-2.dsc 2.0 KiB 3074fe0f9017743af81ec9ef5cd80cf4eea075603574ab41e972efdb9e45d048
libio-tee-perl_0.66.orig.tar.gz 12.6 KiB 2d9ce7206516f9c30863a367aa1c2b9b35702e369b0abaa15f99fb2cc08552e0
libio-tee-perl_0.66-2.debian.tar.xz 2.8 KiB b02da93ea33d09fcc80ff0f6254fb24366faf7ec56786cf74d4a5f68ffd5d9e9

Available diffs

No changes file available.

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.