[Pkg-tcltk-commits] r638 - tclex/trunk/debian

sgolovan-guest at alioth.debian.org sgolovan-guest at alioth.debian.org
Mon Jun 9 17:07:28 UTC 2008


Author: sgolovan-guest
Date: 2008-06-09 17:07:28 +0000 (Mon, 09 Jun 2008)
New Revision: 638

Modified:
   tclex/trunk/debian/changelog
   tclex/trunk/debian/rules
Log:
[tclex]
  * Protected quilt invocation in debian/rules to make it possible to convert
    bwidget source package to 3.0 (quilt) format (closes: #484914).


Modified: tclex/trunk/debian/changelog
===================================================================
--- tclex/trunk/debian/changelog	2008-06-09 17:01:05 UTC (rev 637)
+++ tclex/trunk/debian/changelog	2008-06-09 17:07:28 UTC (rev 638)
@@ -1,9 +1,11 @@
-tclex (1.2a1-14) UNRELEASED; urgency=low
+tclex (1.2a1-14) unstable; urgency=low
 
   * Fixed clean target to work with debhelper 7.0 (made dh_clean the last
     command, so debhelper logs are removed now).
+  * Protected quilt invocation in debian/rules to make it possible to convert
+    bwidget source package to 3.0 (quilt) format (closes: #484914).
 
- -- Sergei Golovan <sgolovan at debian.org>  Sun, 18 May 2008 13:58:14 +0400
+ -- Sergei Golovan <sgolovan at debian.org>  Mon, 09 Jun 2008 21:01:32 +0400
 
 tclex (1.2a1-13) unstable; urgency=low
 

Modified: tclex/trunk/debian/rules
===================================================================
--- tclex/trunk/debian/rules	2008-06-09 17:01:05 UTC (rev 637)
+++ tclex/trunk/debian/rules	2008-06-09 17:07:28 UTC (rev 638)
@@ -8,13 +8,13 @@
 
 unpatch:
 	dh_testdir
-	-quilt pop -a
+	quilt pop -a || test $$? = 2
 	rm -rf patch-stamp .pc
 
 patch: patch-stamp
 patch-stamp:
 	dh_testdir
-	quilt push -a
+	quilt push -a || test $$? = 2
 	touch patch-stamp
 
 build: build-stamp
@@ -31,14 +31,14 @@
 	dh_testroot
 	dh_clean
 
-clean-patched:
+clean-patched: patch-stamp
 	dh_testdir
 	dh_testroot
-	-rm -f build-stamp
+	rm -f build-stamp
 	[ ! -f src/Makefile ] || $(MAKE) -C src distclean
-	-rm -f src/*.so
-	-rm -f `find . -name "*~"`
-	-rm -rf debian/tclex debian/files* core debian/substvars
+	rm -f src/*.so
+	rm -f `find . -name "*~"`
+	rm -rf debian/tclex debian/files* core debian/substvars
 
 install: build
 	dh_testdir




More information about the Pkg-tcltk-commits mailing list