r17082 - in /trunk/libpar-dist-perl/debian: changelog control rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Mar 9 16:53:46 UTC 2008


Author: gregoa-guest
Date: Sun Mar  9 16:53:45 2008
New Revision: 17082

URL: http://svn.debian.org/wsvn/?sc=1&rev=17082
Log:
debian/rules:
  - remove OPTIMIZE, this package is architecture-independent
  - add $(MAKE) test (and add build dependencies)
  - move dh_clean before make realclean
  - let install-stamp target depend on build-stamp

Modified:
    trunk/libpar-dist-perl/debian/changelog
    trunk/libpar-dist-perl/debian/control
    trunk/libpar-dist-perl/debian/rules

Modified: trunk/libpar-dist-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libpar-dist-perl/debian/changelog?rev=17082&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/changelog (original)
+++ trunk/libpar-dist-perl/debian/changelog Sun Mar  9 16:53:45 2008
@@ -1,10 +1,15 @@
 libpar-dist-perl (0.29-2) UNRELEASED; urgency=low
 
   * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #467996).
+  * debian/rules:
+    - remove OPTIMIZE, this package is architecture-independent
+    - add $(MAKE) test (and add build dependencies)
+    - move dh_clean before make realclean
+    - let install-stamp target depend on build-stamp
   * debian/copyright: use author-independent download URL and update years
     of copyright.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 09 Mar 2008 17:47:40 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 09 Mar 2008 17:52:18 +0100
 
 libpar-dist-perl (0.29-1) unstable; urgency=low
 

Modified: trunk/libpar-dist-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libpar-dist-perl/debian/control?rev=17082&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/control (original)
+++ trunk/libpar-dist-perl/debian/control Sun Mar  9 16:53:45 2008
@@ -2,7 +2,8 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 6)
-Build-Depends-Indep: perl (>= 5.8.0-7)
+Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl,
+ libtest-pod-coverage-perl
 Uploaders: Florian Ragwitz <rafl at debian.org>, 
  Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>

Modified: trunk/libpar-dist-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libpar-dist-perl/debian/rules?rev=17082&op=diff
==============================================================================
--- trunk/libpar-dist-perl/debian/rules (original)
+++ trunk/libpar-dist-perl/debian/rules Sun Mar  9 16:53:45 2008
@@ -14,17 +14,18 @@
 build-stamp:
 	dh_testdir
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	$(MAKE)
+	PERL_TEST_POD=1 $(MAKE) test
 	touch build-stamp
 
 clean:
 	dh_testdir
 	dh_testroot
+	dh_clean build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) realclean
-	dh_clean build-stamp install-stamp
 
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k




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