r15492 - in /trunk/libsvn-notify-mirror-perl/debian: changelog control rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Feb 24 14:38:03 UTC 2008


Author: gregoa-guest
Date: Sun Feb 24 14:38:02 2008
New Revision: 15492

URL: http://svn.debian.org/wsvn/?sc=1&rev=15492
Log:
* debian/rules:
  - remove compiler variables, this package is architecture-independent
  - move tests to build-stamp target
  - let install-stamp target depend on build-stamp
  - use $(TMP) when removing empty directory
  - don't create .packlist file instead of deleting it later
  - use $@ for touching stamp-files
  - remove unneeded calls to dh_link and dh_strip
  - move dh_clean before make distclean
* debian/control:
  - move libmodule-build-perl to Build-Depends (used in clean target) and
    make it a versioned dependency

Modified:
    trunk/libsvn-notify-mirror-perl/debian/changelog
    trunk/libsvn-notify-mirror-perl/debian/control
    trunk/libsvn-notify-mirror-perl/debian/rules

Modified: trunk/libsvn-notify-mirror-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libsvn-notify-mirror-perl/debian/changelog?rev=15492&op=diff
==============================================================================
--- trunk/libsvn-notify-mirror-perl/debian/changelog (original)
+++ trunk/libsvn-notify-mirror-perl/debian/changelog Sun Feb 24 14:38:02 2008
@@ -5,11 +5,23 @@
     field (source stanza); Homepage field (source stanza). Removed: XS-
     Vcs-Svn fields.
   * debian/rules: delete /usr/lib/perl5 only if it exists.
+  * debian/rules:
+    - remove compiler variables, this package is architecture-independent
+    - move tests to build-stamp target
+    - let install-stamp target depend on build-stamp
+    - use $(TMP) when removing empty directory
+    - don't create .packlist file instead of deleting it later
+    - use $@ for touching stamp-files
+    - remove unneeded calls to dh_link and dh_strip
+    - move dh_clean before make distclean
+  * debian/control:
+    - move libmodule-build-perl to Build-Depends (used in clean target) and
+      make it a versioned dependency
 
   [ Damyan Ivanov ]
   * [debian/watch] Stop capturing file extension
 
- -- Damyan Ivanov <dmn at debian.org>  Tue, 06 Nov 2007 11:01:25 +0200
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 24 Feb 2008 15:36:35 +0100
 
 libsvn-notify-mirror-perl (0.03603-1) unstable; urgency=medium
 

Modified: trunk/libsvn-notify-mirror-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libsvn-notify-mirror-perl/debian/control?rev=15492&op=diff
==============================================================================
--- trunk/libsvn-notify-mirror-perl/debian/control (original)
+++ trunk/libsvn-notify-mirror-perl/debian/control Sun Feb 24 14:38:02 2008
@@ -1,8 +1,8 @@
 Source: libsvn-notify-mirror-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5.0.0)
-Build-Depends-Indep: perl (>= 5.8.8-7), libsvn-notify-perl, libmodule-build-perl
+Build-Depends: debhelper (>= 5.0.0), libmodule-build-perl (>= 0.2805)
+Build-Depends-Indep: perl (>= 5.8.8-7), libsvn-notify-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Standards-Version: 3.7.2
 Homepage: http://search.cpan.org/dist/SVN-Notify-Mirror/

Modified: trunk/libsvn-notify-mirror-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libsvn-notify-mirror-perl/debian/rules?rev=15492&op=diff
==============================================================================
--- trunk/libsvn-notify-mirror-perl/debian/rules (original)
+++ trunk/libsvn-notify-mirror-perl/debian/rules Sun Feb 24 14:38:02 2008
@@ -27,34 +27,31 @@
 	dh_testdir
 
 	# redirect STDIN to avoid any prompting
-	$(PERL) Build.PL installdirs=vendor < /dev/null
-	OPTIMIZE="-Wall -O2 -g" $(PERL) Build
+	$(PERL) Build.PL installdirs=vendor create_packlist=0 < /dev/null
+	$(PERL) Build
+	SENDMAIL=/dev/null $(PERL) Build test
 
-	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 Build ] || $(PERL) Build distclean
 
-	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
-	SENDMAIL=/dev/null $(PERL) Build test
 	$(PERL) Build install destdir=$(TMP)
 
-	[ ! -d $(CURDIR)/debian/$(shell dh_listpackages)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(CURDIR)/debian/$(shell dh_listpackages)/usr/lib/perl5
-	find $(TMP) -type f -name .packlist | xargs rm -f
+	[ ! -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.
@@ -65,8 +62,6 @@
 	dh_installdocs README Todo
 	dh_installchangelogs Changes
 	dh_perl
-	dh_link
-	dh_strip
 	dh_compress
 	dh_fixperms
 	dh_installdeb




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