r60 - in packages/libconfig-auto-perl/trunk: . debian

Allard Hoeve hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 07:28:11 -0600


Author: hoeve-guest
Date: 2004-06-10 07:28:07 -0600 (Thu, 10 Jun 2004)
New Revision: 60

Added:
   packages/libconfig-auto-perl/trunk/debian/
   packages/libconfig-auto-perl/trunk/debian/changelog
   packages/libconfig-auto-perl/trunk/debian/compat
   packages/libconfig-auto-perl/trunk/debian/control
   packages/libconfig-auto-perl/trunk/debian/copyright
   packages/libconfig-auto-perl/trunk/debian/rules
   packages/libconfig-auto-perl/trunk/debian/watch
Log:
Load libconfig-auto-perl-0.06 into packages/libconfig-auto-perl/trunk.


Added: packages/libconfig-auto-perl/trunk/debian/changelog
===================================================================
--- packages/libconfig-auto-perl/trunk/debian/changelog	2004-06-10 13:26:55 UTC (rev 59)
+++ packages/libconfig-auto-perl/trunk/debian/changelog	2004-06-10 13:28:07 UTC (rev 60)
@@ -0,0 +1,6 @@
+libconfig-auto-perl (0.06-1) unstable; urgency=low
+
+  * Initial Release (Closes: #233240)
+
+ -- Marc 'HE' Brockschmidt <he@debian.org>  Thu, 26 Feb 2004 16:08:21 +0100
+

Added: packages/libconfig-auto-perl/trunk/debian/compat
===================================================================
--- packages/libconfig-auto-perl/trunk/debian/compat	2004-06-10 13:26:55 UTC (rev 59)
+++ packages/libconfig-auto-perl/trunk/debian/compat	2004-06-10 13:28:07 UTC (rev 60)
@@ -0,0 +1 @@
+4

Added: packages/libconfig-auto-perl/trunk/debian/control
===================================================================
--- packages/libconfig-auto-perl/trunk/debian/control	2004-06-10 13:26:55 UTC (rev 59)
+++ packages/libconfig-auto-perl/trunk/debian/control	2004-06-10 13:28:07 UTC (rev 60)
@@ -0,0 +1,27 @@
+Source: libconfig-auto-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libconfig-inifiles-perl, libxml-simple-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Marc 'HE' Brockschmidt <he@debian.org>
+Standards-Version: 3.6.1
+
+Package: libconfig-auto-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libconfig-inifiles-perl, libxml-simple-perl
+Description: Magical config file parser
+ libconfig-auto-perl allows developers to parse config files without
+ needing to specify the format of the file (though they can do it).
+ .
+ It even looks for the config file in standard places (working dir, 
+ home dir, /etc) and tries some common config file names if the path
+ isn't specified in the call.
+ .
+ It then determines the format of the config file, parses it and then
+ returns a data structure containing the configuration data. The format
+ of this structure depends on the format of the file.
+ .
+ At the moment, libconfig-auto-perl knows about colon, space and equals
+ separated, XML, Perl, Windows INI, BIND9 and irssi style config files,
+ though files in BIND9 or irssi format cannot be parsed.

Added: packages/libconfig-auto-perl/trunk/debian/copyright
===================================================================
--- packages/libconfig-auto-perl/trunk/debian/copyright	2004-06-10 13:26:55 UTC (rev 59)
+++ packages/libconfig-auto-perl/trunk/debian/copyright	2004-06-10 13:28:07 UTC (rev 60)
@@ -0,0 +1,18 @@
+This is the debian package for the Config::Auto Perl module.
+It was created by Marc 'HE' Brockschmidt <he@debian.org>.
+
+The sources were downloaded from CPAN.
+
+The upstream author is Jos Boumans <kane@cpan.org>.
+
+This module is Copyright (c) 2003 Jos Boumans <kane@cpan.org>.
+All rights reserved.
+
+This library is free software; you may redistribute and/or 
+modify it under the same terms as Perl itself (GPL and Artistic
+license).
+
+On Debian systems the complete text of the GPL and Artistic
+licenses can be found at:
+        /usr/share/common-licenses/GPL and
+        /usr/share/common-licenses/Artistic

Added: packages/libconfig-auto-perl/trunk/debian/rules
===================================================================
--- packages/libconfig-auto-perl/trunk/debian/rules	2004-06-10 13:26:55 UTC (rev 59)
+++ packages/libconfig-auto-perl/trunk/debian/rules	2004-06-10 13:28:07 UTC (rev 60)
@@ -0,0 +1,88 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc@dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)"
+	
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	-$(MAKE) distclean
+	
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	# As this is a architecture independent package, we are not supposed to install
+	# stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary


Property changes on: packages/libconfig-auto-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libconfig-auto-perl/trunk/debian/watch
===================================================================
--- packages/libconfig-auto-perl/trunk/debian/watch	2004-06-10 13:26:55 UTC (rev 59)
+++ packages/libconfig-auto-perl/trunk/debian/watch	2004-06-10 13:28:07 UTC (rev 60)
@@ -0,0 +1,2 @@
+version=2
+http://search.cpan.org/CPAN/authors/id/K/KA/KANE/Config-Auto-(.*)\.tar\.gz