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

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Jan 26 17:59:47 UTC 2008


Author: gregoa-guest
Date: Sat Jan 26 17:59:47 2008
New Revision: 13617

URL: http://svn.debian.org/wsvn/?sc=1&rev=13617
Log:
debian/rules:
  - create install-stamp target and adjust dependencies
  - use $@ for touching -stamp files
  - add note why tests are not enabled (need local webserver and ssl
    certificates)

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=13617&op=diff
==============================================================================
--- trunk/libwww-curl-perl/debian/changelog (original)
+++ trunk/libwww-curl-perl/debian/changelog Sat Jan 26 17:59:47 2008
@@ -12,6 +12,11 @@
   * debian/copyright:
     - add copyright/license statements for different files
     - convert to new format
+  * debian/rules:
+    - create install-stamp target and adjust dependencies
+    - use $@ for touching -stamp files
+    - add note why tests are not enabled (need local webserver and ssl
+      certificates)
 
   [ Frank Lichtenheld ]
   * debian/rules: Cleanup:
@@ -19,7 +24,7 @@
     + fix dependency of build-stamp on configure-stamp
     + reorder clean target
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 26 Jan 2008 18:40:01 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 26 Jan 2008 18:55:36 +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=13617&op=diff
==============================================================================
--- trunk/libwww-curl-perl/debian/rules (original)
+++ trunk/libwww-curl-perl/debian/rules Sat Jan 26 17:59:47 2008
@@ -24,28 +24,31 @@
 configure-stamp:
 	dh_testdir
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	touch configure-stamp
+	touch $@
 
 build: build-stamp
 build-stamp: configure-stamp
 	dh_testdir
 	$(MAKE) OPTIMIZE="$(CFLAGS)"
-	touch build-stamp
+	# $(MAKE) test # would need local webserver and ssl certificates
+	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
-	rm -f build-stamp configure-stamp Makefile.old curlopt-constants.c lib/WWW/Curl/Easy.pm
+	rm -f build-stamp configure-stamp install-stamp Makefile.old curlopt-constants.c lib/WWW/Curl/Easy.pm
 	dh_clean
 	[ ! -f Makefile ] || $(MAKE) clean
 
-install: build
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
 	dh_installdirs
 	$(MAKE) PREFIX=/usr DESTDIR=$(TMP) install
 	[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/share/perl5
+	touch $@
 
 binary-indep: build install
 




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