--- libvalidate-net-perl-0.6.orig/debian/control +++ libvalidate-net-perl-0.6/debian/control @@ -0,0 +1,22 @@ +Source: libvalidate-net-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 6) +Build-Depends-Indep: perl (>= 5.8.0-7), libclass-default-perl (>= 0.2), + libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Allard Hoeve , Gunnar Wolf , + gregor herrmann +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Validate-Net/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libvalidate-net-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libvalidate-net-perl/ + +Package: libvalidate-net-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libclass-default-perl (>= 0.2) +Description: Perl module for validating Net:: related strings + Validate::Net is a class designed to assist with the validation of internet + related strings. It can be used to validate CGI forms, internally by modules, + and in any place where you want to check that an internet related string is + valid before handing it off to a Net::* modules. --- libvalidate-net-perl-0.6.orig/debian/copyright +++ libvalidate-net-perl-0.6/debian/copyright @@ -0,0 +1,23 @@ +Upstream author: Adam Kennedy + cpan@ali.as + http://ali.as/. + +Upstream source location: http://search.cpan.org/dist/Validate-Net/ + +Files: * +Copyright: Copyright 2002 - 2008 Adam Kennedy. +License: GPL-1+ | Artistic + 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'. + +Files: debian/* +Copyright: + Copyright 2004, Allard Hoeve + Copyright 2005-2008, Debian Perl Group +License: GPL-1+ | Artistic + The packaging is licensed under the same terms as the software itself. --- libvalidate-net-perl-0.6.orig/debian/watch +++ libvalidate-net-perl-0.6/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Validate-Net/ .*/Validate-Net-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) \ No newline at end of file --- libvalidate-net-perl-0.6.orig/debian/compat +++ libvalidate-net-perl-0.6/debian/compat @@ -0,0 +1 @@ +6 --- libvalidate-net-perl-0.6.orig/debian/changelog +++ libvalidate-net-perl-0.6/debian/changelog @@ -0,0 +1,45 @@ +libvalidate-net-perl (0.6-1) unstable; urgency=low + + * New upstream release. + * debian/copyright: update years of copyright. + * Refresh debian/rules, no functional changes. + * Activate the new pod test by setting AUTOMATED_TESTING in debian/rules and + adding libtest-pod-perl to debian/control. + * debian/control: change my email address. + + -- gregor herrmann Wed, 04 Jun 2008 19:25:02 +0200 + +libvalidate-net-perl (0.5-3) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #467933). + * Set Standards-Version to 3.7.3 (no changes). + * Set debhelper compatibility level to 6. + * debian/watch: use dist-based URL. + * debian/rules: + - update with the help of dh-make-perl's templates + - don't install README any more (text version of the POD documentation) + * debian/copyright: add upstream source location, switch to new format. + * Add /me to Uploaders. + + [ Joachim Breitner ] + * Removed myself from uploaders. + + -- gregor herrmann Wed, 27 Feb 2008 20:13:46 +0100 + +libvalidate-net-perl (0.5-2) unstable; urgency=low + + * Bumped up standards-version to 3.6.2 + * Added dependency on libclass-default-perl (Closes: #323163) + + -- Gunnar Wolf Mon, 15 Aug 2005 10:10:41 -0500 + +libvalidate-net-perl (0.5-1) unstable; urgency=low + + * Initial Release. + + -- Allard Hoeve Thu, 17 Jun 2004 15:13:26 +0200 + --- libvalidate-net-perl-0.6.orig/debian/rules +++ libvalidate-net-perl-0.6/debian/rules @@ -0,0 +1,60 @@ +#!/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 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + AUTOMATED_TESTING=1 $(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 + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install