r16664 - in /trunk/libmodule-install-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Thu Mar 6 21:41:19 UTC 2008


Author: gregoa-guest
Date: Thu Mar  6 21:41:18 2008
New Revision: 16664

URL: http://svn.debian.org/wsvn/?sc=1&rev=16664
Log:
debian/rules:
  - create install-stamp target depending on build-stamp
  - don't install README any more

Modified:
    trunk/libmodule-install-perl/debian/changelog
    trunk/libmodule-install-perl/debian/rules

Modified: trunk/libmodule-install-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libmodule-install-perl/debian/changelog?rev=16664&op=diff
==============================================================================
--- trunk/libmodule-install-perl/debian/changelog (original)
+++ trunk/libmodule-install-perl/debian/changelog Thu Mar  6 21:41:18 2008
@@ -3,8 +3,11 @@
   * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #467806).
   * debian/watch: use dist-based URL.
   * Set Standards-Version to 3.7.3 (no changes).
+  * debian/rules:
+    - create install-stamp target depending on build-stamp
+    - don't install README any more
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Thu, 06 Mar 2008 22:36:18 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Thu, 06 Mar 2008 22:36:30 +0100
 
 libmodule-install-perl (0.68-1) unstable; urgency=low
 

Modified: trunk/libmodule-install-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libmodule-install-perl/debian/rules?rev=16664&op=diff
==============================================================================
--- trunk/libmodule-install-perl/debian/rules (original)
+++ trunk/libmodule-install-perl/debian/rules Thu Mar  6 21:41:18 2008
@@ -26,21 +26,23 @@
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp
-	dh_clean
+	dh_clean build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) distclean
 
-install: build
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	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
 	-rm  $(TMP)/usr/share/perl5/Module/Install/Philosophy.pod
 	-rm  $(TMP)/usr/share/perl5/Module/Install.pod
 	-rm  $(TMP)/usr/share/man/man3/Module::Install::Admin::Manifest.3pm
+
+	touch $@
 
 # Build architecture-dependent files here.
 binary-arch: build install
@@ -50,7 +52,7 @@
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-	dh_installdocs README
+	dh_installdocs
 	dh_installchangelogs Changes
 	dh_perl
 	dh_compress




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