r64 - in packages/libconfigreader-perl/trunk: . debian
Allard Hoeve
hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 07:30:45 -0600
Author: hoeve-guest
Date: 2004-06-10 07:30:40 -0600 (Thu, 10 Jun 2004)
New Revision: 64
Added:
packages/libconfigreader-perl/trunk/Makefile.PL
packages/libconfigreader-perl/trunk/debian/
packages/libconfigreader-perl/trunk/debian/changelog
packages/libconfigreader-perl/trunk/debian/compat
packages/libconfigreader-perl/trunk/debian/control
packages/libconfigreader-perl/trunk/debian/copyright
packages/libconfigreader-perl/trunk/debian/rules
Modified:
packages/libconfigreader-perl/trunk/Values.pm
Log:
Load libconfigreader-perl-0.5 into packages/libconfigreader-perl/trunk.
Added: packages/libconfigreader-perl/trunk/Makefile.PL
===================================================================
--- packages/libconfigreader-perl/trunk/Makefile.PL 2004-06-10 13:29:25 UTC (rev 63)
+++ packages/libconfigreader-perl/trunk/Makefile.PL 2004-06-10 13:30:40 UTC (rev 64)
@@ -0,0 +1,2 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(NAME => 'ConfigReader');
Modified: packages/libconfigreader-perl/trunk/Values.pm
===================================================================
--- packages/libconfigreader-perl/trunk/Values.pm 2004-06-10 13:29:25 UTC (rev 63)
+++ packages/libconfigreader-perl/trunk/Values.pm 2004-06-10 13:30:40 UTC (rev 64)
@@ -40,7 +40,7 @@
=head1 USER METHODS
-=head2 C<directive($directive, [$parser, [$default, [$whence]]])
+=head2 C<directive($directive, [$parser, [$default, [$whence]]])>
Defines a directive named $directive for the configuration file. You
may optionally specify a parsing function or method for the directive,
@@ -77,7 +77,7 @@
}
-=head2 C<required($directive, [$parser, [$whence]])
+=head2 C<required($directive, [$parser, [$whence]])>
Defines a directive which must be specified in the configuration file.
Added: packages/libconfigreader-perl/trunk/debian/changelog
===================================================================
--- packages/libconfigreader-perl/trunk/debian/changelog 2004-06-10 13:29:25 UTC (rev 63)
+++ packages/libconfigreader-perl/trunk/debian/changelog 2004-06-10 13:30:40 UTC (rev 64)
@@ -0,0 +1,49 @@
+libconfigreader-perl (0.5-4) unstable; urgency=low
+
+ * Corrected "Uploaders:" field
+ * Acknowledge NMUs for real (Closes: #170061, #157467, #217113)
+
+ -- Joachim Breitner <nomeata@debian.org> Sun, 18 Jan 2004 01:17:29 +0100
+
+libconfigreader-perl (0.5-3) unstable; urgency=low
+
+ * Adopting package (Closes: #217113)
+ * Maintainer field set to Debian Perl Group
+ * Acknowledge NMUs (Closes: #170061, #157467)
+ * debian/:
+ - Cleanup. Removed all hyperfluid libconfigreader-perl.* files.
+ - rules: New and policy compliant (shamelessly stolen from another
+ one of my packages)
+ - control:
+ * Moved debhelper dependency from B-D-I to B-D (we use dh_clean in the
+ clean target of debian/rules
+ * Bumped debhelper build-dependency to >= 4.
+ * Added Build-Depends on perl (we use Extutils::MakeMaker)
+
+ -- Marc Brockschmidt <marc@dch-faq.de> Tue, 13 Jan 2004 22:03:13 +0100
+
+libconfigreader-perl (0.5-2) unstable; urgency=low
+
+ * Maintainer field set to QA Group.
+ * Long description improved. Closes: #209786
+ * Section changed from interpreters to perl.
+ * Empty README.Debian removed.
+ * Upstream Author(s) --> Author in debian/copyright.
+ * Standard Versions updated to 3.6.1.
+
+ -- Emanuele Rocca <ema@debian.org> Tue, 20 Nov 2003 17:14:45 +0100
+
+libconfigreader-perl (0.5-1.1) unstable; urgency=low
+
+ * Non-Maintainer Upload (BSP 2002-11).
+ * Changed Build-Depends to Build-Depends-Indep.
+ * Now Build the .deb in binary-indep target (closes: bug#157467).
+ * Remove dh_testversion from debian/rules (closes: bug#170061).
+
+ -- Aurelien Jarno <aurel32@debian.org> Sat, 23 Nov 2002 13:38:32 +0100
+
+libconfigreader-perl (0.5-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Christopher L Cheney <ccheney@debian.org> Tue, 6 Mar 2001 10:00:00 -0600
Added: packages/libconfigreader-perl/trunk/debian/compat
===================================================================
--- packages/libconfigreader-perl/trunk/debian/compat 2004-06-10 13:29:25 UTC (rev 63)
+++ packages/libconfigreader-perl/trunk/debian/compat 2004-06-10 13:30:40 UTC (rev 64)
@@ -0,0 +1 @@
+4
Added: packages/libconfigreader-perl/trunk/debian/control
===================================================================
--- packages/libconfigreader-perl/trunk/debian/control 2004-06-10 13:29:25 UTC (rev 63)
+++ packages/libconfigreader-perl/trunk/debian/control 2004-06-10 13:30:40 UTC (rev 64)
@@ -0,0 +1,22 @@
+Source: libconfigreader-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Joachim Breitner <nomeata@debian.org>, Marc Brockschmidt <marc@dch-faq.de>
+Build-Depends: debhelper (>= 4)
+Build-Depends-Indep: perl (>= 5.6.0-16)
+Standards-Version: 3.6.1
+
+Package: libconfigreader-perl
+Section: perl
+Priority: optional
+Architecture: all
+Depends: ${perl:Depends}
+Description: Perl module for reading configuration files
+ The ConfigReader library is a set of classes which reads directives
+ from a configuration file.
+ .
+ Provided classes:
+ * ConfigReader::Spec
+ * ConfigReader::Values
+ * ConfigReader::DirectiveStyle
Added: packages/libconfigreader-perl/trunk/debian/copyright
===================================================================
--- packages/libconfigreader-perl/trunk/debian/copyright 2004-06-10 13:29:25 UTC (rev 63)
+++ packages/libconfigreader-perl/trunk/debian/copyright 2004-06-10 13:30:40 UTC (rev 64)
@@ -0,0 +1,16 @@
+This package was debianized by Christopher L Cheney <ccheney@debian.org> on
+Mon, 5 Mar 2001 20:36:31 -0600.
+
+It was downloaded from http://www.cpan.org/authors/id/AMW/
+
+Upstream Author: Andrew Wilcox <andrew_wilcow@gwi.net>
+
+Copyright:
+
+Copyright 1996 by Andrew Wilcox <awilcox@world.std.com>.
+All rights reserved.
+
+You are free to distribute this software under the terms of the GNU
+Library General Public License. On Debian systems, the complete text
+of the GNU Library General Public License can be found in
+/usr/share/common-licenses/LGPL-2 file.
Added: packages/libconfigreader-perl/trunk/debian/rules
===================================================================
--- packages/libconfigreader-perl/trunk/debian/rules 2004-06-10 13:29:25 UTC (rev 63)
+++ packages/libconfigreader-perl/trunk/debian/rules 2004-06-10 13:30:40 UTC (rev 64)
@@ -0,0 +1,69 @@
+#!/usr/bin/make -f
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP =$(CURDIR)/debian/$(PACKAGE)
+
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ -mkdir $(CURDIR)/ConfigReader
+ -mv $(CURDIR)/*.pm $(CURDIR)/ConfigReader
+
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="$(CFLAGS)"
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ -mv $(CURDIR)/ConfigReader/*.pm $(CURDIR)
+ -rmdir $(CURDIR)/ConfigReader
+ -$(MAKE) distclean
+ dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+ touch install-stamp
+
+binary-arch: build install
+# We have nothing to do by default.
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs README
+ dh_perl
+ dh_installchangelogs
+ 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/libconfigreader-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *