--- libmodule-find-perl-0.06.orig/debian/compat +++ libmodule-find-perl-0.06/debian/compat @@ -0,0 +1 @@ +6 --- libmodule-find-perl-0.06.orig/debian/copyright +++ libmodule-find-perl-0.06/debian/copyright @@ -0,0 +1,14 @@ +This is the debian package for the Module-Find module. +It was created by Krzysztof Krzyzaniak (eloy) . + +The upstream author is: Christian Renz, . + +It was downloaded from: http://search.cpan.org/dist/Module-List + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libmodule-find-perl-0.06.orig/debian/changelog +++ libmodule-find-perl-0.06/debian/changelog @@ -0,0 +1,29 @@ +libmodule-find-perl (0.06-2) unstable; urgency=low + + * Fixed broken debian/watch (Cloeses: #450031) + * Added myself as an uploader + + -- Gunnar Wolf Thu, 07 Feb 2008 18:53:22 -0600 + +libmodule-find-perl (0.06-1) unstable; urgency=low + + * New upstream release + + Changed Maintainer from Catalyst Group to Debian Perl Group + + Standards-Version upgraded to 3.7.3 without changes + + added informational headers to control file + + debian/compat increased to 6 without changes + + -- Krzysztof Krzyzaniak (eloy) Thu, 31 Jan 2008 14:13:20 +0100 + +libmodule-find-perl (0.05-1) unstable; urgency=low + + * New upstream release + + -- Krzysztof Krzyzaniak (eloy) Mon, 5 Dec 2005 09:47:31 +0100 + +libmodule-find-perl (0.04-1) unstable; urgency=low + + * Initial Release (closes: #322615) + + -- Krzysztof Krzyzaniak (eloy) Tue, 9 Aug 2005 21:48:46 +0200 + --- libmodule-find-perl-0.06.orig/debian/rules +++ libmodule-find-perl-0.06/debian/rules @@ -0,0 +1,67 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-Wall -O2 -g" + touch build-stamp + +clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) distclean + dh_clean build-stamp install-stamp + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5 + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README test/README + dh_installchangelogs Changes + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +source diff: + @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary --- libmodule-find-perl-0.06.orig/debian/watch +++ libmodule-find-perl-0.06/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Module-Find/ .*/Module-Find-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libmodule-find-perl-0.06.orig/debian/control +++ libmodule-find-perl-0.06/debian/control @@ -0,0 +1,24 @@ +Source: libmodule-find-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 6) +Build-Depends-Indep: perl (>= 5.8.0-7), +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyzaniak (eloy) , Gunnar Wolf +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Module-List +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmodule-find-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libmodule-find-perl + + +Package: libmodule-find-perl +Architecture: all +Depends: ${perl:Depends} +Description: Find and use installed modules in a (sub)category + Module::Find lets you find and use modules in categories. This can be very + useful for auto-detecting driver or plugin modules. You can differentiate + between looking in the category itself or in all subcategories. + . + If you want Module::Find to search in a certain directory on your + harddisk (such as the plugins directory of your software installation), + make sure you modify @INC before you call the Module::Find functions.