r13535 - in /trunk/libdevel-gdb-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Fri Jan 25 16:33:40 UTC 2008


Author: gregoa-guest
Date: Fri Jan 25 16:33:40 2008
New Revision: 13535

URL: http://svn.debian.org/wsvn/?sc=1&rev=13535
Log:
debian/rules:
  - move tests to build-stamp target
  - remove OPTIMIZE, we don't compile anything
  - move dh_clean before make realclean
  - let install-stamp target depend on build-stamp
  - remove call to dh_link

Modified:
    trunk/libdevel-gdb-perl/debian/changelog
    trunk/libdevel-gdb-perl/debian/rules

Modified: trunk/libdevel-gdb-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libdevel-gdb-perl/debian/changelog?rev=13535&op=diff
==============================================================================
--- trunk/libdevel-gdb-perl/debian/changelog (original)
+++ trunk/libdevel-gdb-perl/debian/changelog Fri Jan 25 16:33:40 2008
@@ -9,8 +9,14 @@
     make tests work without a STDIN), add quilt framework.
   * Set Standards-Version to 3.7.3 (no changes needed).
   * Set debhelper compatibility level to 6.
+  * debian/rules:
+    - move tests to build-stamp target
+    - remove OPTIMIZE, we don't compile anything
+    - move dh_clean before make realclean
+    - let install-stamp target depend on build-stamp
+    - remove call to dh_link
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Fri, 25 Jan 2008 17:29:19 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Fri, 25 Jan 2008 17:30:14 +0100
 
 libdevel-gdb-perl (2.0-1) unstable; urgency=low
 

Modified: trunk/libdevel-gdb-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libdevel-gdb-perl/debian/rules?rev=13535&op=diff
==============================================================================
--- trunk/libdevel-gdb-perl/debian/rules (original)
+++ trunk/libdevel-gdb-perl/debian/rules Fri Jan 25 16:33:40 2008
@@ -27,7 +27,8 @@
 
 	# Add commands to compile the package here
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	$(MAKE)
+	$(MAKE) test
 
 	touch build-stamp
 
@@ -35,19 +36,18 @@
 	dh_testdir
 	dh_testroot
 
+	dh_clean build-stamp install-stamp
+
 	# Add commands to clean up after the build process here
 	[ ! -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
-	$(MAKE) test
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
 
 	# As this is a architecture independent package, we are not
@@ -66,7 +66,6 @@
 	dh_installdocs README
 	dh_installchangelogs Changes
 	dh_perl
-	dh_link
 	dh_compress
 	dh_fixperms
 	dh_installdeb




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