libchild-perl 0.013-2 source package in Ubuntu

Changelog

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

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ Xavier Guimard ]
  * Email change: Xavier Guimard -> <email address hidden>

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

 -- Jelmer Vernooij <email address hidden>  Fri, 10 Jun 2022 15:50:42 +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

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libchild-perl_0.013-2.dsc 2.1 KiB 7c9d69ec6ca0f508067e195fa156dcbefe2c164aa52b2cb70d4265d896f7b203
libchild-perl_0.013.orig.tar.gz 16.0 KiB 65ad57eabc53a85e2b7c6146136969d26f2d3639d8ae4c486beea5982041e860
libchild-perl_0.013-2.debian.tar.xz 2.5 KiB fccd97ed64789ebe8d2fc9b342531953fb7d25801683e50d5aff09f1f4d2689d

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.