r18734 - in /trunk/libfile-copy-recursive-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Thu Apr 17 20:18:32 UTC 2008


Author: gregoa-guest
Date: Thu Apr 17 20:18:32 2008
New Revision: 18734

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=18734
Log:
Refresh debian/rules, minor changes:
- move tests to build-stamp target
- don't install README any more
- let install-stamp target depend on build-stamp

Modified:
    trunk/libfile-copy-recursive-perl/debian/changelog
    trunk/libfile-copy-recursive-perl/debian/rules

Modified: trunk/libfile-copy-recursive-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-copy-recursive-perl/debian/changelog?rev=18734&op=diff
==============================================================================
--- trunk/libfile-copy-recursive-perl/debian/changelog (original)
+++ trunk/libfile-copy-recursive-perl/debian/changelog Thu Apr 17 20:18:32 2008
@@ -3,8 +3,12 @@
   * New upstream release.
   * debian/copyright: use version-agnostic source URL.
   * Add /me to Uploaders.
+  * Refresh debian/rules, minor changes:
+    - move tests to build-stamp target
+    - don't install README any more
+    - let install-stamp target depend on build-stamp
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Thu, 17 Apr 2008 22:12:38 +0200
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Thu, 17 Apr 2008 22:15:36 +0200
 
 libfile-copy-recursive-perl (0.35-2) unstable; urgency=low
 

Modified: trunk/libfile-copy-recursive-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-copy-recursive-perl/debian/rules?rev=18734&op=diff
==============================================================================
--- trunk/libfile-copy-recursive-perl/debian/rules (original)
+++ trunk/libfile-copy-recursive-perl/debian/rules Thu Apr 17 20:18:32 2008
@@ -4,50 +4,51 @@
 # 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
-
-TMP     =$(CURDIR)/debian/$(PACKAGE)
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
 build-stamp:
 	dh_testdir
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-Wall -O2 -g"
-	touch build-stamp
+	$(MAKE)
+	$(MAKE) test
+	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
+	dh_clean build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) realclean
-	dh_clean build-stamp install-stamp
 
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-	$(MAKE) test
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
-	touch install-stamp
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/lib/perl5
+	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
 	dh_testroot
-#	dh_installexamples
-	dh_installdocs README
+	dh_installdocs
 	dh_installchangelogs Changes
 	dh_perl
-	dh_link
-	dh_strip
 	dh_compress
 	dh_fixperms
 	dh_installdeb
@@ -55,8 +56,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