--- libclass-singleton-perl-1.4.orig/debian/control +++ libclass-singleton-perl-1.4/debian/control @@ -0,0 +1,28 @@ +Source: libclass-singleton-perl +Maintainer: Debian Perl Group +Uploaders: Ansgar Burchardt +Section: perl +Priority: optional +Standards-Version: 3.8.0 +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8) +Homepage: http://search.cpan.org/dist/Class-Singleton/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-singleton-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-singleton-perl/ + +Package: libclass-singleton-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: implementation of a "Singleton" class + The Class::Singleton module implements a Singleton class from which other + classes can be derived. A Singleton describes an object class that can have + only one instance in any system. An example of a Singleton might be a print + spooler or system registry. + . + By itself, the Class::Singleton module does very little other than manage the + instantiation of a single object. In deriving a class from Class::Singleton, + your module will inherit the Singleton instantiation method and can implement + whatever specific functionality is required. + . + For a description and discussion of the Singleton class, see + "Design Patterns", Gamma et al, Addison-Wesley, 1995, ISBN 0-201-63361-2. --- libclass-singleton-perl-1.4.orig/debian/copyright +++ libclass-singleton-perl-1.4/debian/copyright @@ -0,0 +1,26 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=228 +Upstream-Name: Class-Singleton +Upstream-Maintainer: Andy Wardley +Upstream-Source: http://search.cpan.org/dist/Class-Singleton/ + +Files: * +Copyright: © 1998-2007, Andy Wardley + © 1998 Canon Research Centre Europe Ltd. +License: GPL-1+ | Artistic + This module is free software; you can redistribute it and/or modify + it under the same terms as Perl itself. + . + Perl is distributed under your choice of the GNU General Public License or + the Artistic License. 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'. + +Files: debian/* +Copyright: + © 2002-2003, Brian Nelson + © 2005, Piotr Roszatycki + © 2008, Ansgar Burchardt +License: GPL-1+ | Artistic + It is assumed that all contributors put their work under the same license + as the module itself. + --- libclass-singleton-perl-1.4.orig/debian/watch +++ libclass-singleton-perl-1.4/debian/watch @@ -0,0 +1,3 @@ +version=3 +http://search.cpan.org/dist/Class-Singleton/ .*/Class-Singleton-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ + --- libclass-singleton-perl-1.4.orig/debian/compat +++ libclass-singleton-perl-1.4/debian/compat @@ -0,0 +1 @@ +7 --- libclass-singleton-perl-1.4.orig/debian/changelog +++ libclass-singleton-perl-1.4/debian/changelog @@ -0,0 +1,71 @@ +libclass-singleton-perl (1.4-1) unstable; urgency=low + + [ Damyan Ivanov ] + * Take over for the Debian Perl Group on maintainer's request + (http://lists.debian.org/debian-perl/2008/09/msg00111.html) + + [ Ansgar Burchardt ] + * New upstream release (Closes: #492139) + * debian/watch: Use dist-based URL + * Use debhelper instead of yada + * debian/control: Add Vcs-* fields, add Homepage field, + set Maintainer to Debian Perl Group, add myself to Uploaders, + bump Standards Version to 3.8.0 + * debian/control: Change description slightly + * Convert debian/copyright to proposed machine-readable format + + [ gregor herrmann ] + * debian/copyright: add additional copyright holder, found in comments in + the source. + + -- Ansgar Burchardt Fri, 19 Sep 2008 18:50:38 +0200 + +libclass-singleton-perl (1.03-7) unstable; urgency=low + + * New maintainer release. + * Source package converted to YADA. + * New standards. + + -- Piotr Roszatycki Tue, 19 Jul 2005 13:31:30 +0200 + +libclass-singleton-perl (1.03-6) unstable; urgency=low + + * Updated maintainer email address. + * Bumped up standards version to 3.5.8. + + -- Brian Nelson Wed, 19 Feb 2003 18:10:49 -0800 + +libclass-singleton-perl (1.03-5) unstable; urgency=low + + * Changed Build-Depends to Build-Depends-Indep to fix a lintian error + + -- Brian Nelson Fri, 1 Nov 2002 19:47:30 -0800 + +libclass-singleton-perl (1.03-4) unstable; urgency=low + + * Added "make test" to the build-stamp target in debian/rules + * Removed some unnecessary debhelper commands + * Removed unnecessary usr/lib directory + + -- Brian Nelson Fri, 25 Oct 2002 00:47:26 -0700 + +libclass-singleton-perl (1.03-3) unstable; urgency=low + + * Added pointer to '/usr/share/common-licenses/Artistic' license in + copyright file + + -- Brian Nelson Tue, 15 Oct 2002 10:58:56 -0700 + +libclass-singleton-perl (1.03-2) unstable; urgency=low + + * Packaged to use pristine upstream source + * Cleaned up copyright file + + -- Brian Nelson Sun, 13 Oct 2002 19:51:25 -0700 + +libclass-singleton-perl (1.03-1) unstable; urgency=low + + * Initial Release. (Closes: #165975) + + -- Brian Nelson Tue, 17 Sep 2002 15:04:08 -0700 + --- libclass-singleton-perl-1.4.orig/debian/rules +++ libclass-singleton-perl-1.4/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