r68 - in packages/libcpan-distnameinfo-perl/trunk: . debian

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


Author: hoeve-guest
Date: 2004-06-10 07:33:18 -0600 (Thu, 10 Jun 2004)
New Revision: 68

Added:
   packages/libcpan-distnameinfo-perl/trunk/debian/
   packages/libcpan-distnameinfo-perl/trunk/debian/changelog
   packages/libcpan-distnameinfo-perl/trunk/debian/compat
   packages/libcpan-distnameinfo-perl/trunk/debian/control
   packages/libcpan-distnameinfo-perl/trunk/debian/copyright
   packages/libcpan-distnameinfo-perl/trunk/debian/rules
Log:
Load libcpan-distnameinfo-perl-0.03 into
packages/libcpan-distnameinfo-perl/trunk.


Added: packages/libcpan-distnameinfo-perl/trunk/debian/changelog
===================================================================
--- packages/libcpan-distnameinfo-perl/trunk/debian/changelog	2004-06-10 13:32:06 UTC (rev 67)
+++ packages/libcpan-distnameinfo-perl/trunk/debian/changelog	2004-06-10 13:33:18 UTC (rev 68)
@@ -0,0 +1,6 @@
+libcpan-distnameinfo-perl (0.03-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Joachim Breitner <nomeata@debian.org>  Mon,  5 Jan 2004 17:52:56 +0100
+

Added: packages/libcpan-distnameinfo-perl/trunk/debian/compat
===================================================================
--- packages/libcpan-distnameinfo-perl/trunk/debian/compat	2004-06-10 13:32:06 UTC (rev 67)
+++ packages/libcpan-distnameinfo-perl/trunk/debian/compat	2004-06-10 13:33:18 UTC (rev 68)
@@ -0,0 +1 @@
+4

Added: packages/libcpan-distnameinfo-perl/trunk/debian/control
===================================================================
--- packages/libcpan-distnameinfo-perl/trunk/debian/control	2004-06-10 13:32:06 UTC (rev 67)
+++ packages/libcpan-distnameinfo-perl/trunk/debian/control	2004-06-10 13:33:18 UTC (rev 68)
@@ -0,0 +1,24 @@
+Source: libcpan-distnameinfo-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7)
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Joachim Breitner <nomeata@debian.org>
+Standards-Version: 3.6.1
+
+Package: libcpan-distnameinfo-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}
+Description: Extract distribution name and version from a distribution filename
+ Many online services that are centered around CPAN attempt to
+ associate multiple uploads by extracting a distribution name from
+ the filename of the upload. For most distributions this is easy as
+ they have used ExtUtils::MakeMaker or Module::Build to create the
+ distribution, which results in a uniform name. But sadly not all
+ uploads are created in this way.
+ .
+ CPAN::DistnameInfo uses heuristics that have been learnt by
+ http://search.cpan.org/ to extract the distribution name and
+ version from filenames and also report if the version is to be
+ treated as a developer release.

Added: packages/libcpan-distnameinfo-perl/trunk/debian/copyright
===================================================================
--- packages/libcpan-distnameinfo-perl/trunk/debian/copyright	2004-06-10 13:32:06 UTC (rev 67)
+++ packages/libcpan-distnameinfo-perl/trunk/debian/copyright	2004-06-10 13:33:18 UTC (rev 68)
@@ -0,0 +1,13 @@
+This is the debian package for the CPAN-DistnameInfo module.
+It was created by Marc Brockschmidt <marc@dch-faq.de> using dh-make-perl.
+
+The upstream author is Graham Barr <gbarr@pobox.com>.
+
+Copyright (c) 2003 Graham Barr. All rights reserved. This program 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/libcpan-distnameinfo-perl/trunk/debian/rules
===================================================================
--- packages/libcpan-distnameinfo-perl/trunk/debian/rules	2004-06-10 13:32:06 UTC (rev 67)
+++ packages/libcpan-distnameinfo-perl/trunk/debian/rules	2004-06-10 13:33:18 UTC (rev 68)
@@ -0,0 +1,72 @@
+#!/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) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/tmp.
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+
+# 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/libcpan-distnameinfo-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *