r53286 - in /trunk/pmtools/debian: changelog rules

abe at users.alioth.debian.org abe at users.alioth.debian.org
Tue Feb 23 22:45:21 UTC 2010


Author: abe
Date: Tue Feb 23 22:45:14 2010
New Revision: 53286

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53286
Log:
Call make distclean only if a Makefile exists. Don't ignore it's exit code.

Modified:
    trunk/pmtools/debian/changelog
    trunk/pmtools/debian/rules

Modified: trunk/pmtools/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/pmtools/debian/changelog?rev=53286&op=diff
==============================================================================
--- trunk/pmtools/debian/changelog (original)
+++ trunk/pmtools/debian/changelog Tue Feb 23 22:45:14 2010
@@ -1,6 +1,7 @@
 pmtools (1.10-1) UNRELEASED; urgency=low
 
   * New upstream release (Closes: #570883)
+    - More modern and standardized upstream packaging. Good. :-)
   * New maintainer (Debian Perl Group) and new uploader (me)
     (Closes: #569525)
   * Added a watch file to point to new upstream URL at CPAN
@@ -10,10 +11,14 @@
     - Replaced dh_clean -k by dh_prep
     - Replaced dh_installmanpages by dh_installman
     - Removed already commented out dh_undocumented
+  * Further changes to debian/rules
+    - Call distclean target instead of more existant realclean target.
+    - Call make distclean only if a Makefile exists. Don't ignore it's
+      exit code.
   * Added Homepage and Vcs-* headers.
   * Updated source URL in debian/copyright
 
- -- Axel Beckert <abe at debian.org>  Tue, 23 Feb 2010 02:49:47 +0100
+ -- Axel Beckert <abe at debian.org>  Tue, 23 Feb 2010 23:33:19 +0100
 
 pmtools (1.00-8.1) unstable; urgency=low
 

Modified: trunk/pmtools/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/pmtools/debian/rules?rev=53286&op=diff
==============================================================================
--- trunk/pmtools/debian/rules (original)
+++ trunk/pmtools/debian/rules Tue Feb 23 22:45:14 2010
@@ -16,7 +16,7 @@
 	dh_testdir
 	dh_testroot
 	rm -f build-stamp
-	-$(MAKE) realclean
+	if [ -f Makefile ]; then $(MAKE) distclean; else true; fi
 	dh_clean
 
 install: build




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