[Python-apps-commits] r10508 - in packages/python-docker/trunk (9 files)

paultag at users.alioth.debian.org paultag at users.alioth.debian.org
Tue Feb 11 03:19:52 UTC 2014


    Date: Tuesday, February 11, 2014 @ 03:19:51
  Author: paultag
Revision: 10508

[svn-inject] Applying Debian modifications (0.2.3-1) to trunk

Added:
  packages/python-docker/trunk/debian/
  packages/python-docker/trunk/debian/changelog
  packages/python-docker/trunk/debian/compat
  packages/python-docker/trunk/debian/control
  packages/python-docker/trunk/debian/copyright
  packages/python-docker/trunk/debian/rules
  packages/python-docker/trunk/debian/source/
  packages/python-docker/trunk/debian/source/format
  packages/python-docker/trunk/debian/watch


Property changes on: packages/python-docker/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/python-docker/trunk/debian/changelog
===================================================================
--- packages/python-docker/trunk/debian/changelog	                        (rev 0)
+++ packages/python-docker/trunk/debian/changelog	2014-02-11 03:19:51 UTC (rev 10508)
@@ -0,0 +1,5 @@
+python-docker (0.2.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #734679)
+
+ -- Paul Tagliamonte <paultag at debian.org>  Mon, 10 Feb 2014 22:13:24 -0500

Added: packages/python-docker/trunk/debian/compat
===================================================================
--- packages/python-docker/trunk/debian/compat	                        (rev 0)
+++ packages/python-docker/trunk/debian/compat	2014-02-11 03:19:51 UTC (rev 10508)
@@ -0,0 +1 @@
+9

Added: packages/python-docker/trunk/debian/control
===================================================================
--- packages/python-docker/trunk/debian/control	                        (rev 0)
+++ packages/python-docker/trunk/debian/control	2014-02-11 03:19:51 UTC (rev 10508)
@@ -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.

Added: packages/python-docker/trunk/debian/copyright
===================================================================
--- packages/python-docker/trunk/debian/copyright	                        (rev 0)
+++ packages/python-docker/trunk/debian/copyright	2014-02-11 03:19:51 UTC (rev 10508)
@@ -0,0 +1,28 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0
+Upstream-Name: docker-py
+Upstream-Contact: Docker, Inc.
+Source: https://github.com/dotcloud/docker-py
+
+Files: *
+Copyright: 2014, Docker, Inc.
+License: Apache-2.0
+
+Files: debian/*
+Copyright: 2014, Paul R. Tagliamonte <paultag at debian.org>
+License: Apache-2.0
+
+License: Apache-2.0
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the complete text of the Apache version 2.0 license
+ can be found in "/usr/share/common-licenses/Apache-2.0".

Added: packages/python-docker/trunk/debian/rules
===================================================================
--- packages/python-docker/trunk/debian/rules	                        (rev 0)
+++ packages/python-docker/trunk/debian/rules	2014-02-11 03:19:51 UTC (rev 10508)
@@ -0,0 +1,34 @@
+#!/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


Property changes on: packages/python-docker/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/python-docker/trunk/debian/source/format
===================================================================
--- packages/python-docker/trunk/debian/source/format	                        (rev 0)
+++ packages/python-docker/trunk/debian/source/format	2014-02-11 03:19:51 UTC (rev 10508)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/python-docker/trunk/debian/watch
===================================================================
--- packages/python-docker/trunk/debian/watch	                        (rev 0)
+++ packages/python-docker/trunk/debian/watch	2014-02-11 03:19:51 UTC (rev 10508)
@@ -0,0 +1,3 @@
+version=3
+https://pypi.python.org/packages/source/d/docker-py/ \
+    docker-py-(\d.*).tar.gz




More information about the Python-apps-commits mailing list