[Python-modules-commits] r29719 - in packages/python-dugong/trunk/debian (3 files)
nikratio-guest at users.alioth.debian.org
nikratio-guest at users.alioth.debian.org
Fri Jul 11 04:28:03 UTC 2014
Date: Friday, July 11, 2014 @ 04:28:01
Author: nikratio-guest
Revision: 29719
Removed some packaging workarounds for Python 3.3 that are no longer
required.
Modified:
packages/python-dugong/trunk/debian/changelog
packages/python-dugong/trunk/debian/python.inv
packages/python-dugong/trunk/debian/rules
Modified: packages/python-dugong/trunk/debian/changelog
===================================================================
--- packages/python-dugong/trunk/debian/changelog 2014-07-11 03:33:35 UTC (rev 29718)
+++ packages/python-dugong/trunk/debian/changelog 2014-07-11 04:28:01 UTC (rev 29719)
@@ -1,3 +1,10 @@
+python-dugong (3.1+dfsg-2) UNRELEASED; urgency=medium
+
+ * Removed some packaging workarounds for Python 3.3 that are no longer
+ required.
+
+ -- Nikolaus Rath <Nikolaus at rath.org> Thu, 10 Jul 2014 21:21:42 -0700
+
python-dugong (3.1+dfsg-1) unstable; urgency=medium
* New upstream release.
Modified: packages/python-dugong/trunk/debian/python.inv
===================================================================
(Binary files differ)
Modified: packages/python-dugong/trunk/debian/rules
===================================================================
--- packages/python-dugong/trunk/debian/rules 2014-07-11 03:33:35 UTC (rev 29718)
+++ packages/python-dugong/trunk/debian/rules 2014-07-11 04:28:01 UTC (rev 29719)
@@ -13,18 +13,8 @@
override_dh_auto_build:
dh_auto_build
- # We need at least Python 3.4 to build the documentation.
- # While dugong supports Python 3.3 as well, there are some
- # optional components that require the asyncio module. To
- # include these components in the documentation, we need to
- # build the docs with Python 3.4. If Python 3.4 is not available,
- # fall back to the default Python (which is hopefully 3.5 or
- # newer :-).
- if which python3.4 > /dev/null; then \
- python3.4 setup.py build_sphinx; \
- else \
- python3 setup.py build_sphinx; \
- fi
+ # Build docs
+ python3 setup.py build_sphinx
.PHONY: override_dh_auto_clean
override_dh_auto_clean:
@@ -33,7 +23,7 @@
.PHONY: update_intersphinx
update_intersphinx:
- wget http://docs.python.org/3.4/objects.inv -O debian/python.inv
+ wget http://docs.python.org/3/objects.inv -O debian/python.inv
.PHONY: get-orig-source
get-orig-source:
More information about the Python-modules-commits
mailing list