r2992 - in /packages/libfile-touch-perl/trunk/debian: changelog compat control rules

ntyni-guest at users.alioth.debian.org ntyni-guest at users.alioth.debian.org
Fri Jun 16 13:34:47 UTC 2006


Author: ntyni-guest
Date: Fri Jun 16 13:34:45 2006
New Revision: 2992

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=2992
Log:
Packaging cleanup:
  * Move debhelper to Build-Depends, as it's required by the 'clean' target.
  * Don't ignore the result of 'make distclean'.
  * Upgrade to Standards-Version 3.7.2. No changes needed.
  * Upgrade to debhelper compatibility level 5.
  * debian/rules: use $(CURDIR) [make] instead of $(PWD) [sh]

Added:
    packages/libfile-touch-perl/trunk/debian/compat
Modified:
    packages/libfile-touch-perl/trunk/debian/changelog
    packages/libfile-touch-perl/trunk/debian/control
    packages/libfile-touch-perl/trunk/debian/rules

Modified: packages/libfile-touch-perl/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/debian/changelog?rev=2992&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/debian/changelog (original)
+++ packages/libfile-touch-perl/trunk/debian/changelog Fri Jun 16 13:34:45 2006
@@ -1,3 +1,13 @@
+libfile-touch-perl (0.01-6) unstable; urgency=low
+
+  * Move debhelper to Build-Depends, as it's required by the 'clean' target.
+  * Don't ignore the result of 'make distclean'.
+  * Upgrade to Standards-Version 3.7.2. No changes needed.
+  * Upgrade to debhelper compatibility level 5.
+  * debian/rules: use $(CURDIR) [make] instead of $(PWD) [sh]
+
+ -- Niko Tyni <ntyni at iki.fi>  Fri, 16 Jun 2006 16:30:10 +0300
+
 libfile-touch-perl (0.01-5) unstable; urgency=low
 
   * Section is "perl", not "web" (closes: #250417)

Added: packages/libfile-touch-perl/trunk/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/debian/compat?rev=2992&op=file
==============================================================================
--- packages/libfile-touch-perl/trunk/debian/compat (added)
+++ packages/libfile-touch-perl/trunk/debian/compat Fri Jun 16 13:34:45 2006
@@ -1,0 +1,1 @@
+5

Modified: packages/libfile-touch-perl/trunk/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/debian/control?rev=2992&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/debian/control (original)
+++ packages/libfile-touch-perl/trunk/debian/control Fri Jun 16 13:34:45 2006
@@ -1,10 +1,11 @@
 Source: libfile-touch-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Allard Hoeve <allard at byte.nl>, Gunnar Wolf <gwolf at debian.org>, Joachim Breitner <nomeata at debian.org>
+Uploaders: Allard Hoeve <allard at byte.nl>, Gunnar Wolf <gwolf at debian.org>, Joachim Breitner <nomeata at debian.org>, Niko Tyni <ntyni at iki.fi>
 Section: perl
 Priority: optional
-Standards-Version: 3.6.1
-Build-Depends-Indep: debhelper (>> 4.1), perl (>> 5.8), perl-modules
+Standards-Version: 3.7.2
+Build-Depends-Indep: debhelper (>= 5)
+Build-Depends-Indep: perl (>> 5.8), perl-modules
 
 Package: libfile-touch-perl
 Architecture: all

Modified: packages/libfile-touch-perl/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/packages/libfile-touch-perl/trunk/debian/rules?rev=2992&op=diff
==============================================================================
--- packages/libfile-touch-perl/trunk/debian/rules (original)
+++ packages/libfile-touch-perl/trunk/debian/rules Fri Jun 16 13:34:45 2006
@@ -2,12 +2,10 @@
 # -*-makefile-*-
 # debian/rules file for libfile-touch-perl
 
-export DH_COMPAT=4
-
 PERL	?= /usr/bin/perl
 
 package	:= $(firstword $(shell dh_listpackages))
-prefix	:= $(PWD)/debian/$(package)/usr
+prefix	:= $(CURDIR)/debian/$(package)/usr
 
 version	:= $(shell dpkg-parsechangelog | \
 			sed -ne 's/^Version: *\([0-9]\+:\)*//p')
@@ -28,7 +26,7 @@
 
 clean:	checkroot
 	rm -f build-stamp
-	-$(MAKE) distclean
+	[ ! -f Makefile ] || $(MAKE) distclean
 	dh_clean
 
 binary-indep:	checkroot build




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