r128 - in packages/libparse-debian-packages-perl/trunk: . debian

Allard Hoeve hoeve-guest@haydn.debian.org
Thu, 10 Jun 2004 08:14:47 -0600


Author: hoeve-guest
Date: 2004-06-10 08:14:44 -0600 (Thu, 10 Jun 2004)
New Revision: 128

Added:
   packages/libparse-debian-packages-perl/trunk/debian/
   packages/libparse-debian-packages-perl/trunk/debian/changelog
   packages/libparse-debian-packages-perl/trunk/debian/compat
   packages/libparse-debian-packages-perl/trunk/debian/control
   packages/libparse-debian-packages-perl/trunk/debian/copyright
   packages/libparse-debian-packages-perl/trunk/debian/rules
Log:
Load libparse-debian-packages-perl-0.01 into
packages/libparse-debian-packages-perl/trunk.


Added: packages/libparse-debian-packages-perl/trunk/debian/changelog
===================================================================
--- packages/libparse-debian-packages-perl/trunk/debian/changelog	2004-06-10 14:13:30 UTC (rev 127)
+++ packages/libparse-debian-packages-perl/trunk/debian/changelog	2004-06-10 14:14:44 UTC (rev 128)
@@ -0,0 +1,6 @@
+libparse-debian-packages-perl (0.01-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Joachim Breitner <nomeata@debian.org>  Mon,  5 Jan 2004 18:05:45 +0100
+

Added: packages/libparse-debian-packages-perl/trunk/debian/compat
===================================================================
--- packages/libparse-debian-packages-perl/trunk/debian/compat	2004-06-10 14:13:30 UTC (rev 127)
+++ packages/libparse-debian-packages-perl/trunk/debian/compat	2004-06-10 14:14:44 UTC (rev 128)
@@ -0,0 +1 @@
+4

Added: packages/libparse-debian-packages-perl/trunk/debian/control
===================================================================
--- packages/libparse-debian-packages-perl/trunk/debian/control	2004-06-10 14:13:30 UTC (rev 127)
+++ packages/libparse-debian-packages-perl/trunk/debian/control	2004-06-10 14:14:44 UTC (rev 128)
@@ -0,0 +1,18 @@
+Source: libparse-debian-packages-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libmodule-build-perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Joachim Breitner <nomeata@debian.org>
+Standards-Version: 3.6.1
+
+Package: libparse-debian-packages-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libyaml-perl
+Description: parse the data from a debian Packages.gz
+ Parse::Debian::Packages parses the Packages files used by the debian
+ package management tools.
+ .
+ It presents itself as an iterator.  Each call of the ->next method
+ will return the next package found in the file.

Added: packages/libparse-debian-packages-perl/trunk/debian/copyright
===================================================================
--- packages/libparse-debian-packages-perl/trunk/debian/copyright	2004-06-10 14:13:30 UTC (rev 127)
+++ packages/libparse-debian-packages-perl/trunk/debian/copyright	2004-06-10 14:14:44 UTC (rev 128)
@@ -0,0 +1,15 @@
+This is the debian package for the Parse-Debian-Packages module.
+It was created by Marc Brockschmidt <marc@dch-faq.de>.
+
+The upstream author is Richard Clamp <richardc@unixbeard.net>.
+
+Copyright (C) 2003 Richard Clamp.  All Rights Reserved.
+
+This module is free software; you can redistribute it and/or modify it
+under the same terms as Perl (GPL or Artistic license) itself.
+
+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/libparse-debian-packages-perl/trunk/debian/rules
===================================================================
--- packages/libparse-debian-packages-perl/trunk/debian/rules	2004-06-10 14:13:30 UTC (rev 127)
+++ packages/libparse-debian-packages-perl/trunk/debian/rules	2004-06-10 14:14:44 UTC (rev 128)
@@ -0,0 +1,71 @@
+#!/usr/bin/make -f
+# 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
+
+ifndef DESTDIR
+DESTDIR=..
+endif
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	
+	# Add here commands to compile the package.
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add here commands to clean up after the build process.
+	-$(PERL) Build clean
+	rm -rf _build build-stamp Build
+
+	dh_clean
+
+install:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	$(PERL) Build install destdir=$(TMP)
+
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+# Build architecture-independent files here.
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl 
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb --destdir=$(DESTDIR)
+
+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/libparse-debian-packages-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *