r70860 - in /trunk/libchild-perl/debian: ./ changelog compat control copyright libchild-perl.docs rules watch

ivan at users.alioth.debian.org ivan at users.alioth.debian.org
Tue Mar 8 04:55:42 UTC 2011


Author: ivan
Date: Tue Mar  8 04:55:32 2011
New Revision: 70860

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=70860
Log:
[svn-inject] Applying Debian modifications (0.009-1) to trunk

Added:
    trunk/libchild-perl/debian/
    trunk/libchild-perl/debian/changelog
    trunk/libchild-perl/debian/compat
    trunk/libchild-perl/debian/control
    trunk/libchild-perl/debian/copyright
    trunk/libchild-perl/debian/libchild-perl.docs
    trunk/libchild-perl/debian/rules   (with props)
    trunk/libchild-perl/debian/watch

Added: trunk/libchild-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libchild-perl/debian/changelog?rev=70860&op=file
==============================================================================
--- trunk/libchild-perl/debian/changelog (added)
+++ trunk/libchild-perl/debian/changelog Tue Mar  8 04:55:32 2011
@@ -1,0 +1,5 @@
+libchild-perl (0.009-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Mon, 7 Mar 2011 20:24:55 -0800

Added: trunk/libchild-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libchild-perl/debian/compat?rev=70860&op=file
==============================================================================
--- trunk/libchild-perl/debian/compat (added)
+++ trunk/libchild-perl/debian/compat Tue Mar  8 04:55:32 2011
@@ -1,0 +1,1 @@
+7

Added: trunk/libchild-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libchild-perl/debian/control?rev=70860&op=file
==============================================================================
--- trunk/libchild-perl/debian/control (added)
+++ trunk/libchild-perl/debian/control Tue Mar  8 04:55:32 2011
@@ -1,0 +1,33 @@
+Source: libchild-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7),
+ perl
+Build-Depends-Indep: libmodule-build-perl (>= 0.36),
+ perl (>= 5.10.1) | libtest-simple-perl (>= 0.88)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/Child/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libchild-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libchild-perl/
+
+Package: libchild-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ perl
+Description: 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.
+ .
+ NOTE: kill() is unpredictable on windows, strawberry perl sends the kill
+ signal to the parent as well as the child.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libchild-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libchild-perl/debian/copyright?rev=70860&op=file
==============================================================================
--- trunk/libchild-perl/debian/copyright (added)
+++ trunk/libchild-perl/debian/copyright Tue Mar  8 04:55:32 2011
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Chad Granum <exodist7 at gmail.com>
+Source: http://search.cpan.org/dist/Child/
+Name: Child
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: Chad Granum <exodist7 at gmail.com>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2011, Ivan Kohler <ivan-debian at 420.am>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libchild-perl/debian/libchild-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libchild-perl/debian/libchild-perl.docs?rev=70860&op=file
==============================================================================
--- trunk/libchild-perl/debian/libchild-perl.docs (added)
+++ trunk/libchild-perl/debian/libchild-perl.docs Tue Mar  8 04:55:32 2011
@@ -1,0 +1,1 @@
+README

Added: trunk/libchild-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libchild-perl/debian/rules?rev=70860&op=file
==============================================================================
--- trunk/libchild-perl/debian/rules (added)
+++ trunk/libchild-perl/debian/rules Tue Mar  8 04:55:32 2011
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

Propchange: trunk/libchild-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libchild-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libchild-perl/debian/watch?rev=70860&op=file
==============================================================================
--- trunk/libchild-perl/debian/watch (added)
+++ trunk/libchild-perl/debian/watch Tue Mar  8 04:55:32 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Child/   .*/Child-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




More information about the Pkg-perl-cvs-commits mailing list