r13288 - in /trunk/liblist-moreutils-perl/debian: changelog rules
dmn at users.alioth.debian.org
dmn at users.alioth.debian.org
Wed Jan 23 13:03:38 UTC 2008
Author: dmn
Date: Wed Jan 23 13:03:37 2008
New Revision: 13288
URL: http://svn.debian.org/wsvn/?sc=1&rev=13288
Log:
* debian/rules:
+ use "$@" when touching stamps
+ make install target depend only on install-stamp and that - depend on
build-stamp
+ stop installing redundant README
+ drop unneeded dh_installexamples and dh_link calls
+ clean stamps before realclean
Modified:
trunk/liblist-moreutils-perl/debian/changelog
trunk/liblist-moreutils-perl/debian/rules
Modified: trunk/liblist-moreutils-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/debian/changelog?rev=13288&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/debian/changelog (original)
+++ trunk/liblist-moreutils-perl/debian/changelog Wed Jan 23 13:03:37 2008
@@ -3,6 +3,13 @@
* New upstream release
* Standards-Version: 3.7.3 (no changes)
* debhelper compatibility level 6
+ * debian/rules:
+ + use "$@" when touching stamps
+ + make install target depend only on install-stamp and that - depend on
+ build-stamp
+ + stop installing redundant README
+ + drop unneeded dh_installexamples and dh_link calls
+ + clean stamps before realclean
-- Damyan Ivanov <dmn at debian.org> Wed, 23 Jan 2008 14:56:29 +0200
Modified: trunk/liblist-moreutils-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/liblist-moreutils-perl/debian/rules?rev=13288&op=diff
==============================================================================
--- trunk/liblist-moreutils-perl/debian/rules (original)
+++ trunk/liblist-moreutils-perl/debian/rules Wed Jan 23 13:03:37 2008
@@ -36,19 +36,19 @@
$(PERL) Makefile.PL INSTALLDIRS=vendor
$(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
- touch build-stamp
+ touch $@
clean:
dh_testdir
dh_testroot
+ dh_clean build-stamp install-stamp
+
# Add commands to clean up after the build process here
-$(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
@@ -62,7 +62,7 @@
# the dirs, we delete them from the deb:
[ ! -d $(TMP)/usr/share/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/share/perl5
- touch install-stamp
+ touch $@
# Build architecture-independent files here.
binary-indep: build install
@@ -72,19 +72,13 @@
binary-arch: build install
dh_testdir
dh_testroot
- dh_installdocs README
- dh_installexamples
-# dh_installmenu
-# dh_installcron
-# dh_installman
+ dh_installdocs
dh_installchangelogs Changes
- dh_link
dh_strip
dh_compress
dh_fixperms
- dh_makeshlibs
dh_installdeb
- dh_perl
+ dh_perl
dh_shlibdeps
dh_gencontrol
dh_md5sums
More information about the Pkg-perl-cvs-commits
mailing list