[Python-modules-commits] r28099 - in packages/python-keyczar/trunk/debian (control rules)
chrisk-guest at users.alioth.debian.org
chrisk-guest at users.alioth.debian.org
Mon Mar 10 00:35:24 UTC 2014
Date: Monday, March 10, 2014 @ 00:35:23
Author: chrisk-guest
Revision: 28099
Drop support for Python 2.5
Python 2.5 is no longer supported upstream, and dropping it allows us to make
certain implementation-specific assumptions such as the name of the generated
build dir.
Modified:
packages/python-keyczar/trunk/debian/control
packages/python-keyczar/trunk/debian/rules
Modified: packages/python-keyczar/trunk/debian/control
===================================================================
--- packages/python-keyczar/trunk/debian/control 2014-03-10 00:34:07 UTC (rev 28098)
+++ packages/python-keyczar/trunk/debian/control 2014-03-10 00:35:23 UTC (rev 28099)
@@ -9,7 +9,7 @@
python (>= 2.6.6-14~) | python-simplejson,
python-pyasn1,
python-crypto
-X-Python-Version: >= 2.5
+X-Python-Version: >= 2.6
Standards-Version: 3.9.5
Homepage: http://www.keyczar.org/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-keyczar/trunk/
@@ -20,7 +20,6 @@
Depends:
${python:Depends},
${misc:Depends},
- python (>= 2.6) | python-simplejson,
python-pyasn1,
python-crypto
Conflicts:
Modified: packages/python-keyczar/trunk/debian/rules
===================================================================
--- packages/python-keyczar/trunk/debian/rules 2014-03-10 00:34:07 UTC (rev 28098)
+++ packages/python-keyczar/trunk/debian/rules 2014-03-10 00:35:23 UTC (rev 28099)
@@ -15,10 +15,6 @@
set -e ; \
cd tests/keyczar_tests/; \
for py in $(PYVERS); do \
- if [ "$$py" \< "2.6" ]; then \
- PYTHONPATH=$(CURDIR)/build/lib python$$py alltests.py; \
- else \
- PYTHONPATH=$(CURDIR)/build/lib.$(shell python -c 'import distutils.util as d; print d.get_platform()')-$$py python$$py alltests.py; \
- fi; \
+ PYTHONPATH=$(CURDIR)/build/lib.$(shell python -c 'import distutils.util as d; print d.get_platform()')-$$py python$$py alltests.py; \
done
endif
More information about the Python-modules-commits
mailing list