--- libparams-util-perl-0.30.orig/debian/control +++ libparams-util-perl-0.30/debian/control @@ -0,0 +1,15 @@ +Source: libparams-util-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 4.0.0) +Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl +Maintainer: Jonas Genannt +Standards-Version: 3.7.2 + +Package: libparams-util-perl +Architecture: all +Depends: ${perl:Depends} +Description: Perl extension for simple standalone param-checking functions + Params::Util provides a basic set of importable functions that makes checking + paramters easier. The functions provided by Params::Util check in the most + strictly correct manner, and it should not be fooled by odd cases. --- libparams-util-perl-0.30.orig/debian/changelog +++ libparams-util-perl-0.30/debian/changelog @@ -0,0 +1,39 @@ +libparams-util-perl (0.30-1) unstable; urgency=low + + * New Upstream Version + + -- Jonas Genannt Fri, 26 Oct 2007 20:14:34 +0200 + +libparams-util-perl (0.22-1) unstable; urgency=low + + * New Upstream Version + + -- Jonas Genannt Sat, 10 Feb 2007 16:38:23 +0100 + +libparams-util-perl (0.14-1) unstable; urgency=low + + * New Upstream Release (Closes: #370704) + * Added libtest-pod-perl in Build-Depends-Indep + + -- Jonas Genannt Tue, 13 Jun 2006 22:27:56 +0200 + +libparams-util-perl (0.13-1) unstable; urgency=low + + * New Upstream Release + * Added debian/watch file + * Bumped up to 3.7.2 Standards Version + + -- Jonas Genannt Tue, 9 May 2006 20:47:32 +0100 + +libparams-util-perl (0.10-1) unstable; urgency=low + + * New Upstream Release + + -- Jonas Genannt Sat, 14 Jan 2006 14:18:21 +0100 + +libparams-util-perl (0.07-1) unstable; urgency=low + + * Initial Release (Closes: #341638) + + -- Jonas Genannt Thu, 2 Dec 2005 14:12:32 +0100 + --- libparams-util-perl-0.30.orig/debian/watch +++ libparams-util-perl-0.30/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://mirrors.kernel.org/cpan/modules/by-module/Params/Params-Util-([\d\.]+)\.tar\.gz --- libparams-util-perl-0.30.orig/debian/rules +++ libparams-util-perl-0.30/debian/rules @@ -0,0 +1,62 @@ +#!/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) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + $(MAKE) test + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean + +install: + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) install PREFIX=$(TMP)/usr + rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb --destdir=$(DESTDIR) + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libparams-util-perl-0.30.orig/debian/compat +++ libparams-util-perl-0.30/debian/compat @@ -0,0 +1 @@ +4 --- libparams-util-perl-0.30.orig/debian/copyright +++ libparams-util-perl-0.30/debian/copyright @@ -0,0 +1,18 @@ +This is the debian package for the Params::Util module. +It was created by Jonas Genannt using dh-make-perl. + +It was downloaded from http://search.cpan.org/~adamk/ + +The upstream author is: Adam Kennedy + +Copyright 2005-2006 Adam Kennedy. All rights reserved. + +This program 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'.