r9056 - in /trunk/libwww-curl-perl/debian: changelog rules

djpig at users.alioth.debian.org djpig at users.alioth.debian.org
Thu Nov 8 18:19:58 UTC 2007


Author: djpig
Date: Thu Nov  8 18:19:58 2007
New Revision: 9056

URL: http://svn.debian.org/wsvn/?sc=1&rev=9056
Log:
debian/rules clean-up

Modified:
    trunk/libwww-curl-perl/debian/changelog
    trunk/libwww-curl-perl/debian/rules

Modified: trunk/libwww-curl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libwww-curl-perl/debian/changelog?rev=9056&op=diff
==============================================================================
--- trunk/libwww-curl-perl/debian/changelog (original)
+++ trunk/libwww-curl-perl/debian/changelog Thu Nov  8 18:19:58 2007
@@ -1,10 +1,17 @@
 libwww-curl-perl (3.02-3) UNRELEASED; urgency=low
 
+  [ gregor herrmann ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed:
     Homepage pseudo-field (Description); XS-Vcs-Svn fields.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:33:16 +0200
+  [ Frank Lichtenheld ]
+  * debian/rules: Cleanup:
+    + don't define $(PERL) and then don't use it
+    + fix dependency of build-stamp on configure-stamp
+    + reorder clean target
+
+ -- Frank Lichtenheld <djpig at debian.org>  Thu, 08 Nov 2007 19:09:33 +0100
 
 libwww-curl-perl (3.02-2) unstable; urgency=low
 

Modified: trunk/libwww-curl-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libwww-curl-perl/debian/rules?rev=9056&op=diff
==============================================================================
--- trunk/libwww-curl-perl/debian/rules (original)
+++ trunk/libwww-curl-perl/debian/rules Thu Nov  8 18:19:58 2007
@@ -23,11 +23,11 @@
 configure: configure-stamp
 configure-stamp:
 	dh_testdir
-	perl Makefile.PL INSTALLDIRS=vendor
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
 	touch configure-stamp
 
-build: configure-stamp build-stamp
-build-stamp:
+build: build-stamp
+build-stamp: configure-stamp
 	dh_testdir
 	$(MAKE) OPTIMIZE="$(CFLAGS)"
 	touch build-stamp
@@ -35,9 +35,9 @@
 clean:
 	dh_testdir
 	dh_testroot
-	[ ! -f Makefile ] || $(MAKE) clean
 	rm -f build-stamp configure-stamp Makefile.old curlopt-constants.c lib/WWW/Curl/Easy.pm
 	dh_clean
+	[ ! -f Makefile ] || $(MAKE) clean
 
 install: build
 	dh_testdir




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