--- libpod-eventual-perl-0.093170.orig/debian/control +++ libpod-eventual-perl-0.093170/debian/control @@ -0,0 +1,23 @@ +Source: libpod-eventual-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7.0.50) +Build-Depends-Indep: perl, libtest-deep-perl, libmixin-linewise-perl, + libtest-pod-coverage-perl, libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Jonathan Yu +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/Pod-Eventual/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpod-eventual-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libpod-eventual-perl/ + +Package: libpod-eventual-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libmixin-linewise-perl, + libtest-deep-perl +Description: module to read a POD as a series of trivial events + Pod::Eventual is a collection of Perl modules designed to read line-based + input and produce events describing each POD paragraph or directive it finds. + Once complete, events are immediately passed to the handle_event method. This + method should be implemented by subclasses of Pod::Eventual; otherwise the + default handle_event method will raise an exception. --- libpod-eventual-perl-0.093170.orig/debian/copyright +++ libpod-eventual-perl-0.093170/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59 +Maintainer: Ricardo SIGNES +Source: http://search.cpan.org/dist/Pod-Eventual/ +Name: Pod-Eventual + +Files: * +Copyright: 2009, Ricardo SIGNES +License: Artistic or GPL-1+ + +Files: debian/* +Copyright: 2009, Jonathan Yu +License: Artistic or 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' --- libpod-eventual-perl-0.093170.orig/debian/watch +++ libpod-eventual-perl-0.093170/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Pod-Eventual/ .*/Pod-Eventual-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libpod-eventual-perl-0.093170.orig/debian/compat +++ libpod-eventual-perl-0.093170/debian/compat @@ -0,0 +1 @@ +7 --- libpod-eventual-perl-0.093170.orig/debian/libpod-eventual-perl.examples +++ libpod-eventual-perl-0.093170/debian/libpod-eventual-perl.examples @@ -0,0 +1 @@ +eg/* --- libpod-eventual-perl-0.093170.orig/debian/changelog +++ libpod-eventual-perl-0.093170/debian/changelog @@ -0,0 +1,5 @@ +libpod-eventual-perl (0.093170-1) unstable; urgency=low + + * Initial Release (Closes: #555128) + + -- Jonathan Yu Wed, 18 Nov 2009 08:33:01 -0500 --- libpod-eventual-perl-0.093170.orig/debian/rules +++ libpod-eventual-perl-0.093170/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +%: + dh $@ + +override_dh_auto_test: + RELEASE_TESTING=1 dh_auto_test + +override_dh_installexamples: + dh_installexamples + sed -i '1s|^#!perl|#!/usr/bin/perl|' $(TMP)/usr/share/doc/libpod-eventual-perl/examples/*