--- libclass-makemethods-perl-1.01.orig/debian/control +++ libclass-makemethods-perl-1.01/debian/control @@ -0,0 +1,22 @@ +Source: libclass-makemethods-perl +Section: perl +Priority: optional +Maintainer: Debian Perl Group +Uploaders: Eric Dorland , gregor herrmann +Build-Depends: debhelper (>= 7.0.50~), quilt (>= 0.46-7) +Build-Depends-Indep: perl +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/Class-MakeMethods/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-makemethods-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-makemethods-perl/ + +Package: libclass-makemethods-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl module for generating common types of methods + The Class::MakeMethods framework allows Perl class developers to + quickly define common types of methods. When a module uses + Class::MakeMethods or one of its subclasses, it can select from a + variety of supported method types, and specify a name for each method + desired. The methods are dynamically generated and installed in the + calling package. --- libclass-makemethods-perl-1.01.orig/debian/copyright +++ libclass-makemethods-perl-1.01/debian/copyright @@ -0,0 +1,53 @@ +Format-Specification: http://dep.debian.net/deps/dep5/ +Maintainer: Matthew Simon Cavalletto +Source: http://search.cpan.org/dist/Class-MakeMethods/ +Name: Class-MakeMethods + +Files: * +Copyright: 2002, 2003 Matthew Simon Cavalletto + Portions copyright 1998, 1999, 2000, 2001 Evolution Online Systems, Inc. + . + Based on Class::MethodMaker, originally developed by Peter Seibel. + Portions Copyright 1996 Organic Online. Portions Copyright 2000 Martyn + J. Pearce. + . + Class::MakeMethods::Emulator::accessors is based on accessors. Portions + by Steve Purkis. + . + Class::MakeMethods::Emulator::AccessorFast is based on + Class::Accessor::Fast. Portions Copyright 2000 Michael G Schwern. + . + Class::MakeMethods::Emulator::Inheritable is based on + Class::Data::Inheritable. Portions Copyright 2000 Damian Conway and + Michael G Schwern. + . + Class::MakeMethods::Emulator::mcoder is based on mcoder. Portions + Copyright 2003 by Salvador Fandi + . + Class::MakeMethods::Emulator::Singleton is based on Class::Singleton, by + Andy Wardley. Portions Copyright 1998 Canon Research Centre Europe Ltd. + . + Class::MakeMethods::Utility::Ref is based on Ref.pm. Portions Copyright + 1994 David Muir Sharnoff. +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2006, Eric Dorland + 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. +X-Comment: + 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. +X-Comment: + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libclass-makemethods-perl-1.01.orig/debian/watch +++ libclass-makemethods-perl-1.01/debian/watch @@ -0,0 +1,5 @@ +version=3 +opts=uversionmangle=s/\.(\d\d)(\d+)$/.${1}.${2}/ \ + http://search.cpan.org/dist/Class-MakeMethods/ .*/Class-MakeMethods-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ +opts=uversionmangle=s/\.(\d\d)(\d+)$/.${1}.${2}/ \ + http://www.cpan.org/authors/id/E/EV/EVO/Class-MakeMethods-([\d\.]+)\.tar\.gz --- libclass-makemethods-perl-1.01.orig/debian/compat +++ libclass-makemethods-perl-1.01/debian/compat @@ -0,0 +1 @@ +7 --- libclass-makemethods-perl-1.01.orig/debian/README.source +++ libclass-makemethods-perl-1.01/debian/README.source @@ -0,0 +1,5 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +See /usr/share/doc/quilt/README.source for a detailed explanation. --- libclass-makemethods-perl-1.01.orig/debian/changelog +++ libclass-makemethods-perl-1.01/debian/changelog @@ -0,0 +1,43 @@ +libclass-makemethods-perl (1.01-4) unstable; urgency=low + + * Take over for the Debian Perl Group on maintainer's request + (http://lists.debian.org/debian-perl/2009/10/msg00004.html) + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza); + ${misc:Depends} to Depends: field. Changed: Maintainer set to Debian + Perl Group (was: Eric + Dorland ); Eric Dorland moved to + Uploaders. + * debian/watch: use dist-based URL. + * Add /me to Uploaders. + * Set Standards-Version to 3.8.3 (no changes). + * Switch from CDBS to debhelper 7. + * New format for debian/copyright. + * Add patch to fix some POD/man problems; add quilt framework. + + -- gregor herrmann Thu, 08 Oct 2009 21:59:24 +0200 + +libclass-makemethods-perl (1.01-3) unstable; urgency=low + + * debian/watch: Add watch file. + * debian/control: + - Upgrade Standards-Version to 3.7.2.0. + - Use Build-Depends instead of Build-Depends-Indep for things + that need to be there for the clean target. + + -- Eric Dorland Thu, 15 Jun 2006 22:14:52 -0400 + +libclass-makemethods-perl (1.01-2) unstable; urgency=low + + * debian/control: + - Use Build-Depends-Indep instead of Build-Depends + - Up Standards-Version to 3.6.2.2. + * debian/compat: Added at 4 to make lintian shut up. + + -- Eric Dorland Thu, 23 Feb 2006 21:28:40 -0500 + +libclass-makemethods-perl (1.01-1) unstable; urgency=low + + * Initial release. + + -- Eric Dorland Thu, 23 Feb 2006 15:41:53 -0500 --- libclass-makemethods-perl-1.01.orig/debian/rules +++ libclass-makemethods-perl-1.01/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh --with quilt $@ --- libclass-makemethods-perl-1.01.orig/debian/patches/fix-pod.patch +++ libclass-makemethods-perl-1.01/debian/patches/fix-pod.patch @@ -0,0 +1,43 @@ +Author: gregor herrmann +Description: fix POD/man issues + +--- a/MakeMethods/Docs/RelatedModules.pod ++++ b/MakeMethods/Docs/RelatedModules.pod +@@ -482,6 +482,8 @@ + + =head2 Class::Hook + ++=over 4 ++ + =item Distribution + + CPAN. Uploaded 12/01. +@@ -490,6 +492,7 @@ + + I have not yet reviewed this module in detail. + ++=back + + =head2 Class::Holon + +--- a/MakeMethods/Template/Generic.pm ++++ b/MakeMethods/Template/Generic.pm +@@ -897,6 +897,7 @@ + =item set_false + + Sets the value to zero. ++ + =back + + =cut +--- a/MakeMethods/Template/StructBuiltin.pm ++++ b/MakeMethods/Template/StructBuiltin.pm +@@ -9,7 +9,7 @@ + + =head1 NAME + +-Class::MakeMethods::Template::StructBuiltin ++Class::MakeMethods::Template::StructBuiltin - generates a wrapper around some builtin function + + =head1 SYNOPSIS + --- libclass-makemethods-perl-1.01.orig/debian/patches/series +++ libclass-makemethods-perl-1.01/debian/patches/series @@ -0,0 +1 @@ +fix-pod.patch