--- libclass-accessor-grouped-perl-0.08002.orig/debian/control +++ libclass-accessor-grouped-perl-0.08002/debian/control @@ -0,0 +1,20 @@ +Source: libclass-accessor-grouped-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.8-7), libmro-compat-perl, + libclass-inspector-perl, libtest-pod-coverage-perl, libtest-pod-perl +Maintainer: Debian Perl Group +Uploaders: Krzysztof Krzyzaniak (eloy) , + Ansgar Burchardt +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Class-Accessor-Grouped/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libclass-accessor-grouped-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libclass-accessor-grouped-perl/ + +Package: libclass-accessor-grouped-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libmro-compat-perl, libclass-inspector-perl +Description: Perl module to build groups of accessors + Class::Accessor::Grouped lets you build groups of accessors that will call + different getters and setters. --- libclass-accessor-grouped-perl-0.08002.orig/debian/copyright +++ libclass-accessor-grouped-perl-0.08002/debian/copyright @@ -0,0 +1,34 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=226 +Upstream-Name: Class-Accessor-Grouped +Upstream-Maintainer: Christopher H. Laco +Upstream-Source: http://search.cpan.org/dist/Class-Accessor-Grouped/ + +Files: * +Copyright: + © Matt S. Trout + © Christopher H. Laco +License: GPL-1+ | Artistic + You may distribute this code under the same terms as Perl itself. + . + Perl is distributed under the GNU General Public License, either version 1 or + (at your option) any later version, and the Artistic License. + . + On Debian systems, the complete text of the GNU General Public License can be + found in /usr/share/common-licenses/GPL and the Artistic license in + /usr/share/common-licenses/Artistic. + +Files: inc/* +Copyright: © 2002-2008, Brian Ingerson, Audrey Tang and Adam Kennedy. +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + +Files: debian/* +Copyright: + © 2007, Krzysztof Krzyzaniak (eloy) + © 2007-2008, gregor herrmann + © 2008, Ansgar Burchardt +License: GPL-1+ | Artistic + The Debian packaging is licensed under the same terms as the module + itself (see above). + --- libclass-accessor-grouped-perl-0.08002.orig/debian/watch +++ libclass-accessor-grouped-perl-0.08002/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Class-Accessor-Grouped/ .*/Class-Accessor-Grouped-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libclass-accessor-grouped-perl-0.08002.orig/debian/compat +++ libclass-accessor-grouped-perl-0.08002/debian/compat @@ -0,0 +1 @@ +7 --- libclass-accessor-grouped-perl-0.08002.orig/debian/changelog +++ libclass-accessor-grouped-perl-0.08002/debian/changelog @@ -0,0 +1,62 @@ +libclass-accessor-grouped-perl (0.08002-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + + [ Ansgar Burchardt ] + * New upstream release. + * Convert debian/copyright to proposed machine-readable format. + * Refresh debian/rules for debhelper 7. + * Add myself to Uploaders. + * debian/control: Bump Standards-Version to 3.8.0 (no changes) + + [ gregor herrmann ] + * debian/control: remove libmodule-install-perl from Build-Depends-Indep and + wrap line. + + -- Ansgar Burchardt Sat, 22 Nov 2008 22:11:47 +0100 + +libclass-accessor-grouped-perl (0.08001-1) unstable; urgency=low + + [ gregor herrmann ] + * New upstream release. + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + * debian/rules: delete /usr/lib/perl5 only if it exists. + * debian/watch: use dist-based URL. + * Set Standards-Version to 3.7.3 (no changes needed). + * Set debhelper compatibility level to 6. + * debian/rules: + - remove OPTIMIZE, this package is architecture: all + - move tests to build-stamp target + - move invocation of dh_clean before make realclean + - let install-stamp target depend on build-stamp + - remove unneeded and commented out dh_* calls + - don't install README (just a text version of the POD) + * debian/control: + - move libmodule-install-perl to Build-Depends-Indep + - change short description (thanks, linda) + - remove unneeded ${shlibs:Depends} from Depends. + * debian/copyright: + - add upstream source location + - change to new format + - add packaging copyright + + -- Roberto C. Sanchez Sun, 13 Jan 2008 14:39:35 -0500 + +libclass-accessor-grouped-perl (0.07000-1) unstable; urgency=low + + * New upstream release. + * Add XS-Vcs-Svn field to debian/control. + * Activate additional tests and add libtest-pod-perl and + libtest-pod-coverage-perl to Build-Depends-Indep. + + -- gregor herrmann Sat, 14 Jul 2007 21:51:56 +0200 + +libclass-accessor-grouped-perl (0.06000-1) unstable; urgency=low + + * Initial Release (closes: #429801). + + -- Krzysztof Krzyzaniak (eloy) Tue, 19 Jun 2007 11:52:38 +0200 --- libclass-accessor-grouped-perl-0.08002.orig/debian/rules +++ libclass-accessor-grouped-perl-0.08002/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + TEST_AUTHOR=1 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