--- libtest-signature-perl-1.10.orig/debian/control +++ libtest-signature-perl-1.10/debian/control @@ -0,0 +1,25 @@ +Source: libtest-signature-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0-12), libfile-find-rule-perl, libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Peter Pentchev +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Test-Signature/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-signature-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-signature-perl/ + +Package: libtest-signature-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Recommends: libmodule-signature-perl +Description: Perl module that provides automatic SIGNATURE testing + "Module::Signature" allows you to verify that a distribution has not + been tampered with. "Test::Signature" lets that be tested as part of the + distribution's test suite. + . + IMPORTANT: This is not a substitute for the users verifying the + distribution themselves. By the time this module is run, the users will + have already run your Makefile.PL or Build.PL scripts which could have + been compromised. --- libtest-signature-perl-1.10.orig/debian/copyright +++ libtest-signature-perl-1.10/debian/copyright @@ -0,0 +1,34 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Audrey Tang +Upstream-Source: http://search.cpan.org/dist/Test-Signature/ +Upstream-Name: Test-Signature + +Files: * +Copyright: Copyright 2002, 2003 by Iain Truskett. All rights reserved. + Copyright 2003, 2007 by Audrey Tang . +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: inc/* +Copyright: Copyright 2001-2006 by Brian Ingerson, Audrey Tang and Adam Kennedy +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: Copyright (C) 2009 Peter Pentchev +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-signature-perl-1.10.orig/debian/watch +++ libtest-signature-perl-1.10/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Test-Signature/ .*/Test-Signature-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-signature-perl-1.10.orig/debian/compat +++ libtest-signature-perl-1.10/debian/compat @@ -0,0 +1 @@ +7 --- libtest-signature-perl-1.10.orig/debian/changelog +++ libtest-signature-perl-1.10/debian/changelog @@ -0,0 +1,5 @@ +libtest-signature-perl (1.10-1) unstable; urgency=low + + * Initial Release. (Closes: #519769) + + -- Peter Pentchev Fri, 24 Apr 2009 16:20:59 +0300 --- libtest-signature-perl-1.10.orig/debian/rules +++ libtest-signature-perl-1.10/debian/rules @@ -0,0 +1,27 @@ +#!/usr/bin/make -f + +TEST_FILES= $(filter-out t/0-signature.t,$(shell echo t/*.t)) + +build: build-stamp +build-stamp: + dh build --before dh_auto_test + dh_auto_test -- TEST_FILES="$(TEST_FILES)" + dh build --remaining + 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