libchild-perl 0.013-3 source package in Ubuntu

Changelog

libchild-perl (0.013-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libchild-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 16:06:41 +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
libchild-perl_0.013-3.dsc 2.1 KiB a2128f7820793b22984dfc72871b71da5c6f8ef6bff773b01b9f1942d18469e4
libchild-perl_0.013.orig.tar.gz 16.0 KiB 65ad57eabc53a85e2b7c6146136969d26f2d3639d8ae4c486beea5982041e860
libchild-perl_0.013-3.debian.tar.xz 2.5 KiB 9eaa7dc2f25c645240645eb1a901c9f215b767ea828ffee16e3711a0e74c585f

Available diffs

No changes file available.

Binary packages built by this source

libchild-perl: Object Oriented simple interface to fork()

 Fork is too low level, and difficult to manage. Often people forget to exit
 at the end, reap their children, and check exit status. The problem is the
 low level functions provided to do these things. Throw in pipes for IPC and
 you just have a pile of things nobody wants to think about.
 .
 Child is an Object Oriented interface to fork. It provides a clean way to
 start a child process, and manage it afterwords. It provides methods for
 running, waiting, killing, checking, and even communicating with a child
 process.