--- libtest-hasversion-perl-0.012.orig/debian/control +++ libtest-hasversion-perl-0.012/debian/control @@ -0,0 +1,29 @@ +Source: libtest-hasversion-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), quilt +Build-Depends-Indep: perl (>= 5.6.0-12), libtest-pod-perl, libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Ryan Niebur +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Test-HasVersion/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-hasversion-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-hasversion-perl/ + +Package: libtest-hasversion-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl library to check that Perl modules have version numbers + Do you wanna check that every one of your Perl modules in a distribution has + a version number? You wanna make sure you don't forget the brand new modules + you just added? Well, that's the module you have been looking for. Use it! + . + Do you wanna check someone else's distribution to make sure the author have + not commited the sin of leaving Perl modules without a version that can be + used to tell if you have this or that feature? Test::HasVersion is also for + you, nasty little fellow. + . + There's a script test_version which is installed with this distribution. You + may invoke it from within the root directory of a distribution you just + unpacked, and it will check every .pm file in the directory and under lib/ + (if any). --- libtest-hasversion-perl-0.012.orig/debian/copyright +++ libtest-hasversion-perl-0.012/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: A. R. Ferreira, +Upstream-Source: http://search.cpan.org/dist/Test-HasVersion/ +Upstream-Name: Test-HasVersion + +Files: * +Copyright: 2006 by A. R. Ferreira +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Ryan Niebur +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-hasversion-perl-0.012.orig/debian/watch +++ libtest-hasversion-perl-0.012/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Test-HasVersion/ .*/Test-HasVersion-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-hasversion-perl-0.012.orig/debian/compat +++ libtest-hasversion-perl-0.012/debian/compat @@ -0,0 +1 @@ +7 --- libtest-hasversion-perl-0.012.orig/debian/README.source +++ libtest-hasversion-perl-0.012/debian/README.source @@ -0,0 +1,5 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +See /usr/share/doc/quilt/README.source for a detailed explanation. --- libtest-hasversion-perl-0.012.orig/debian/changelog +++ libtest-hasversion-perl-0.012/debian/changelog @@ -0,0 +1,5 @@ +libtest-hasversion-perl (0.012-1) unstable; urgency=low + + * Initial Release. (Closes: #526417) + + -- Ryan Niebur Mon, 04 May 2009 01:39:53 -0700 --- libtest-hasversion-perl-0.012.orig/debian/rules +++ libtest-hasversion-perl-0.012/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) + dh build + touch $@ + +clean: unpatch + 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 --- libtest-hasversion-perl-0.012.orig/debian/patches/pod-for-test_version +++ libtest-hasversion-perl-0.012/debian/patches/pod-for-test_version @@ -0,0 +1,27 @@ +make a man page for test_version + +--- a/bin/test_version ++++ b/bin/test_version +@@ -1,7 +1,19 @@ +-#!perl ++#!/usr/bin/perl + + use strict; + use warnings; + + use Test::HasVersion; our $VERSION = $Test::HasVersion::VERSION; +-all_pm_version_ok(@ARGV); +\ No newline at end of file ++all_pm_version_ok(@ARGV); ++ ++=head1 NAME ++ ++test_version - check that all Perl modules in a distribution have version numbers ++ ++=head1 DESCRIPTION ++ ++This script runs the Test::HasVersion tests on the distribution in the ++current directory. Test::HasVersion can also be used like normal ++tests, see the Test::HasVersion man page for how to do that. ++ ++=cut --- libtest-hasversion-perl-0.012.orig/debian/patches/series +++ libtest-hasversion-perl-0.012/debian/patches/series @@ -0,0 +1 @@ +pod-for-test_version