r8355 - in /trunk/libconfig-file-perl/debian: changelog compat rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Fri Oct 19 21:03:18 UTC 2007


Author: dmn
Date: Fri Oct 19 21:03:17 2007
New Revision: 8355

URL: http://svn.debian.org/wsvn/?sc=1&rev=8355
Log:
* Cleaned debian/rules more
  + `pwd` --> $(CURDIR)
  + package is arch:all, so build in binary-indep target
  + drop unused dh_link, dh_installdirs, dh_shlibdeps, dh_strip
  + stop exporting DH_COMPAT and use debian/compat

Added:
    trunk/libconfig-file-perl/debian/compat
Modified:
    trunk/libconfig-file-perl/debian/changelog
    trunk/libconfig-file-perl/debian/rules

Modified: trunk/libconfig-file-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libconfig-file-perl/debian/changelog?rev=8355&op=diff
==============================================================================
--- trunk/libconfig-file-perl/debian/changelog (original)
+++ trunk/libconfig-file-perl/debian/changelog Fri Oct 19 21:03:17 2007
@@ -4,14 +4,21 @@
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed: XS-
     Vcs-Svn fields.
-  
+
   [ David Paleino ]
   * New upstream release
   * debian/control: added myself to Uploaders (and wrapping the field)
   * debian/watch updated to version 3 (using new regex as well)
   * debian/rules beautified (comments removed, ...)
 
- -- David Paleino <d.paleino at gmail.com>  Fri, 19 Oct 2007 22:26:01 +0200
+  [ Damyan Ivanov ]
+  * Cleaned debian/rules more
+    + `pwd` --> $(CURDIR)
+    + package is arch:all, so build in binary-indep target
+    + drop unused dh_link, dh_installdirs, dh_shlibdeps, dh_strip
+    + stop exporting DH_COMPAT and use debian/compat
+
+ -- Damyan Ivanov <dmn at debian.org>  Sat, 20 Oct 2007 00:02:07 +0300
 
 libconfig-file-perl (1.4-2) unstable; urgency=low
 

Added: trunk/libconfig-file-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libconfig-file-perl/debian/compat?rev=8355&op=file
==============================================================================
--- trunk/libconfig-file-perl/debian/compat (added)
+++ trunk/libconfig-file-perl/debian/compat Fri Oct 19 21:03:17 2007
@@ -1,0 +1,1 @@
+5

Modified: trunk/libconfig-file-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libconfig-file-perl/debian/rules?rev=8355&op=diff
==============================================================================
--- trunk/libconfig-file-perl/debian/rules (original)
+++ trunk/libconfig-file-perl/debian/rules Fri Oct 19 21:03:17 2007
@@ -6,7 +6,6 @@
 
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
-export DH_COMPAT=5
 
 PACKAGE=$(shell dh_listpackages)
 
@@ -17,14 +16,14 @@
 ifndef DESTDIR
 DESTDIR=..
 endif
-TMP     =`pwd`/debian/$(PACKAGE)
+TMP     =$(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
 build-stamp:
 	dh_testdir
 
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) 
+	$(MAKE)
 	$(MAKE) test
 
 	touch $@
@@ -42,25 +41,22 @@
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-	dh_installdirs
 
 	$(MAKE) install PREFIX=$(TMP)/usr
 	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
 
+binary-arch:
+
 binary-indep: build install
-binary-arch: build install
 	dh_testdir
 	dh_testroot
 	dh_installdocs 
 	dh_installman
 	dh_installchangelogs 
-	dh_link
-	dh_strip
 	dh_compress
 	dh_fixperms
 	dh_installdeb
-	dh_perl 
-	dh_shlibdeps
+	dh_perl
 	dh_gencontrol
 	dh_md5sums
 	dh_builddeb --destdir=$(DESTDIR)




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