--- libtest-www-mechanize-cgiapp-perl-0.05.orig/debian/control +++ libtest-www-mechanize-cgiapp-perl-0.05/debian/control @@ -0,0 +1,19 @@ +Source: libtest-www-mechanize-cgiapp-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8), libcgi-application-perl, libtest-www-mechanize-perl, libhttp-request-ascgi-perl, libtest-pod-perl, libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Jaldhar H. Vyas , gregor herrmann +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Test-WWW-Mechanize-CGIApp/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-www-mechanize-cgiapp-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-www-mechanize-cgiapp-perl/ + +Package: libtest-www-mechanize-cgiapp-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libcgi-application-perl, libtest-www-mechanize-perl, libhttp-request-ascgi-perl +Description: Test CGI::Application apps using WWW::Mechanize + This package makes testing CGIApp based modules fast and easy. It takes + advantage of Test::WWW::Mechanize to provide functions for common web testing + scenarios. --- libtest-www-mechanize-cgiapp-perl-0.05.orig/debian/rules +++ libtest-www-mechanize-cgiapp-perl-0.05/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 --- libtest-www-mechanize-cgiapp-perl-0.05.orig/debian/watch +++ libtest-www-mechanize-cgiapp-perl-0.05/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Test-WWW-Mechanize-CGIApp/ .*/Test-WWW-Mechanize-CGIApp-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libtest-www-mechanize-cgiapp-perl-0.05.orig/debian/copyright +++ libtest-www-mechanize-cgiapp-perl-0.05/debian/copyright @@ -0,0 +1,22 @@ +This is the debian package for the Test-WWW-Mechanize-CGIApp module. +It was created by Jaldhar H. Vyas using dh-make-perl +from the original package found at CPAN + +The original package can be downloaded from: + http://search.cpan.org/dist/Test-WWW-Mechanize-CGIApp/ + +The upstream author is: George Hartzell, + +based on Test::WWW::Mechanize::Catalyst by Leon Brocard, .. + +Copyright (C) 2007, George Hartzell + +This module is free software; you can redistribute it or modify it under the +same terms as Perl itself. + +The Artistic and GPL licences under which Perl is distributed can be found +in /usr/share/common-licenses/ . See /usr/share/doc/perl/copyright for +the license of Perl itself. + +The Debian packaging is (C) 2007, Jaldhar H. Vyas and +is licensed under the same terms as the software itself (see above). --- libtest-www-mechanize-cgiapp-perl-0.05.orig/debian/compat +++ libtest-www-mechanize-cgiapp-perl-0.05/debian/compat @@ -0,0 +1 @@ +5 --- libtest-www-mechanize-cgiapp-perl-0.05.orig/debian/changelog +++ libtest-www-mechanize-cgiapp-perl-0.05/debian/changelog @@ -0,0 +1,32 @@ +libtest-www-mechanize-cgiapp-perl (0.05-3) 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. Removed: -1 revision from build dependency on perl. + * debian/rules: + - delete /usr/lib/perl5 only if it exists (closes: #467981) + - update based on dh-make-perl's templates + - don't install README any more (no useful information) + * Set Standards-Version to 3.7.3 (no changes). + * debian/watch: use dist-based URL. + * debian/copyright: use generic download URL for the module. + + -- gregor herrmann Wed, 12 Mar 2008 19:37:54 +0100 + +libtest-www-mechanize-cgiapp-perl (0.05-2) unstable; urgency=low + + [ gregor herrmann ] + * Add watch file. + * Move lib*-perl from Build-Depends to Build-Depends-Indep. + * Add libtest-pod-perl, libtest-pod-coverage-perl to Build-Depends-Indep. + + [ Jaldhar H. Vyas ] + * Added location of upstream tarball to debian/copyright. + + -- Jaldhar H. Vyas Mon, 27 Aug 2007 02:45:04 -0400 + +libtest-www-mechanize-cgiapp-perl (0.05-1) unstable; urgency=low + + * Initial Release. + + -- Jaldhar H. Vyas Fri, 24 Aug 2007 13:35:21 -0400