r23793 - in /trunk/libdata-walk-perl/debian: README.source changelog control rules watch

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Aug 5 04:13:49 UTC 2008


Author: gregoa
Date: Tue Aug  5 04:13:47 2008
New Revision: 23793

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=23793
Log:
* Refresh debian/rules, no functional changes, except: don't create
  .packlist file any more.
* debian/watch: use dist-based URL.
* Set Standards-Version to 3.8.0; add debian/README.source to document
  quilt usage.

Added:
    trunk/libdata-walk-perl/debian/README.source
Modified:
    trunk/libdata-walk-perl/debian/changelog
    trunk/libdata-walk-perl/debian/control
    trunk/libdata-walk-perl/debian/rules
    trunk/libdata-walk-perl/debian/watch

Added: trunk/libdata-walk-perl/debian/README.source
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-walk-perl/debian/README.source?rev=23793&op=file
==============================================================================
--- trunk/libdata-walk-perl/debian/README.source (added)
+++ trunk/libdata-walk-perl/debian/README.source Tue Aug  5 04:13:47 2008
@@ -1,0 +1,6 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+See /usr/share/doc/quilt/README.source for a detailed explanation.
+

Modified: trunk/libdata-walk-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-walk-perl/debian/changelog?rev=23793&op=diff
==============================================================================
--- trunk/libdata-walk-perl/debian/changelog (original)
+++ trunk/libdata-walk-perl/debian/changelog Tue Aug  5 04:13:47 2008
@@ -3,6 +3,11 @@
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed:
     Homepage pseudo-field (Description); XS-Vcs-Svn fields.
+  * Refresh debian/rules, no functional changes, except: don't create
+    .packlist file any more.
+  * debian/watch: use dist-based URL.
+  * Set Standards-Version to 3.8.0; add debian/README.source to document
+    quilt usage.
 
  -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:28:37 +0200
 

Modified: trunk/libdata-walk-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-walk-perl/debian/control?rev=23793&op=diff
==============================================================================
--- trunk/libdata-walk-perl/debian/control (original)
+++ trunk/libdata-walk-perl/debian/control Tue Aug  5 04:13:47 2008
@@ -5,7 +5,7 @@
 Build-Depends-Indep: perl (>= 5.8.8-7), libtest-unit-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Damyan Ivanov <dmn at debian.org>
-Standards-Version: 3.7.2
+Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Data-Walk/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdata-walk-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-walk-perl/

Modified: trunk/libdata-walk-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-walk-perl/debian/rules?rev=23793&op=diff
==============================================================================
--- trunk/libdata-walk-perl/debian/rules (original)
+++ trunk/libdata-walk-perl/debian/rules Tue Aug  5 04:13:47 2008
@@ -14,46 +14,33 @@
 # always return the default without waiting for user input.
 export PERL_MM_USE_DEFAULT=1
 
-PACKAGE=$(shell dh_listpackages)
-
 include /usr/share/quilt/quilt.make
 
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp: patch
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
-
-	# Add commands to compile the package here
 	$(PERL) Build.PL installdirs=vendor
 	$(PERL) Build
 	$(PERL) Build test
-
-	touch build-stamp
+	touch $@
 
 clean: unpatch
 	dh_testdir
 	dh_testroot
+	dh_clean build-stamp install-stamp
+	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
 
-	dh_clean build-stamp install-stamp
-
-	# Add commands to clean up after the build process here
-	[ ! -f Build ] || $(PERL) Build distclean
-
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-
-	# Add commands to install the package into debian/$PACKAGE_NAME here
-	$(PERL) Build install destdir=$(TMP)
-
-	touch install-stamp
+	$(PERL) Build install destdir=$(TMP) create_packlist=0
+	touch $@
 
 binary-arch:
 # We have nothing to do here for an architecture-independent package
@@ -61,8 +48,7 @@
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-	dh_installdocs NEWS README
-	#dh_installexamples
+	dh_installdocs README NEWS
 	dh_installchangelogs ChangeLog
 	dh_perl
 	dh_compress
@@ -72,8 +58,5 @@
 	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
+.PHONY: build clean binary-indep binary-arch binary install

Modified: trunk/libdata-walk-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdata-walk-perl/debian/watch?rev=23793&op=diff
==============================================================================
--- trunk/libdata-walk-perl/debian/watch (original)
+++ trunk/libdata-walk-perl/debian/watch Tue Aug  5 04:13:47 2008
@@ -1,3 +1,3 @@
 # format version number, currently 3; this line is compulsory!
 version=3
-http://www.cpan.org/modules/by-module/Data/Data-Walk-([\.\d]+)\.(?:tar\.gz|tar|tgz)$
+http://search.cpan.org/dist/Data-Walk/   .*/Data-Walk-v?(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)




More information about the Pkg-perl-cvs-commits mailing list