--- libexporter-tidy-perl-0.07.orig/debian/control +++ libexporter-tidy-perl-0.07/debian/control @@ -0,0 +1,22 @@ +Source: libexporter-tidy-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.0-7) +Maintainer: Debian Perl Group +Uploaders: Ryan Niebur +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Exporter-Tidy/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libexporter-tidy-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libexporter-tidy-perl/ + +Package: libexporter-tidy-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: another way of exporting symbols + Exporter::Tidy serves as an easy, clean alternative to + Exporter. Unlike Exporter, it is not subclassed, but it simply + exports a custom import() into your namespace. + . + With Exporter::Tidy, you don't need to use any package global + in your module. Even the subs you export can be lexically scoped. --- libexporter-tidy-perl-0.07.orig/debian/copyright +++ libexporter-tidy-perl-0.07/debian/copyright @@ -0,0 +1,38 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Juerd Waalboer +Upstream-Source: http://search.cpan.org/dist/Exporter-Tidy/ +Upstream-Name: Exporter-Tidy + +Files: * +Copyright: Juerd Waalboer +License: other + Pick your favourite OSI approved license :) + http://www.opensource.org/licenses/alphabetical + . + See below for examples. + +Files: t/lib/Test/* +Copyright: 2001 by Michael G Schwern +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: + 2004-2008, Marc 'HE' Brockschmidt + 2009, various members of the Debian Perl Grouup, cf. debian/changelog +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' --- libexporter-tidy-perl-0.07.orig/debian/watch +++ libexporter-tidy-perl-0.07/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Exporter-Tidy/ .+/Exporter-Tidy-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libexporter-tidy-perl-0.07.orig/debian/compat +++ libexporter-tidy-perl-0.07/debian/compat @@ -0,0 +1 @@ +7 --- libexporter-tidy-perl-0.07.orig/debian/changelog +++ libexporter-tidy-perl-0.07/debian/changelog @@ -0,0 +1,33 @@ +libexporter-tidy-perl (0.07-2) unstable; urgency=low + + [ Ryan Niebur ] + * Take over for the Debian Perl Group on maintainer's request + (http://lists.debian.org/debian-perl/2008/12/msg00163.html) + * Add debian/watch. + * Add me to uploaders, remove old maintainer(s) + * debhelper 7 + * policy 3.8.0 + + [ gregor herrmann ] + * debian/copyright: switch to new format and add information about + third-party test modules. + * debian/control: cosmetic changes to short and long description. + + -- Ryan Niebur Mon, 19 Jan 2009 23:47:26 -0800 + +libexporter-tidy-perl (0.07-1) unstable; urgency=low + + * New upstream release. + * debian/control: + - Bump Standards-Version to 3.7.3 (no changes needed) + * debian/rules: Don't fail when ExtUtils::Install is smart + enough to not create empty dirs in /usr. (Closes: #467792) + + -- Marc 'HE' Brockschmidt Sat, 15 Mar 2008 11:41:30 +0100 + +libexporter-tidy-perl (0.06-1) unstable; urgency=low + + * Initial Release. + + -- Marc 'HE' Brockschmidt Sun, 14 Mar 2004 17:25:03 +0100 + --- libexporter-tidy-perl-0.07.orig/debian/rules +++ libexporter-tidy-perl-0.07/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + 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