[Python-modules-commits] r27609 - in packages/python-docker/trunk/debian (control rules)
paultag at users.alioth.debian.org
paultag at users.alioth.debian.org
Wed Feb 12 03:28:47 UTC 2014
Date: Wednesday, February 12, 2014 @ 03:28:46
Author: paultag
Revision: 27609
Remove py3
Modified:
packages/python-docker/trunk/debian/control
packages/python-docker/trunk/debian/rules
Modified: packages/python-docker/trunk/debian/control
===================================================================
--- packages/python-docker/trunk/debian/control 2014-02-12 02:30:49 UTC (rev 27608)
+++ packages/python-docker/trunk/debian/control 2014-02-12 03:28:46 UTC (rev 27609)
@@ -26,12 +26,12 @@
.
This package provides Python 2 module bindings only.
-Package: python3-docker
-Architecture: all
-Depends: ${misc:Depends}, ${python3:Depends}
-Description: Python 3 wrapper to access docker.io's control socket
- This package contains oodles of routines that aid in controling
- docker.io over it's socket control, the same way the docker.io
- client controls the daemon.
- .
- This package provides Python 3 module bindings only.
+# Package: python3-docker
+# Architecture: all
+# Depends: ${misc:Depends}, ${python3:Depends}
+# Description: Python 3 wrapper to access docker.io's control socket
+# This package contains oodles of routines that aid in controling
+# docker.io over it's socket control, the same way the docker.io
+# client controls the daemon.
+# .
+# This package provides Python 3 module bindings only.
Modified: packages/python-docker/trunk/debian/rules
===================================================================
--- packages/python-docker/trunk/debian/rules 2014-02-12 02:30:49 UTC (rev 27608)
+++ packages/python-docker/trunk/debian/rules 2014-02-12 03:28:46 UTC (rev 27609)
@@ -1,10 +1,10 @@
#!/usr/bin/make -f
PY2_PACKAGE_NAME=python-docker
-PY3_PACKAGE_NAME=python3-docker
+#PY3_PACKAGE_NAME=python3-docker
PYVERS = $(shell pyversions -r)
-PY3VERS = $(shell py3versions -r)
+#PY3VERS = $(shell py3versions -r)
%:
dh $@ --with python2,python3
@@ -15,7 +15,11 @@
override_dh_auto_build:
set -xe; \
- for py in $(PYVERS) $(PY3VERS); do \
+ #for py in $(PYVERS) $(PY3VERS); do \
+ # $$py setup.py build; \
+ #done
+ # XXX: Remove under me once we enable py3
+ for py in $(PYVERS); do \
$$py setup.py build; \
done
@@ -25,10 +29,10 @@
$$py setup.py install --skip-build --root debian/$(PY2_PACKAGE_NAME) \
--install-layout deb; \
done
- set -xe; \
- for py in $(PY3VERS); do \
- $$py setup.py install --skip-build --root debian/$(PY3_PACKAGE_NAME) \
- --install-layout deb; \
- done
+ #set -xe; \
+ # for py in $(PY3VERS); do \
+ # $$py setup.py install --skip-build --root debian/$(PY3_PACKAGE_NAME) \
+ # --install-layout deb; \
+ #done
# Remove me when dh_python2 can handle this file
rm -vf debian/*/usr/lib/python*/*-packages/*.egg-info/SOURCES.txt
More information about the Python-modules-commits
mailing list