r15785 - in /trunk/libtest-pod-coverage-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Feb 27 18:20:38 UTC 2008


Author: gregoa-guest
Date: Wed Feb 27 18:20:37 2008
New Revision: 15785

URL: http://svn.debian.org/wsvn/?sc=1&rev=15785
Log:
Update debian/rules with the help of dh-make-perl.

Modified:
    trunk/libtest-pod-coverage-perl/debian/changelog
    trunk/libtest-pod-coverage-perl/debian/rules

Modified: trunk/libtest-pod-coverage-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtest-pod-coverage-perl/debian/changelog?rev=15785&op=diff
==============================================================================
--- trunk/libtest-pod-coverage-perl/debian/changelog (original)
+++ trunk/libtest-pod-coverage-perl/debian/changelog Wed Feb 27 18:20:37 2008
@@ -8,11 +8,12 @@
   * debian/watch: use dist-based URL.
   * Set Standards-Version to 3.7.3 (no changes).
   * Set debhelper compatibility level to 6.
+  * Update debian/rules with the help of dh-make-perl.
 
   [ Joachim Breitner ]
   * Removed myself from uploaders.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 27 Feb 2008 19:16:32 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 27 Feb 2008 19:18:55 +0100
 
 libtest-pod-coverage-perl (1.08-2) unstable; urgency=low
 

Modified: trunk/libtest-pod-coverage-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtest-pod-coverage-perl/debian/rules?rev=15785&op=diff
==============================================================================
--- trunk/libtest-pod-coverage-perl/debian/rules (original)
+++ trunk/libtest-pod-coverage-perl/debian/rules Wed Feb 27 18:20:37 2008
@@ -19,33 +19,25 @@
 
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
-# Allow disabling build optimation by setting noopt in
-# $DEB_BUILD_OPTIONS
-CFLAGS = -Wall -g
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
-        CFLAGS += -O0
-else
-        CFLAGS += -O2
-endif
-
 build: build-stamp
 build-stamp:
 	dh_testdir
 
 	# Add commands to compile the package here
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="$(CFLAGS)"
-	
-	touch build-stamp
+	$(MAKE)
+	$(MAKE) test
+
+	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
 
+	dh_clean build-stamp install-stamp
+
 	# Add commands to clean up after the build process here
-	[ ! -f Makefile ] || $(MAKE) distclean
-	
-	dh_clean build-stamp install-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
 
 install: install-stamp
 install-stamp: build-stamp
@@ -53,29 +45,22 @@
 	dh_testroot
 	dh_clean -k
 
-	$(MAKE) test
+	# Add commands to install the package into $(TMP) here
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	
-	# As this is a architecture independent package, we are not supposed to install
-	# stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb:
+
 	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
 
-	touch install-stamp
+	touch $@
 
 binary-arch:
-# We have nothing to do by default.
+# We have nothing to do here for an architecture-independent package
 
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-#	dh_installcron
-#	dh_installmenu
-#	dh_installexamples
-	dh_installdocs 
+	dh_installdocs
 	dh_installchangelogs Changes
 	dh_perl
-	dh_link
-	dh_strip
 	dh_compress
 	dh_fixperms
 	dh_installdeb
@@ -83,7 +68,7 @@
 	dh_md5sums
 	dh_builddeb
 
-source diff:                                                                  
+source diff:
 	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
 
 binary: binary-indep binary-arch




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