--- libnumber-compare-perl-0.01.orig/debian/rules +++ libnumber-compare-perl-0.01/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + + dh_clean build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +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 install --- libnumber-compare-perl-0.01.orig/debian/watch +++ libnumber-compare-perl-0.01/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Number-Compare/ .*/Number-Compare-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libnumber-compare-perl-0.01.orig/debian/compat +++ libnumber-compare-perl-0.01/debian/compat @@ -0,0 +1 @@ +5 --- libnumber-compare-perl-0.01.orig/debian/copyright +++ libnumber-compare-perl-0.01/debian/copyright @@ -0,0 +1,24 @@ +Upstream source location: http://search.cpan.org/dist/Number-Compare/ + +Upstream Author: Richard Clamp + +Files: * +Copyright: Copyright (C) 2002 Richard Clamp. All Rights Reserved. +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: + Copyright 2004, S. Zachariah Sprackett + Copyright 2006, David Moreno Garza + Copyright 2006, Matej Vela + Copyright 2006-2008, Debian Perl Group +License: GPL-1+ | Artistic + It is assumed that all contributors put their work under the same license + as the software itself. --- libnumber-compare-perl-0.01.orig/debian/changelog +++ libnumber-compare-perl-0.01/debian/changelog @@ -0,0 +1,47 @@ +libnumber-compare-perl (0.01-5) unstable; urgency=low + + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/watch: use dist-based URL. + * debian/rules: + - delete /usr/lib/perl5 only if it exists (closes: #467997) + - update based on dh-make-perl's templates + * Set Standards-Version to 3.7.3 (no changes). + * debian/copyright: use specific download URL, add actual copyright, fix + license, convert to new format. + + -- gregor herrmann Sun, 09 Mar 2008 16:28:13 +0100 + +libnumber-compare-perl (0.01-4) unstable; urgency=low + + * New Maintainer: Debian Perl Group. + * Add watch files. + * Activate tests in debian/rules. + + -- gregor herrmann Fri, 15 Sep 2006 00:39:17 +0200 + +libnumber-compare-perl (0.01-3) unstable; urgency=low + + * Adopting package (Closes: #357348). + * Updated Policy version. + * No need for dependency on perl-modules. + + -- David Moreno Garza Tue, 30 May 2006 16:23:40 -0500 + +libnumber-compare-perl (0.01-2) unstable; urgency=low + + * QA upload. + * Package is orphaned (#357348); set maintainer to Debian QA Group. + * Switch to debhelper 5. + * debian/watch: Add. + * Conforms to Standards version 3.6.2. + + -- Matej Vela Mon, 3 Apr 2006 19:11:17 +0200 + +libnumber-compare-perl (0.01-1) unstable; urgency=low + + * Initial Release. + + -- S. Zachariah Sprackett Thu, 15 Jul 2004 20:44:09 -0400 + --- libnumber-compare-perl-0.01.orig/debian/control +++ libnumber-compare-perl-0.01/debian/control @@ -0,0 +1,18 @@ +Source: libnumber-compare-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>> 5.6) +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Number-Compare/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libnumber-compare-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libnumber-compare-perl/ + +Package: libnumber-compare-perl +Architecture: all +Depends: ${perl:Depends} +Description: Perform numeric comparisons in Perl + Compile a simple comparison to an anonymous subroutine, which can then be + called with a value to be tested against.