--- libmodule-extract-perl-0.01.orig/debian/control +++ libmodule-extract-perl-0.01/debian/control @@ -0,0 +1,23 @@ +Source: libmodule-extract-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.10-12), libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Ansgar Burchardt +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Module-Extract/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmodule-extract-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-extract-perl/ + +Package: libmodule-extract-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: base class for working with Perl distributions + Module::Extract is a convenience base class for modules that work with + Perl distributions. + . + Its purpose is to take care of the mechanisms of locating and extracting + a Perl distribution so that your module can do something specific to the + distribution. + --- libmodule-extract-perl-0.01.orig/debian/copyright +++ libmodule-extract-perl-0.01/debian/copyright @@ -0,0 +1,30 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=226 +Upstream-Name: Module-Extract +Upstream-Maintainer: Adam Kennedy +Upstream-Source: http://search.cpan.org/dist/Module-Extract/ + +Files: * +Copyright: © 2006, Adam Kennedy +License: GPL-1+ | Artistic + This program is free software, you can redistribute it and/or modify it + under the same terms as Perl itself. + . + Perl is distributed under the GNU General Public License, either version 1 or + (at your option) any later version, and the Artistic License. + . + On Debian systems, the complete text of the GNU General Public License can be + found in /usr/share/common-licenses/GPL and the Artistic license in + /usr/share/common-licenses/Artistic. + +Files: inc/* +Copyright: © 2002-2006, Brian Ingerson, Audrey Tang and Adam Kennedy. +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + +Files: debian/* +Copyright: © 2008, Ansgar Burchardt +License: GPL-1+ | Artistic + This program is free software, you can redistribute it and/or modify it + under the same terms as Perl itself. + --- libmodule-extract-perl-0.01.orig/debian/watch +++ libmodule-extract-perl-0.01/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Module-Extract/ .*/Module-Extract-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libmodule-extract-perl-0.01.orig/debian/compat +++ libmodule-extract-perl-0.01/debian/compat @@ -0,0 +1 @@ +7 --- libmodule-extract-perl-0.01.orig/debian/changelog +++ libmodule-extract-perl-0.01/debian/changelog @@ -0,0 +1,5 @@ +libmodule-extract-perl (0.01-1) unstable; urgency=low + + * Initial Release (Closes: #497217) + + -- Ansgar Burchardt Sun, 31 Aug 2008 01:00:56 +0200 --- libmodule-extract-perl-0.01.orig/debian/rules +++ libmodule-extract-perl-0.01/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + AUTOMATED_TESTING=1 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