--- libparse-plainconfig-perl-2.06.orig/debian/control +++ libparse-plainconfig-perl-2.06/debian/control @@ -0,0 +1,18 @@ +Source: libparse-plainconfig-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.8.0), libparanoid-perl +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov , Ryan Niebur +Homepage: http://search.cpan.org/dist/Parse-PlainConfig/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libparse-plainconfig-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libparse-plainconfig-perl/ +Standards-Version: 3.8.1 + +Package: libparse-plainconfig-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libparanoid-perl +Description: parser for plain-text configuration files + Parse::PerlConfig provides OO objects which can parse and generate + human-readable configuration files. --- libparse-plainconfig-perl-2.06.orig/debian/copyright +++ libparse-plainconfig-perl-2.06/debian/copyright @@ -0,0 +1,38 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Arthur Corliss +Upstream-Source: http://search.cpan.org/dist/Parse-PlainConfig/ +Upstream-Name: Parse-PlainConfig + +Files: * +Copyright: 2002 Arthur Corliss (corliss@digitalmages.com) +License: GPL-2+ + +Files: debian/* +Copyright: 2006, Ernesto Hernández-Novich + 2008, Damyan Ivanov + 2009, Ryan Niebur + 2009, gregor herrmann +License: GPL-2+ | Artistic | GPL-1+ + +License: GPL-2+ + 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; version 2 dated June, 1991, or (at your + option) any later version. + On Debian GNU/Linux systems, the complete text of version 2 of the GNU + General Public License can be found in `/usr/share/common-licenses/GPL-2' + +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' --- libparse-plainconfig-perl-2.06.orig/debian/watch +++ libparse-plainconfig-perl-2.06/debian/watch @@ -0,0 +1,2 @@ +version=3 +opts="dversionmangle=s/\+pristine//" http://search.cpan.org/dist/Parse-PlainConfig/ .*/Parse-PlainConfig-v?(\d[\d_.\w]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip|rar) --- libparse-plainconfig-perl-2.06.orig/debian/compat +++ libparse-plainconfig-perl-2.06/debian/compat @@ -0,0 +1 @@ +7 --- libparse-plainconfig-perl-2.06.orig/debian/changelog +++ libparse-plainconfig-perl-2.06/debian/changelog @@ -0,0 +1,81 @@ +libparse-plainconfig-perl (2.06-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Maintainer set to Debian Perl Group (was: Debian Perl Project + ). + + [ Ernesto Hernández-Novich (USB) ] + * Fixed watch file since the distribution name has changed to Parse- + PlainConfig (note dash). + + [ Damyan Ivanov ] + * New upstream release + + [ gregor herrmann ] + * debian/control: Added: ${misc:Depends} to Depends: field. + + [ Ryan Niebur ] + * Debian Policy 3.8.1 + * Add myself to Uploaders + * add libparanoid-perl to dependencies + * fix some whitespace in debian/control + + [ gregor herrmann ] + * debian/control: fix URL in homepage (missing dash). + * debian/copyright: switch to new format. + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + + -- Ryan Niebur Thu, 07 May 2009 23:08:09 -0700 + +libparse-plainconfig-perl (1.7a+pristine-1) unstable; urgency=low + + [ Ernesto Hernández-Novich ] + * Moved package into Perl Pkg Project SVN. + * Updated Standards Version. + * Cleanup debian/rules. + * Fixed watch file to account for a trailing letter in version number. + * Fixed copyright and control file with a better URL. + * Fixed Maintainer field in control file. + + [ gregor herrmann ] + * debian/watch: use dist-based URL. + * debian/rules: delete /usr/lib/perl5 only if it exists. + + [ Damyan Ivanov ] + * Upload using pristine source. No differences in content + + added dversionmangle="s/\+pristine//" to debian/watch + + * debian/copyright: + + use machine-readable format + + copy the complete GPL boilerplate + + add explicit copyright/licensing for the packaging + * remove debian/docs; stop shipping README, place CREDITS in + dh_installdocs invokation, place changelog in dh_installchangelogs + invokation + * debhelper compatibility level 6 + * clean Uploaders: and add myself + * Standards-Version 3.7.3 (no changes) + * drop t/testrc9.* from the .diff + * also drop changelog and replace it with CHANGELOG + + -- Damyan Ivanov Thu, 10 Jan 2008 10:40:25 +0200 + +libparse-plainconfig-perl (1.7a-1) unstable; urgency=low + + * Bumped up version number. + + -- Ernesto Hernández-Novich Mon, 09 Oct 2006 10:19:55 -0400 + +libparse-plainconfig-perl (1.7-2) unstable; urgency=low + + * Fixed watch file. + + -- Ernesto Hernández-Novich Fri, 01 Sep 2006 10:09:12 -0400 + +libparse-plainconfig-perl (1.7-1) unstable; urgency=low + + * Initial Release. + + -- Ernesto Hernández-Novich Wed, 03 May 2006 11:25:43 -0400 --- libparse-plainconfig-perl-2.06.orig/debian/rules +++ libparse-plainconfig-perl-2.06/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 --- libparse-plainconfig-perl-2.06.orig/debian/libparse-plainconfig-perl.docs +++ libparse-plainconfig-perl-2.06/debian/libparse-plainconfig-perl.docs @@ -0,0 +1 @@ +CREDITS