--- libclass-returnvalue-perl-0.55.orig/debian/compat +++ libclass-returnvalue-perl-0.55/debian/compat @@ -0,0 +1 @@ +5 --- libclass-returnvalue-perl-0.55.orig/debian/watch +++ libclass-returnvalue-perl-0.55/debian/watch @@ -0,0 +1,4 @@ +version=3 +http://www.cpan.org/authors/id/J/JE/JESSE/Class-ReturnValue-(\d+\.\d+)\.tar\.gz + + --- libclass-returnvalue-perl-0.55.orig/debian/control +++ libclass-returnvalue-perl-0.55/debian/control @@ -0,0 +1,19 @@ +Source: libclass-returnvalue-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.8.0-7), libdevel-stacktrace-perl +Maintainer: Debian Perl Group +Uploaders: Niko Tyni , Damyan Ivanov , gregor herrmann +Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-returnvalue-perl/ +XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-returnvalue-perl/ + +Package: libclass-returnvalue-perl +Architecture: all +Depends: ${perl:Depends}, libdevel-stacktrace-perl +Description: A return-value object that lets you treat it as a boolean, array or object + Class::ReturnValue is a "clever" return value object that can allow + code calling your routine to expect: + a boolean value (did it fail) + or a list (what are the return values) --- libclass-returnvalue-perl-0.55.orig/debian/rules +++ libclass-returnvalue-perl-0.55/debian/rules @@ -0,0 +1,80 @@ +#!/usr/bin/make -f +#-*- makefile -*- +# Made with the aid of dh_make, by Craig Small +# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +# Some lines taken from debmake, by Christoph Lameter. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +ifndef DESTDIR +DESTDIR=.. +endif +TMP =$(CURDIR)/debian/$(PACKAGE) + +configure: configure-stamp +configure-stamp: + dh_testdir + + perl Makefile.PL verbose INSTALLDIRS=vendor + + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + $(MAKE) test + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + [ ! -e Makefile ] || $(MAKE) distclean + + dh_clean build-stamp configure-stamp + +install: + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) install PREFIX=$(TMP)/usr + + # Remove any empty directories + + find $(TMP) -type d -empty -print0 | xargs --null --no-run-if-empty rmdir -p --ignore-fail-on-non-empty + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb --destdir=$(DESTDIR) + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libclass-returnvalue-perl-0.55.orig/debian/changelog +++ libclass-returnvalue-perl-0.55/debian/changelog @@ -0,0 +1,52 @@ +libclass-returnvalue-perl (0.55-1) unstable; urgency=low + + * New upstream release. + * Removed libtest-inline-perl from build dependencies, not needed anymore. + + -- gregor herrmann Sun, 26 Aug 2007 23:58:38 +0200 + +libclass-returnvalue-perl (0.54-1) unstable; urgency=low + + * New upstream release + * Freshen debian/copyright + * debian/watch: version=3; Dropped uupdate + * Added myself to Uploaders: + * Removed unneeded dh_installdirs call + + -- Damyan Ivanov Fri, 17 Aug 2007 12:47:26 +0300 + +libclass-returnvalue-perl (0.53-2) unstable; urgency=low + + * New maintainer. + * Upgrade to Standards-Version 3.7.2. No changes needed. + * Upgrade to debhelper compatibility level 5. + + -- Niko Tyni Mon, 4 Dec 2006 23:25:53 +0200 + +libclass-returnvalue-perl (0.53-1) unstable; urgency=low + + * New upstream release, closes: #329513. + * New maintainer, thanks to Ivan Kohler for his work as the previous + maintainer of the package. + * debian/rules - Altered to fit my preferred methods. + * debian/watch - Added + * debian/copyright - Updated statement + * debian/control - Moved perl and libtest-inline-perl build dependencies + to Build-Depends-Indep. + + -- Stephen Quinney Thu, 22 Sep 2005 13:54:26 +0100 + +libclass-returnvalue-perl (0.52-1) unstable; urgency=low + + * New upstream release. + * Change Section: from interpreters to perl + * debhelper compat v4 + + -- Ivan Kohler Sat, 7 Aug 2004 20:08:53 -0700 + +libclass-returnvalue-perl (0.40-1) unstable; urgency=low + + * Initial Release (closes: Bug#179016). + + -- Ivan Kohler Wed, 29 Jan 2003 19:46:37 -0800 + --- libclass-returnvalue-perl-0.55.orig/debian/copyright +++ libclass-returnvalue-perl-0.55/debian/copyright @@ -0,0 +1,13 @@ +This is the debian package for the Class::ReturnValue module. +It was created by Ivan Kohler using dh-make-perl. + +The upstream author is: Jesse Vincent . + +Copyright (c) 2002,2003,2005,2007 Jesse Vincent + You may use, modify, fold, spindle or mutilate this module 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'.