r21780 - in /trunk/dh-make-perl: debian/changelog rules.dh7.noxs rules.dh7.xs

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Jun 17 12:08:41 UTC 2008


Author: gregoa
Date: Tue Jun 17 12:08:40 2008
New Revision: 21780

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=21780
Log:
Add stamp-files to rules.dh7.{xs,noxs} (cf.
/usr/share/doc/debhelper/examples/rules.simple from debhelper 7.0.11)

Modified:
    trunk/dh-make-perl/debian/changelog
    trunk/dh-make-perl/rules.dh7.noxs
    trunk/dh-make-perl/rules.dh7.xs

Modified: trunk/dh-make-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/debian/changelog?rev=21780&op=diff
==============================================================================
--- trunk/dh-make-perl/debian/changelog (original)
+++ trunk/dh-make-perl/debian/changelog Tue Jun 17 12:08:40 2008
@@ -14,6 +14,10 @@
   * replace a call to `date -R` with a call to Email::Date::Format's
     email_date function. Avoids a fork. Thanks to Stephen Gran.
     + Add libemail-date-format-perl to Depends.
+
+  [ gregor herrmann ]
+  * Add stamp-files to rules.dh7.{xs,noxs} (cf.
+    /usr/share/doc/debhelper/examples/rules.simple from debhelper 7.0.11)
 
  -- gregor herrmann <gregoa at debian.org>  Sun, 18 May 2008 16:12:47 +0200
 

Modified: trunk/dh-make-perl/rules.dh7.noxs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/rules.dh7.noxs?rev=21780&op=diff
==============================================================================
--- trunk/dh-make-perl/rules.dh7.noxs (original)
+++ trunk/dh-make-perl/rules.dh7.noxs Tue Jun 17 12:08:40 2008
@@ -1,13 +1,17 @@
 #!/usr/bin/make -f
 
-build:
+build: build-stamp
+build-stamp:
 	dh $@
+	touch $@
 
 clean:
 	dh $@
 
-install: build
+install: install-stamp
+install-stamp: build-stamp
 	dh $@
+	touch $@
 
 binary-arch:
 

Modified: trunk/dh-make-perl/rules.dh7.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/dh-make-perl/rules.dh7.xs?rev=21780&op=diff
==============================================================================
--- trunk/dh-make-perl/rules.dh7.xs (original)
+++ trunk/dh-make-perl/rules.dh7.xs Tue Jun 17 12:08:40 2008
@@ -1,13 +1,17 @@
 #!/usr/bin/make -f
 
-build:
+build: build-stamp
+build-stamp:
 	dh $@
+	touch $@
 
 clean:
 	dh $@
 
-install: build
+install: install-stamp
+install-stamp: build-stamp
 	dh $@
+	touch $@
 
 binary-arch: install
 	dh $@




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