--- libfilter-eof-perl-0.04.orig/debian/control +++ libfilter-eof-perl-0.04/debian/control @@ -0,0 +1,22 @@ +Source: libfilter-eof-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.8-7), libtest-pod-perl, + libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov , + gregor herrmann +Standards-Version: 3.7.3 +Homepage: http://search.cpan.org/dist/Filter-EOF/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfilter-eof-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libfilter-eof-perl/ + +Package: libfilter-eof-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Run a callback after a file has been compiled + Filter::EOF utilises Perl's source filters to provide you with a mechanism to + run some code after a file using your module has been processed. + . + It could also be used for appending Perl code to that file's source. --- libfilter-eof-perl-0.04.orig/debian/compat +++ libfilter-eof-perl-0.04/debian/compat @@ -0,0 +1 @@ +5 --- libfilter-eof-perl-0.04.orig/debian/watch +++ libfilter-eof-perl-0.04/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 2; this line is compulsory! +version=3 +http://search.cpan.org/dist/Filter-EOF/ .*/Filter-EOF-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libfilter-eof-perl-0.04.orig/debian/changelog +++ libfilter-eof-perl-0.04/debian/changelog @@ -0,0 +1,26 @@ +libfilter-eof-perl (0.04-2) unstable; urgency=low + + [ Stephen Gran ] + * Add -X.svn to dh_installexamples + + [ Damyan Ivanov ] + * [debian/watch] Stop capturing file extension + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. Added: /me to Uploaders. + * debian/rules: + - delete /usr/lib/perl5 only if it exists (closes: #467825) + - debian/rules: let install-stamp target depend on build-stamp + * debian/watch: use dist-based URL. + * Set Standards-Version to 3.7.3 (no changes). + * debian/copyright: add years of copyright. + + -- gregor herrmann Sat, 08 Mar 2008 13:48:29 +0100 + +libfilter-eof-perl (0.04-1) unstable; urgency=low + + * Initial Release (Closes: #438570 -- ITP) + + -- Damyan Ivanov Fri, 17 Aug 2007 23:56:45 +0300 --- libfilter-eof-perl-0.04.orig/debian/copyright +++ libfilter-eof-perl-0.04/debian/copyright @@ -0,0 +1,30 @@ +This is the debian package for the Filter::EOF module. +It was created by Damyan Ivanov using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Filter-EOF/ + +AUTHOR AND COPYRIGHT + Copyright 2007 Robert 'phaylon' Sedlacek - "". Many thanks to + Matt S Trout for the idea and inspirations on this module. + (Years of copyright taken from Changes.) + +LICENSE + This program is free software; you can redistribute it and/or modify it + under the same terms as perl itself. + +Perl license: + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + +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'. + +The Debian packaging is (C) 2007, Damyan Ivanov and +is licensed under the same terms as the software itself (see above). --- libfilter-eof-perl-0.04.orig/debian/rules +++ libfilter-eof-perl-0.04/debian/rules @@ -0,0 +1,76 @@ +#!/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) + $(MAKE) test + + touch build-stamp + +clean: + dh_testdir + dh_testroot + + [ ! -f Makefile ] || $(MAKE) realclean + + dh_clean build-stamp install-stamp + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + # As this is a architecture independent package, we are not + # supposed to install stuff to /usr/lib. MakeMaker creates + # the dirs, we delete them from the deb: + [ ! -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 for an architecture-independent package here + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples -X.svn examples/* + dh_installdocs + dh_installchangelogs Changes + dh_perl + 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