--- libconfig-file-perl-1.50.orig/debian/control +++ libconfig-file-perl-1.50/debian/control @@ -0,0 +1,33 @@ +Source: libconfig-file-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), libmodule-build-perl +Build-Depends-Indep: perl (>= 5.8.8-6), + libtest-pod-perl, + libtest-pod-coverage-perl +Maintainer: Debian Perl Group +Uploaders: Gunnar Wolf , + gregor herrmann , + Damyan Ivanov +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Config-File/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libconfig-file-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libconfig-file-perl/ + +Package: libconfig-file-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Conflicts: libconfigfile-perl +Replaces: libconfigfile-perl +Provides: libconfigfile-perl +Description: Parses simple configuration files + ConfigFile parses simple configuration files and store its values in + an anonymous hash reference. The syntax of the configuration file is + quite simple: + . + # This is a comment + VALUE_ONE = foo + VALUE_TWO = $VALUE_ONE/bar + VALUE_THREE = The value contains a \# (hash). # This is a comment. + COMPOSED_VALUE[one] = The first component of a clustered value + COMPOSED_VALUE[two] = The second component of a clustered value --- libconfig-file-perl-1.50.orig/debian/compat +++ libconfig-file-perl-1.50/debian/compat @@ -0,0 +1 @@ +7 --- libconfig-file-perl-1.50.orig/debian/watch +++ libconfig-file-perl-1.50/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://search.cpan.org/dist/Config-File/ .*/Config-File-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip) --- libconfig-file-perl-1.50.orig/debian/rules +++ libconfig-file-perl-1.50/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build --before auto_configure + perl Makefile.PL INSTALLDIRS=vendor CREATE_PACKLIST=0 + dh build --after auto_configure + 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 --- libconfig-file-perl-1.50.orig/debian/copyright +++ libconfig-file-perl-1.50/debian/copyright @@ -0,0 +1,25 @@ +Upstream source location: http://search.cpan.org/dist/Config-File/ + +Upstream authors: + Development was started by Sebastien J. Gross , and + since 2003 it is maintained by Gunnar Wolf . + +Files: * +Copyright: + Copyright (c) 2002 Sebastien J. Gross + Copyright (c) 2003-2009 Gunnar Wolf +License: GPL-1+ + This program is free software; you can redistribute it and/or modify it + under the terms of the GPL. + +On Debian systems, you can find the full text for the GPL in +/usr/share/common-licenses/GPL + +Files: * +Copyright: + Copyright 2002, Sebastien J. Gross + Copyright 2003-2006, 2008, 2009 Gunnar Wolf + Copyright 2007, 2009 Damyan Ivanov + Copyright 2008 gregor herrmann +License: GPL-1+ + The packaging is licensed under the same terms as the software itself. --- libconfig-file-perl-1.50.orig/debian/changelog +++ libconfig-file-perl-1.50/debian/changelog @@ -0,0 +1,162 @@ +libconfig-file-perl (1.50-2) unstable; urgency=low + + * add libtest-pod-perl and libtest-pod-coverage-perl to B-D-I + Closes: #516276 -- Missing Build-Depends + Thanks to Daniel Schepler + * debian/rules converted to debhelper 7; compat/control adjusted + * debian/copyright: + + adjusted upstream copyright years + + replace group packaging copyright with individual developers according + to debian/changelog + + -- Damyan Ivanov Fri, 20 Feb 2009 15:32:02 +0200 + +libconfig-file-perl (1.50-1) unstable; urgency=low + + * New upstream release + + -- Gunnar Wolf Tue, 20 Jan 2009 14:02:07 -0600 + +libconfig-file-perl (1.46-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * debian/control: Added: ${misc:Depends} to Depends: field. + * standards-version -> 3.8.0 (no changes) + + [ Gunnar Wolf ] + * New upstream release + * Switched the build system used to Module::Build + + -- Gunnar Wolf Thu, 11 Dec 2008 22:00:24 -0600 + +libconfig-file-perl (1.42-1) unstable; urgency=low + + * New upstream release + + -- Gunnar Wolf Wed, 05 Mar 2008 10:19:20 -0600 + +libconfig-file-perl (1.41-2) unstable; urgency=low + + [ gregor herrmann ] + * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #467721). + * Set Standards-Version to 3.7.3 (no changes). + * Set debhelper compatibility level to 6. + * debian/watch: improve regexp for matching upstream versions. + * debian/copyright: minor cleanup and change to new format. + * debian/rules: + - remove DESTDIR variable + - create install-stamp target depending on build-stamp + - move dh_clean before make distclean and use it for removing + stamp-files + - use DESTDIR and PREFIX for make install + + [ David Paleino ] + * debian/control: removed myself from Uploaders + + -- gregor herrmann Sat, 01 Mar 2008 21:13:21 +0100 + +libconfig-file-perl (1.41-1) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser + field (source stanza); Homepage field (source stanza). Removed: XS- + Vcs-Svn fields. + + [ David Paleino ] + * New upstream release + * debian/control: added myself to Uploaders (and wrapping the field) + * debian/watch updated to version 3 (using new regex as well) + * debian/rules beautified (comments removed, ...) + + [ Damyan Ivanov ] + * Cleaned debian/rules more + + `pwd` --> $(CURDIR) + + package is arch:all, so build in binary-indep target + + drop unused dh_link, dh_installdirs, dh_shlibdeps, dh_strip + + stop exporting DH_COMPAT and use debian/compat + * Add myself to Uploaders + + -- Damyan Ivanov Sat, 20 Oct 2007 00:06:44 +0300 + +libconfig-file-perl (1.4-2) unstable; urgency=low + + [ gregor herrmann ] + * Fix long description by adding additional spaces (closes: #387044). + * Move perl from Build-Depends to Build-Depends-Indep. + * Remove empty /usr/lib/perl5 directory from package. + + [ Gunnar Wolf ] + * Added watch file + + -- Gunnar Wolf Tue, 12 Sep 2006 16:50:26 -0500 + +libconfig-file-perl (1.4-1) unstable; urgency=low + + * No longer a Debian-native package, now a proper regular + package. Complete with CPAN upload and everything, yay! + * Renamed from ConfigFile to Config::File, requiring a package + rename. (Closes: #386146) + * Transferred maintainership to the Debian Perl group, with me still as + an uploader + + -- Gunnar Wolf Thu, 7 Sep 2006 18:05:05 -0500 + +libconfigfile-perl (1.3) unstable; urgency=low + + * Bumped up standards-version to 3.7.2 (no changes needed) + * Bumped up dependencies: Debhelper 5, Perl 5.8.8 + * Reports configuration syntax errors properly (Closes: #384645) + * No longer blindly runs "make clean" as part of the "clean" + debian/rules target + + -- Gunnar Wolf Mon, 28 Aug 2006 16:52:49 -0500 + +libconfigfile-perl (1.2.1) unstable; urgency=low + + * Forgot to document some changes... Here they are :-/ + + -- Gunnar Wolf Mon, 11 Apr 2005 11:04:49 -0500 + +libconfigfile-perl (1.2) unstable; urgency=medium + + * Fixed: Unquoted \' caused eval errors (Closes: #304043) + * Fixed: No longer truncates the character just before a # (Thanks, + Marc Brockschmidt!) (Closes: #304064) + + -- Gunnar Wolf Mon, 11 Apr 2005 09:53:40 -0500 + +libconfigfile-perl (1.1.1) unstable; urgency=low + + * A very simple but needed bugfix - declaring the @EXPORT_OK variable. + (Closes: #217677) + * Now does a 'make test' as part of the build process, to avoid + problems similar to 217677 + + -- Gunnar Wolf Sun, 26 Oct 2003 20:50:07 -0600 + +libconfigfile-perl (1.1) unstable; urgency=low + + * New maintainer (Gunnar Wolf) + * Modified ConfigFile.pm so it will not export read_config_file into + the caller's namespace unless when explicitly asked to do so + + -- Gunnar Wolf Fri, 24 Oct 2003 15:23:54 -0500 + +libconfigfile-perl (1.0.0-1) unstable; urgency=low + + * Add clustered keys + * (closes: #167250) + + -- Sebastien J. Gross Fri, 22 Nov 2002 21:06:26 +0100 + +libconfigfile-perl (0.0.1-1) unstable; urgency=low + + * Initial Release. + + -- Sebastien J. Gross Mon, 8 Apr 2002 11:58:47 +0200 + +Local variables: +mode: debian-changelog +End: