[Pkg-tcltk-commits] r629 - bwidget/trunk/debian

sgolovan-guest at alioth.debian.org sgolovan-guest at alioth.debian.org
Sun Jun 8 06:17:43 UTC 2008


Author: sgolovan-guest
Date: 2008-06-08 06:17:42 +0000 (Sun, 08 Jun 2008)
New Revision: 629

Modified:
   bwidget/trunk/debian/changelog
   bwidget/trunk/debian/doc-base
   bwidget/trunk/debian/rules
Log:
[bwidget]
  * Protected quilt invocation in debian/rules to make it possible to convert
    bwidget source package to 3.0 (quilt) format (closes: #484906).
  * Changed section in debian/doc-base to Programming.


Modified: bwidget/trunk/debian/changelog
===================================================================
--- bwidget/trunk/debian/changelog	2008-06-01 17:48:20 UTC (rev 628)
+++ bwidget/trunk/debian/changelog	2008-06-08 06:17:42 UTC (rev 629)
@@ -2,8 +2,11 @@
 
   * 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: #484906).
+  * Changed section in debian/doc-base to Programming.
 
- -- Sergei Golovan <sgolovan at debian.org>  Thu, 01 May 2008 13:00:02 +0400
+ -- Sergei Golovan <sgolovan at debian.org>  Sun, 08 Jun 2008 10:08:37 +0400
 
 bwidget (1.8.0-2) unstable; urgency=low
 

Modified: bwidget/trunk/debian/doc-base
===================================================================
--- bwidget/trunk/debian/doc-base	2008-06-01 17:48:20 UTC (rev 628)
+++ bwidget/trunk/debian/doc-base	2008-06-08 06:17:42 UTC (rev 629)
@@ -4,7 +4,7 @@
 Abstract: This is a documentation for BWidget - the megawidget set for Tcl/Tk.
  It contains documentation on individual BWidget widgets, supplied
  with upstream distribution.
-Section: Apps/Programming
+Section: Programming
 
 Format: HTML
 Index: /usr/share/doc/bwidget/html/index.html

Modified: bwidget/trunk/debian/rules
===================================================================
--- bwidget/trunk/debian/rules	2008-06-01 17:48:20 UTC (rev 628)
+++ bwidget/trunk/debian/rules	2008-06-08 06:17:42 UTC (rev 629)
@@ -12,13 +12,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
@@ -36,7 +36,7 @@
 	dh_testroot
 	dh_clean
 
-clean-patched:
+clean-patched: patch-stamp
 	dh_testdir
 	dh_testroot
 	-rm -f build-stamp install-stamp




More information about the Pkg-tcltk-commits mailing list