r20034 - in /trunk/libppi-perl/debian: changelog control patches/ rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Fri May 16 15:13:17 UTC 2008


Author: gregoa
Date: Fri May 16 15:13:17 2008
New Revision: 20034

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20034
Log:
* Refresh debian/rules, no functional changes.
* Remove patch t-14_charsets.t-is-utf8.patch, applied upstream; remove
  quilt framework as there are no other patches.

Removed:
    trunk/libppi-perl/debian/patches/
Modified:
    trunk/libppi-perl/debian/changelog
    trunk/libppi-perl/debian/control
    trunk/libppi-perl/debian/rules

Modified: trunk/libppi-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libppi-perl/debian/changelog?rev=20034&op=diff
==============================================================================
--- trunk/libppi-perl/debian/changelog (original)
+++ trunk/libppi-perl/debian/changelog Fri May 16 15:13:17 2008
@@ -2,6 +2,9 @@
 
   * New upstream release.
   * debian/copyright: update years of copyright.
+  * Refresh debian/rules, no functional changes.
+  * Remove patch t-14_charsets.t-is-utf8.patch, applied upstream; remove
+    quilt framework as there are no other patches.
 
  -- gregor herrmann <gregoa at debian.org>  Fri, 16 May 2008 16:58:22 +0200
 

Modified: trunk/libppi-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libppi-perl/debian/control?rev=20034&op=diff
==============================================================================
--- trunk/libppi-perl/debian/control (original)
+++ trunk/libppi-perl/debian/control Fri May 16 15:13:17 2008
@@ -1,7 +1,7 @@
 Source: libppi-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5), quilt
+Build-Depends: debhelper (>= 5)
 Build-Depends-Indep: perl (>= 5.8.0), libio-string-perl (>= 1.07),
  libclone-perl (>= 0.17), liblist-moreutils-perl (>= 0.13),
  libparams-util-perl (>= 0.05), libtest-object-perl, libtest-pod-perl

Modified: trunk/libppi-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libppi-perl/debian/rules?rev=20034&op=diff
==============================================================================
--- trunk/libppi-perl/debian/rules (original)
+++ trunk/libppi-perl/debian/rules Fri May 16 15:13:17 2008
@@ -1,30 +1,33 @@
 #!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at 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
-
-include /usr/share/quilt/quilt.make
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
-build-stamp: $(QUILT_STAMPFN)
+build-stamp:
 	dh_testdir
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
 	$(MAKE)
 	$(MAKE) test
 	touch $@
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 	dh_clean build-stamp install-stamp
-	[ ! -f Makefile ] || $(MAKE) distclean
+	[ ! -f Makefile ] || $(MAKE) realclean
 
 install: install-stamp
 install-stamp: build-stamp
@@ -32,13 +35,15 @@
 	dh_testroot
 	dh_clean -k
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/lib/perl5
 	rm $(TMP)/usr/share/man/man3/PPI::Token::_QuoteEngine::Full.3pm
 	rm $(TMP)/usr/share/man/man3/PPI::Token::_QuoteEngine::Simple.3pm
 	touch $@
 
 binary-arch:
-# We have nothing to do by default.
+# We have nothing to do here for an architecture-independent package
 
 binary-indep: build install
 	dh_testdir
@@ -53,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




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