--- libtest-command-perl-0.08.orig/debian/control +++ libtest-command-perl-0.08/debian/control @@ -0,0 +1,21 @@ +Source: libtest-command-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), perl-modules (>= 5.10) | libmodule-build-perl +Build-Depends-Indep: perl (>= 5.8.0), + libtest-pod-perl, libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov , Ansgar Burchardt , + Brian Cassidy +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Test-Command/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-command-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-command-perl/ + +Package: libtest-command-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl module for testing external commands + Test::Command lets you write tests that examine the exit status, STDOUT + and STDERR of any program helping you determine if it is behaving as + expected. --- libtest-command-perl-0.08.orig/debian/copyright +++ libtest-command-perl-0.08/debian/copyright @@ -0,0 +1,35 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Daniel B. Boorstein +Upstream-Source: http://search.cpan.org/dist/Test-Command/ +Upstream-Name: Test-Command + +Files: * +Copyright: 2007, Daniel B. Boorstein +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: + 2008, Ernesto Hernández-Novich (USB) + 2008, Damyan Ivanov + 2008, gregor herrmann + 2009, Ansgar Burchardt + 2009, Brian Cassidy +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + . + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 1, or (at your option) + any later version. + . + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libtest-command-perl-0.08.orig/debian/watch +++ libtest-command-perl-0.08/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Test-Command/ .*/Test-Command-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-command-perl-0.08.orig/debian/compat +++ libtest-command-perl-0.08/debian/compat @@ -0,0 +1 @@ +7 --- libtest-command-perl-0.08.orig/debian/changelog +++ libtest-command-perl-0.08/debian/changelog @@ -0,0 +1,31 @@ +libtest-command-perl (0.08-1) unstable; urgency=low + + * New upstream release + * debian/control: added myself to Uploaders + * debian/watch: remove comment + * debian/copyright: update copyright for debian/* + + -- Brian Cassidy Thu, 14 May 2009 09:30:49 -0300 + +libtest-command-perl (0.04-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * debian/control: Added: ${misc:Depends} to Depends: field. + + [ Ansgar Burchardt ] + * New upstream release. + * Add myself to Uploaders. + * Refresh debian/rules for debhelper 7. + * Add perl-modules (>= 5.10) as an alternative build-dep to + libmodule-build-perl. + + -- Ansgar Burchardt Mon, 11 May 2009 20:19:16 +0200 + +libtest-command-perl (0.02-1) unstable; urgency=low + + [ Ernesto Hernández-Novich (USB) ] + * Initial Release (Closes: #460100). + + -- Damyan Ivanov Tue, 15 Jan 2008 21:24:17 +0200 --- libtest-command-perl-0.08.orig/debian/rules +++ libtest-command-perl-0.08/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build