--- libclass-whitehole-perl-0.04.orig/debian/control +++ libclass-whitehole-perl-0.04/debian/control @@ -0,0 +1,24 @@ +Source: libclass-whitehole-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0-16) +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-whitehole-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-whitehole-perl/ +Homepage: http://search.cpan.org/~mschwern/Class-WhiteHole/ + +Package: libclass-whitehole-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: base class to treat unhandled method calls as errors + It is possible to accidentally inherit an AUTOLOAD method. Often this + will happen if a class somewhere in the chain uses AutoLoader or + defines one of their own. This can lead to confusing error messages + when method lookups fail. + . + Sometimes you want to avoid this accidental inheritance. In that + case, inherit from Class::WhiteHole. All unhandled methods will + produce normal Perl error messages. --- libclass-whitehole-perl-0.04.orig/debian/copyright +++ libclass-whitehole-perl-0.04/debian/copyright @@ -0,0 +1,31 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Michael G Schwern +Upstream-Source: http://search.cpan.org/dist/Class-WhiteHole/ +Upstream-Name: Class-WhiteHole + +Files: * +Copyright: 2000, Michael G Schwern +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: + 2002-2006, Stephen Quinney + 2006-2009, Bart Martens + 2009, gregor herrmann +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' --- libclass-whitehole-perl-0.04.orig/debian/watch +++ libclass-whitehole-perl-0.04/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Class-WhiteHole/ .*/Class-WhiteHole-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libclass-whitehole-perl-0.04.orig/debian/compat +++ libclass-whitehole-perl-0.04/debian/compat @@ -0,0 +1 @@ +7 --- libclass-whitehole-perl-0.04.orig/debian/changelog +++ libclass-whitehole-perl-0.04/debian/changelog @@ -0,0 +1,68 @@ +libclass-whitehole-perl (0.04-6) unstable; urgency=low + + * Take over for the Debian Perl Group (closes: #510570). + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); ${misc:Depends} to Depends: field. Changed: + Maintainer set to Debian Perl Group (was: Debian QA Group + ); add /me to Uploaders. + * debian/watch: use dist-based URL. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. Use plain debhelper instead of cdbs. + * debian/copyright: switch to new format. + + -- gregor herrmann Sat, 10 Jan 2009 19:15:48 +0100 + +libclass-whitehole-perl (0.04-5) unstable; urgency=low + + * QA upload, orphaning this package. + + -- Bart Martens Thu, 01 Jan 2009 22:46:16 +0100 + +libclass-whitehole-perl (0.04-4) unstable; urgency=low + + * New maintainer, as agreed with Stephen. + * debian/*: Repackaged with cdbs. + * debian/copyright: Updated. + * debian/watch: Updated to version 3. + + -- Bart Martens Thu, 16 Nov 2006 17:08:19 +0100 + +libclass-whitehole-perl (0.04-3) unstable; urgency=low + + * Moved debhelper to Build-Depends + * Switched to my debian.org email address throughout + + -- Stephen Quinney Wed, 21 Jun 2006 18:22:41 +0100 + +libclass-whitehole-perl (0.04-2) unstable; urgency=low + + * debian/watch - Updated URL to stop lookups randomly failing. + * debian/rules - Tidied up. + + -- Stephen Quinney Sat, 11 Jun 2005 14:03:04 +0100 + +libclass-whitehole-perl (0.04-1) unstable; urgency=low + + * New upstream release - just a bug fix for one of the test cases. + * Section changed from interpreters to perl. + * Now using debhelper >= 4. + * Using debian/compat instead of DH_COMPAT. + * Perl manpages now have .3pm file name ending instead of 3perl, as per + Debian Perl policy. + * Updated to policy version 3.6.0. + + -- Stephen Quinney Fri, 25 Jul 2003 11:03:41 +0100 + +libclass-whitehole-perl (0.03-2) unstable; urgency=low + + * Correctly upload the package this time with an .orig.tar.gz... + + -- Stephen Quinney Mon, 30 Dec 2002 17:23:01 +0000 + +libclass-whitehole-perl (0.03-1) unstable; urgency=low + + * Initial Release, closes: #173694. + + -- Stephen Quinney Thu, 19 Dec 2002 16:33:38 +0000 + --- libclass-whitehole-perl-0.04.orig/debian/rules +++ libclass-whitehole-perl-0.04/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