--- libtest-assertions-perl-1.054.orig/debian/control +++ libtest-assertions-perl-1.054/debian/control @@ -0,0 +1,24 @@ +Source: libtest-assertions-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.8-8), libtest-pod-perl, + libtest-pod-coverage-perl, liblog-trace-perl +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-assertions-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-assertions-perl/ +Homepage: http://search.cpan.org/dist/Test-Assertions/ + +Package: libtest-assertions-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, liblog-trace-perl +Description: simple set of building blocks for unit and runtime testing + Test::Assertions provides a convenient set of tools for constructing tests, + such as unit tests or run-time assertion checks (like C's ASSERT macro). + Unlike some of the Test:: modules available on CPAN, Test::Assertions is + not limited to unit test scripts; for example it can be used to check if + output is as expected within a benchmarking script. + When it is used for unit tests, it generates output in the standard form + for CPAN unit testing (under Test::Harness). --- libtest-assertions-perl-1.054.orig/debian/copyright +++ libtest-assertions-perl-1.054/debian/copyright @@ -0,0 +1,37 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: BBC +Upstream-Authors: John Alden with additions from Piers Kent and Simon Flack +Upstream-Source: http://search.cpan.org/dist/Test-Assertions/ +Upstream-Name: Test-Assertions + +Files: * +Copyright: (c) BBC 2005 +License: GPL-2+ + +Files: debian/* +Copyright: 2007-2009, various members of the Debian Perl Group, + cf. debian/changelog +License: GPL-2+ | Artistic | GPL-1+ + +License: GPL-2+ + 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; version 2 dated June, 1991, or (at your + option) any later version. + On Debian GNU/Linux systems, the complete text of version 2 of the GNU + General Public License can be found in `/usr/share/common-licenses/GPL-2' + +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-assertions-perl-1.054.orig/debian/watch +++ libtest-assertions-perl-1.054/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://search.cpan.org/dist/Test-Assertions/ .*/Test-Assertions-([\.\d]+)\.(?:tar\.gz|tar|tgz)$ --- libtest-assertions-perl-1.054.orig/debian/compat +++ libtest-assertions-perl-1.054/debian/compat @@ -0,0 +1 @@ +7 --- libtest-assertions-perl-1.054.orig/debian/changelog +++ libtest-assertions-perl-1.054/debian/changelog @@ -0,0 +1,26 @@ +libtest-assertions-perl (1.054-2) unstable; urgency=low + + [ David Paleino ] + * debian/control: removed myself from Uploaders (Closes: #509508) + + [ gregor herrmann ] + * debian/control: + - added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza). Removed: XS-Vcs-Svn fields + - added: ${misc:Depends} to Depends: field + - set Standards-Version to 3.8.0 (no changes) + - add /me to Uploaders + * Don't install README anymore. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: switch to new format. + + -- gregor herrmann Wed, 07 Jan 2009 17:18:59 +0100 + +libtest-assertions-perl (1.054-1) unstable; urgency=low + + WAITING FOR liblog-trace-perl + + * Initial Release. + + -- David Paleino Tue, 18 Sep 2007 12:28:35 +0200 --- libtest-assertions-perl-1.054.orig/debian/rules +++ libtest-assertions-perl-1.054/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