[Python-modules-commits] r24804 - in packages/python-werkzeug/trunk/debian (3 files)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Thu Jun 13 20:41:36 UTC 2013
Date: Thursday, June 13, 2013 @ 20:41:34
Author: piotr
Revision: 24804
* New upstream release
* Suggest new packages:
- python-greenlet (used in werkzeug.contrib.iterio)
- python-pylibmc (as an alternative to python-memcache,
used in werkzeug.contrib.cache)
* Recommend python-pyinotify (used in werkzeug.serving)
* Remove Werkzeug.egg-info in clean target
* Standards-Version bumped to 3.9.4 (no changes needed)
Modified:
packages/python-werkzeug/trunk/debian/changelog
packages/python-werkzeug/trunk/debian/control
packages/python-werkzeug/trunk/debian/rules
Modified: packages/python-werkzeug/trunk/debian/changelog
===================================================================
--- packages/python-werkzeug/trunk/debian/changelog 2013-06-13 15:17:39 UTC (rev 24803)
+++ packages/python-werkzeug/trunk/debian/changelog 2013-06-13 20:41:34 UTC (rev 24804)
@@ -1,12 +1,20 @@
-python-werkzeug (0.8.3+dfsg-2) UNRELEASED; urgency=low
+python-werkzeug (0.9+dfsg-1) unstable; urgency=low
[ Piotr Ożarowski ]
+ * New upstream release
+ * Suggest new packages:
+ - python-greenlet (used in werkzeug.contrib.iterio)
+ - python-pylibmc (as an alternative to python-memcache,
+ used in werkzeug.contrib.cache)
+ * Recommend python-pyinotify (used in werkzeug.serving)
+ * Remove Werkzeug.egg-info in clean target
* Minimum required Python version bumped to 2.5 (due to with statements)
+ * Standards-Version bumped to 3.9.4 (no changes needed)
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
- -- Jakub Wilk <jwilk at debian.org> Sun, 05 May 2013 16:03:41 +0200
+ -- Piotr Ożarowski <piotr at debian.org> Thu, 13 Jun 2013 22:04:15 +0200
python-werkzeug (0.8.3+dfsg-1) unstable; urgency=low
Modified: packages/python-werkzeug/trunk/debian/control
===================================================================
--- packages/python-werkzeug/trunk/debian/control 2013-06-13 15:17:39 UTC (rev 24803)
+++ packages/python-werkzeug/trunk/debian/control 2013-06-13 20:41:34 UTC (rev 24804)
@@ -4,20 +4,23 @@
Maintainer: Noah Slater <nslater at tumbolia.org>
Uploaders: Piotr Ożarowski <piotr at debian.org>,
Python Modules Packaging Team <python-modules-team at lists.alioth.debian.org>
-Standards-Version: 3.9.2
+Standards-Version: 3.9.4
Build-Depends: debhelper (>= 8.1.0), python (>= 2.6.6-3), python-sphinx (>= 1.0.7+dfsg-1~)
+# , python3-all
Build-Depends-Indep: python-setuptools (>= 0.6b3),
python-simplejson, python-nose, python-lxml
Homepage: http://werkzeug.pocoo.org/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-werkzeug/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-werkzeug/trunk/
X-Python-Version: >= 2.5
+X-Python3-Version: >= 3.3
Package: python-werkzeug
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, libjs-jquery
-Recommends: python-simplejson | python (>= 2.6), python-openssl
-Suggests: ipython, python-genshi, python-pkg-resources, python-lxml, python-memcache,
+Recommends: python-simplejson | python (>= 2.6), python-openssl, python-pyinotify
+Suggests: ipython, python-genshi, python-pkg-resources, python-lxml,
+ python-greenlet, python-pylibmc | python-memcache,
${sphinxdoc:Depends}
Description: collection of utilities for WSGI applications
The Web Server Gateway Interface (WSGI) is a standard interface between web
@@ -27,3 +30,17 @@
request and response objects, an interactive debugging system and a powerful
URI dispatcher. Combine with your choice of third party libraries and
middleware to easily create a custom application framework.
+
+#Package: python3-werkzeug
+#Architecture: all
+#Depends: ${python3:Depends}, ${misc:Depends}
+#Recommends: python3-simplejson | python3, python3-openssl, python3-pyinotify
+#Suggests: ipython3, python3-pkg-resources, python3-lxml,
+#Description: collection of utilities for WSGI applications
+# The Web Server Gateway Interface (WSGI) is a standard interface between web
+# server software and web applications written in Python.
+# .
+# Werkzeug is a lightweight library for interfacing with WSGI. It features
+# request and response objects, an interactive debugging system and a powerful
+# URI dispatcher. Combine with your choice of third party libraries and
+# middleware to easily create a custom application framework.
Modified: packages/python-werkzeug/trunk/debian/rules
===================================================================
--- packages/python-werkzeug/trunk/debian/rules 2013-06-13 15:17:39 UTC (rev 24803)
+++ packages/python-werkzeug/trunk/debian/rules 2013-06-13 20:41:34 UTC (rev 24804)
@@ -28,8 +28,13 @@
find $(PKGDIR) -name '*\.png' -exec chmod -x '{}' \;
dh_fixperms
+override_dh_auto_test:
+ # run-tests.py is not included in the tarball
+ # TODO: run tests for all supported Python versions
+ python -c 'from werkzeug.testsuite import main; main()'
+
clean:
- rm -rf build
+ rm -rf build Werkzeug.egg-info/
dh_clean
make -C docs clean
find $(CURDIR) -name '*\.py[co]' -delete
More information about the Python-modules-commits
mailing list