[Python-modules-commits] r1132 - in /packages/urwid/trunk/debian: changelog control copyright docs pycompat rules

pabs-guest at users.alioth.debian.org pabs-guest at users.alioth.debian.org
Sun Jul 9 12:08:39 UTC 2006


Author: pabs-guest
Date: Sun Jul  9 12:08:38 2006
New Revision: 1132

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1132
Log:
* Build the tutorial and Build-Depend on python-templayer
* Don't use XS-Python-Version and XB-Python-Version
* Move python to Build-Depends
* Only build the docs and run the tests once
* CDBS cleans *.pyc files, don't do that
* Remove the whole build directory on clean
* Use python-support >= 0.3
* Place the Debian packaging in the public domain

Added:
    packages/urwid/trunk/debian/pycompat
Modified:
    packages/urwid/trunk/debian/changelog
    packages/urwid/trunk/debian/control
    packages/urwid/trunk/debian/copyright
    packages/urwid/trunk/debian/docs
    packages/urwid/trunk/debian/rules

Modified: packages/urwid/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/urwid/trunk/debian/changelog?rev=1132&op=diff
==============================================================================
--- packages/urwid/trunk/debian/changelog (original)
+++ packages/urwid/trunk/debian/changelog Sun Jul  9 12:08:38 2006
@@ -1,3 +1,16 @@
+urwid (0.9.4-2) unstable; urgency=low
+
+  * Build the tutorial and Build-Depend on python-templayer
+  * Don't use XS-Python-Version and XB-Python-Version
+  * Move python to Build-Depends
+  * Only build the docs and run the tests once
+  * CDBS cleans *.pyc files, don't do that
+  * Remove the whole build directory on clean
+  * Use python-support >= 0.3
+  * Place the Debian packaging in the public domain
+
+ -- Paul Wise <pabs3 at bonedaddy.net>  Sun,  9 Jul 2006 20:07:30 +0800
+
 urwid (0.9.4-1) unstable; urgency=low
 
   * New upstream release

Modified: packages/urwid/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/urwid/trunk/debian/control?rev=1132&op=diff
==============================================================================
--- packages/urwid/trunk/debian/control (original)
+++ packages/urwid/trunk/debian/control Sun Jul  9 12:08:38 2006
@@ -3,17 +3,15 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Paul Wise <pabs3 at bonedaddy.net>, Gustavo Franco <stratus at debian.org>, Ian Ward <ian at excess.org>
-Build-Depends: debhelper (>= 5.0.37.1), cdbs (>= 0.4.41)
-Build-Depends-Indep: python-support (>= 0.2.3), python-all, python (>= 2.3.5-7)
+Build-Depends: debhelper (>= 5.0.37.1), cdbs (>= 0.4.41), python (>= 2.3.5-7)
+Build-Depends-Indep: python-support (>= 0.3), python-all, python-templayer
 Standards-Version: 3.7.2
-XS-Python-Version: all
 
 Package: python-urwid
 Architecture: all
 Depends: ${python:Depends}, ${misc:Depends}
 Replaces: python2.1-urwid, python2.2-urwid, python2.3-urwid, python2.4-urwid
 Conflicts: python2.1-urwid, python2.2-urwid, python2.3-urwid, python2.4-urwid
-XB-Python-Version: ${python:Versions}
 Description: curses-based UI/widget library for Python
  Urwid is a console user interface library that includes many features
  useful for text console application developers including:

Modified: packages/urwid/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/urwid/trunk/debian/copyright?rev=1132&op=diff
==============================================================================
--- packages/urwid/trunk/debian/copyright (original)
+++ packages/urwid/trunk/debian/copyright Sun Jul  9 12:08:38 2006
@@ -2,6 +2,10 @@
 Tue, 28 Mar 2006 18:07:55 +0800.
 
 It was downloaded from http://excess.org/urwid/
+
+Upstream Author:
+
+   Ian Ward <ian at excess.org>
 
 Copyright:
 
@@ -26,3 +30,5 @@
 On Debian GNU/Linux systems, the complete text of the GNU Lesser General
 Public License can be found in `/usr/share/common-licenses/LGPL'.
 
+The Debian packaging is placed in the public domain and
+is written by Paul Wise <pabs3 at bonedaddy.net>

Modified: packages/urwid/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/urwid/trunk/debian/docs?rev=1132&op=diff
==============================================================================
--- packages/urwid/trunk/debian/docs (original)
+++ packages/urwid/trunk/debian/docs Sun Jul  9 12:08:38 2006
@@ -1,1 +1,2 @@
 build/reference.html
+build/tutorial.html

Added: packages/urwid/trunk/debian/pycompat
URL: http://svn.debian.org/wsvn/python-modules/packages/urwid/trunk/debian/pycompat?rev=1132&op=file
==============================================================================
--- packages/urwid/trunk/debian/pycompat (added)
+++ packages/urwid/trunk/debian/pycompat Sun Jul  9 12:08:38 2006
@@ -1,0 +1,1 @@
+2

Modified: packages/urwid/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/urwid/trunk/debian/rules?rev=1132&op=diff
==============================================================================
--- packages/urwid/trunk/debian/rules (original)
+++ packages/urwid/trunk/debian/rules Sun Jul  9 12:08:38 2006
@@ -6,12 +6,15 @@
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/python-distutils.mk
 
-build/python-urwid::
+build/python-urwid:: build-docs-test-stamp
+build-docs-test-stamp:
 	set -e; for python in $(PYVERS); do rm -f urwid/*.pyc; $$python test_urwid.py ; done
 	python docgen_reference.py > build/reference.html
+	python docgen_tutorial.py > build/tutorial.html
+	touch build-docs-test-stamp
 
-install/python-urwid::
+binary-install/python-urwid::
 	chmod a+x debian/python-urwid/usr/share/python-support/python-urwid/urwid/*.py
 
 clean::
-	rm -f urwid/*.pyc
+	rm -rf build build-docs-test-stamp




More information about the Python-modules-commits mailing list