[Python-modules-commits] r27612 - in packages/python-docker/tags (6 files)

paultag at users.alioth.debian.org paultag at users.alioth.debian.org
Wed Feb 12 03:55:36 UTC 2014


    Date: Wednesday, February 12, 2014 @ 03:55:35
  Author: paultag
Revision: 27612

[svn-buildpackage] Tagging python-docker 0.2.3-1

Added:
  packages/python-docker/tags/0.2.3-1/
  packages/python-docker/tags/0.2.3-1/debian/control
    (from rev 27611, packages/python-docker/trunk/debian/control)
  packages/python-docker/tags/0.2.3-1/debian/pydist-overrides
    (from rev 27611, packages/python-docker/trunk/debian/pydist-overrides)
  packages/python-docker/tags/0.2.3-1/debian/rules
    (from rev 27611, packages/python-docker/trunk/debian/rules)
Deleted:
  packages/python-docker/tags/0.2.3-1/debian/control
  packages/python-docker/tags/0.2.3-1/debian/rules

Deleted: packages/python-docker/tags/0.2.3-1/debian/control
===================================================================
--- packages/python-docker/trunk/debian/control	2014-02-11 03:23:53 UTC (rev 27587)
+++ packages/python-docker/tags/0.2.3-1/debian/control	2014-02-12 03:55:35 UTC (rev 27612)
@@ -1,37 +0,0 @@
-Source: python-docker
-Section: python
-Priority: optional
-Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Paul Tagliamonte <paultag at debian.org>,
- Docker Packaging Team <docker-maint at lists.alioth.debian.org>
-Build-Depends: debhelper (>= 9),
- python-all (>= 2.6.6-3~),
- python-setuptools,
- python3-all (>= 3.1.2),
- python3-setuptools
-Standards-Version: 3.9.4
-Homepage: https://github.com/dotcloud/docker-py/
-Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-docker/trunk/
-Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-docker/trunk/
-X-Python-Version: >= 2.6
-X-Python3-Version: >= 3.3
-
-Package: python-docker
-Architecture: all
-Depends: ${misc:Depends}, ${python:Depends}
-Description: Python 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 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.

Copied: packages/python-docker/tags/0.2.3-1/debian/control (from rev 27611, packages/python-docker/trunk/debian/control)
===================================================================
--- packages/python-docker/tags/0.2.3-1/debian/control	                        (rev 0)
+++ packages/python-docker/tags/0.2.3-1/debian/control	2014-02-12 03:55:35 UTC (rev 27612)
@@ -0,0 +1,37 @@
+Source: python-docker
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Paul Tagliamonte <paultag at debian.org>,
+ Docker Packaging Team <docker-maint at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9),
+ python-all (>= 2.6.6-3~),
+ python-setuptools,
+# python3-all (>= 3.1.2),
+# python3-setuptools
+Standards-Version: 3.9.4
+Homepage: https://github.com/dotcloud/docker-py/
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-docker/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-docker/trunk/
+X-Python-Version: >= 2.6
+#X-Python3-Version: >= 3.3
+
+Package: python-docker
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python 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 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.

Copied: packages/python-docker/tags/0.2.3-1/debian/pydist-overrides (from rev 27611, packages/python-docker/trunk/debian/pydist-overrides)
===================================================================
--- packages/python-docker/tags/0.2.3-1/debian/pydist-overrides	                        (rev 0)
+++ packages/python-docker/tags/0.2.3-1/debian/pydist-overrides	2014-02-12 03:55:35 UTC (rev 27612)
@@ -0,0 +1 @@
+websocket-client python-websocket

Deleted: packages/python-docker/tags/0.2.3-1/debian/rules
===================================================================
--- packages/python-docker/trunk/debian/rules	2014-02-11 03:23:53 UTC (rev 27587)
+++ packages/python-docker/tags/0.2.3-1/debian/rules	2014-02-12 03:55:35 UTC (rev 27612)
@@ -1,34 +0,0 @@
-#!/usr/bin/make -f
-
-PY2_PACKAGE_NAME=python-docker
-PY3_PACKAGE_NAME=python3-docker
-
-PYVERS  = $(shell pyversions -r)
-PY3VERS = $(shell py3versions -r)
-
-%:
-	dh $@ --with python2,python3
-
-override_dh_auto_clean:
-	dh_auto_clean
-	rm -rvf ./docs/build ./*.egg-info ./build
-
-override_dh_auto_build:
-	set -xe; \
-	for py in $(PYVERS) $(PY3VERS); do \
-		$$py setup.py build; \
-	done
-
-override_dh_auto_install:
-	set -xe; \
-	for py in $(PYVERS); do \
-		$$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
-	# Remove me when dh_python2 can handle this file
-	rm -vf debian/*/usr/lib/python*/*-packages/*.egg-info/SOURCES.txt

Copied: packages/python-docker/tags/0.2.3-1/debian/rules (from rev 27611, packages/python-docker/trunk/debian/rules)
===================================================================
--- packages/python-docker/tags/0.2.3-1/debian/rules	                        (rev 0)
+++ packages/python-docker/tags/0.2.3-1/debian/rules	2014-02-12 03:55:35 UTC (rev 27612)
@@ -0,0 +1,38 @@
+#!/usr/bin/make -f
+
+PY2_PACKAGE_NAME=python-docker
+#PY3_PACKAGE_NAME=python3-docker
+
+PYVERS  = $(shell pyversions -r)
+#PY3VERS = $(shell py3versions -r)
+
+%:
+	dh $@ --with python2  # ,python3
+
+override_dh_auto_clean:
+	dh_auto_clean
+	rm -rvf ./docs/build ./*.egg-info ./build
+
+override_dh_auto_build:
+	set -xe; \
+	#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
+
+override_dh_auto_install:
+	set -xe; \
+	for py in $(PYVERS); do \
+		$$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
+	# 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