--- libproc-fork-perl-0.71.orig/debian/control +++ libproc-fork-perl-0.71/debian/control @@ -0,0 +1,21 @@ +Source: libproc-fork-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Rene Mayorga , Gunnar Wolf , + gregor herrmann , + Ansgar Burchardt +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.1), libexporter-tidy-perl +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libproc-fork-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libproc-fork-perl/ +Homepage: http://search.cpan.org/dist/Proc-Fork/ + +Package: libproc-fork-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libexporter-tidy-perl +Description: Perl interface to fork() system call + Proc::Fork module provides an intuitive, Perl-ish way to write forking + programs by letting you use blocks to illustrate which code section executes + in which fork. --- libproc-fork-perl-0.71.orig/debian/libproc-fork-perl.examples +++ libproc-fork-perl-0.71/debian/libproc-fork-perl.examples @@ -0,0 +1 @@ +eg/* --- libproc-fork-perl-0.71.orig/debian/copyright +++ libproc-fork-perl-0.71/debian/copyright @@ -0,0 +1,24 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=228 +Upstream-Name: Proc-Fork +Upstream-Maintainer: Aristotle Pagaltzis +Upstream-Source: http://search.cpan.org/dist/Proc-Fork/ + +Files: * +Copyright: © 2005-2008, Aristotle Pagaltzis +License: GPL-1+ | Artistic + This module is free software; you can redistribute it and/or modify + it under the same terms as Perl itself. + . + Perl is distributed under your choice of the GNU General Public License or + the Artistic License. On Debian GNU/Linux systems, the complete text of the + GNU General Public License can be found in `/usr/share/common-licenses/GPL' + and the Artistic Licence in `/usr/share/common-licenses/Artistic'. + +Files: debian/* +Copyright: + © 2007, Rene Mayorga + © 2008, Ansgar Burchardt +License: GPL-any + The Debian packaging is licensed under the GPL, see + `/usr/share/common-licenses/GPL'. + --- libproc-fork-perl-0.71.orig/debian/watch +++ libproc-fork-perl-0.71/debian/watch @@ -0,0 +1,4 @@ +version=3 +opts="uversionmangle=s/(\.\d)$/${1}0/" \ +http://search.cpan.org/dist/Proc-Fork/ .*/Proc-Fork-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) + --- libproc-fork-perl-0.71.orig/debian/compat +++ libproc-fork-perl-0.71/debian/compat @@ -0,0 +1 @@ +7 --- libproc-fork-perl-0.71.orig/debian/changelog +++ libproc-fork-perl-0.71/debian/changelog @@ -0,0 +1,55 @@ +libproc-fork-perl (0.71-1) unstable; urgency=low + + [ Ansgar Burchardt ] + * New upstream release. + + add dependency on libexporter-tidy-perl + * Refresh debian/rules for debhelper 7 + * debian/watch: Add uversionmangle in case upstream uses single digit minor + versions again + * Add myself to Uploaders + * Bump Standards Version to 3.8.0 (no changes) + * debian/control: Drop build-deps for POD testing, the test are never run + anyway + + [ gregor herrmann ] + * debian/control: change my email address. + * debian/rules: also remove TEST_POD variable. + + -- Ansgar Burchardt Wed, 24 Sep 2008 19:04:23 +0200 + +libproc-fork-perl (0.61-1) unstable; urgency=low + + [ Rene Mayorga ] + * Preparing the package for perl 5.10 + * debian/control: raise debhelper version to 6 + * debian/compat: set level 6 + * improve debian/watch + * debian/rules + + use dh_linstpackages instead a hardcode name + + [ gregor herrmann ] + * New upstream release. + * debian/rules: delete /usr/lib/perl5 only if it exists. + * debian/rules: extend regexp for matching upstream versions. + * debian/rules: + - always create new Makefile + - use DESTDIR and PREFIX for make install + * Add /me to Uploaders. + + -- gregor herrmann Sat, 02 Feb 2008 23:22:13 +0100 + +libproc-fork-perl (0.6-1) unstable; urgency=low + + * New upstream release + + -- Gunnar Wolf Sun, 23 Dec 2007 12:28:22 -0600 + +libproc-fork-perl (0.4-1) unstable; urgency=low + + [ Rene Mayorga ] + * Initial release (Closes: #452566) + + [ Gunnar Wolf ] + * Bumped up standards-version to 3.7.3 + + -- Gunnar Wolf Thu, 13 Dec 2007 18:16:25 -0600 --- libproc-fork-perl-0.71.orig/debian/rules +++ libproc-fork-perl-0.71/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build