r16992 - in /trunk/libmath-randomorg-perl/debian: changelog control rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Mar 8 22:49:24 UTC 2008


Author: gregoa-guest
Date: Sat Mar  8 22:49:23 2008
New Revision: 16992

URL: http://svn.debian.org/wsvn/?sc=1&rev=16992
Log:
debian/rules:
  - update based on dh-make-perl's templates
  - install example script
  - don't install README anymore (no additional information)
  - enable pod* tests (other tests need network access), build
    dependencies added accordingly

Modified:
    trunk/libmath-randomorg-perl/debian/changelog
    trunk/libmath-randomorg-perl/debian/control
    trunk/libmath-randomorg-perl/debian/rules

Modified: trunk/libmath-randomorg-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libmath-randomorg-perl/debian/changelog?rev=16992&op=diff
==============================================================================
--- trunk/libmath-randomorg-perl/debian/changelog (original)
+++ trunk/libmath-randomorg-perl/debian/changelog Sat Mar  8 22:49:23 2008
@@ -4,12 +4,18 @@
     field (source stanza); Homepage field (source stanza). Removed: XS-
     Vcs-Svn fields.
   * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #467879).
+  * debian/rules:
+    - update based on dh-make-perl's templates
+    - install example script
+    - don't install README anymore (no additional information)
+    - enable pod* tests (other tests need network access), build
+      dependencies added accordingly
   * debian/watch: use dist-based URL.
   * Set Standards-Version to 3.7.3 (no changes).
   * Set debhelper compatibility level to 5.
   * debian/copyright: add download URL and update years of copyright.
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 08 Mar 2008 23:35:41 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 08 Mar 2008 23:48:54 +0100
 
 libmath-randomorg-perl (0.04-2) unstable; urgency=low
 

Modified: trunk/libmath-randomorg-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libmath-randomorg-perl/debian/control?rev=16992&op=diff
==============================================================================
--- trunk/libmath-randomorg-perl/debian/control (original)
+++ trunk/libmath-randomorg-perl/debian/control Sat Mar  8 22:49:23 2008
@@ -2,7 +2,8 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 5)
-Build-Depends-Indep: perl (>= 5.8.0-7)
+Build-Depends-Indep: perl (>= 5.8.0-7), libtest-pod-perl,
+ libtest-pod-coverage-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: gregor herrmann <gregor+debian at comodo.priv.at>, Gunnar Wolf <gwolf at debian.org>, Niko Tyni <ntyni at iki.fi>
 Standards-Version: 3.7.3

Modified: trunk/libmath-randomorg-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libmath-randomorg-perl/debian/rules?rev=16992&op=diff
==============================================================================
--- trunk/libmath-randomorg-perl/debian/rules (original)
+++ trunk/libmath-randomorg-perl/debian/rules Sat Mar  8 22:49:23 2008
@@ -23,53 +23,40 @@
 build-stamp:
 	dh_testdir
 
-	# Add commands to compile the package here
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	$(MAKE)
+	$(MAKE) test TEST_FILES="t/pod*"
 
-	touch build-stamp
+	touch $@
 
 clean:
 	dh_testdir
 	dh_testroot
 
-	# Add commands to clean up after the build process here
+	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
 
-	# Add commands to install the package into debian/$PACKAGE_NAME here
-	# Do not run tests; they require network access during build.
-	# $(MAKE) test
 	$(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 README
+	dh_installexamples examples/*
+	dh_installdocs
 	dh_installchangelogs Changes
 	dh_perl
-	dh_link
-	dh_strip
 	dh_compress
 	dh_fixperms
 	dh_installdeb
@@ -77,8 +64,8 @@
 	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
-.PHONY: build clean binary-indep binary-arch binary
+.PHONY: build clean binary-indep binary-arch binary install




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