[Python-modules-commits] [python-docker] branch master updated (6603de7 -> 2e6ec37)

Ondřej Nový onovy at moszumanska.debian.org
Thu Sep 8 12:38:52 UTC 2016


This is an automated email from the git hooks/post-receive script.

onovy pushed a change to branch master
in repository python-docker.

      from  6603de7   s/UNRELEASED/unstable/
       new  8f8b69b   record new upstream branch created by importing python-docker_1.9.0.orig.tar.gz
       new  49556cb   Import python-docker_1.9.0.orig.tar.gz
       new  5de320d   Unpin dependencies so newer versions satisfy them appropriately
       new  be34335   Lower Docker API version to 1.20 for Docker 1.8.3 compatibility
       new  08afb27   merge patched into master
       new  5fcb828   Unpin dependencies so newer versions satisfy them appropriately
       new  c70e3b8   merge patched into master
       new  dacca4f   Unpin dependencies so newer versions satisfy them appropriately
       new  ae4d635   merge patched into master
       new  9a7bed5   New upstream release (Closes: #830172)
       new  7322552   Dropped d/p/0002-Lower-Docker-API-version-to-1.20-for-Docker-1.8.3-co.patch (Not needed anymore)
       new  38a3d64   Bump required version of python3-websocket to 0.32.0
       new  2e6ec37   Standards-Version is 3.9.8 now (no change)

The 13 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 MANIFEST.in                                        |   2 +
 PKG-INFO                                           |   5 +-
 README.md                                          |   8 +-
 README.rst                                         |  37 +++
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  11 +
 debian/control                                     |   6 +-
 ...r-API-version-to-1.20-for-Docker-1.8.3-co.patch |  19 --
 debian/patches/requirements.patch                  |  53 ++---
 debian/patches/series                              |   1 -
 docker/__init__.py                                 |   2 +-
 docker/api/build.py                                |  11 +-
 docker/api/container.py                            |  46 +++-
 docker/api/daemon.py                               |   4 +-
 docker/api/image.py                                |   8 +-
 docker/api/network.py                              |  25 +-
 docker/auth/auth.py                                |  15 +-
 docker/client.py                                   |  67 +++++-
 docker/constants.py                                |   9 +-
 docker/ssladapter/ssladapter.py                    |   9 +
 docker/tls.py                                      |   7 +-
 docker/transport/__init__.py                       |   6 +
 docker/transport/npipeconn.py                      |  80 +++++++
 docker/transport/npipesocket.py                    | 191 +++++++++++++++
 docker/{unixconn => transport}/unixconn.py         |   8 +-
 docker/unixconn/__init__.py                        |   1 -
 docker/utils/utils.py                              | 258 +++++++++++++++------
 docker/version.py                                  |   2 +-
 docker_py.egg-info/PKG-INFO                        |   5 +-
 docker_py.egg-info/SOURCES.txt                     |  15 +-
 docker_py.egg-info/pbr.json                        |   1 -
 docker_py.egg-info/requires.txt                    |  10 +-
 requirements.txt                                   |   4 +-
 setup.py                                           |  21 +-
 test-requirements.txt                              |   2 +-
 tests/integration/api_test.py                      |   2 +-
 tests/integration/build_test.py                    |  28 +++
 tests/integration/container_test.py                |  92 +++++++-
 tests/integration/image_test.py                    |  14 ++
 tests/integration/network_test.py                  | 141 ++++++++++-
 tests/unit/api_test.py                             |  30 +++
 tests/unit/auth_test.py                            |   5 +-
 tests/unit/client_test.py                          |  70 ++++++
 tests/unit/container_test.py                       | 129 ++++++++++-
 tests/unit/fake_api.py                             |   7 +
 tests/unit/image_test.py                           |   3 +-
 tests/unit/ssladapter_test.py                      |  79 +++++++
 tests/{__init__.py => unit/testdata/certs/ca.pem}  |   0
 .../{__init__.py => unit/testdata/certs/cert.pem}  |   0
 tests/{__init__.py => unit/testdata/certs/key.pem} |   0
 tests/unit/utils_test.py                           | 174 +++++++-------
 51 files changed, 1430 insertions(+), 307 deletions(-)
 create mode 100644 README.rst
 delete mode 100644 debian/patches/0002-Lower-Docker-API-version-to-1.20-for-Docker-1.8.3-co.patch
 create mode 100644 docker/transport/__init__.py
 create mode 100644 docker/transport/npipeconn.py
 create mode 100644 docker/transport/npipesocket.py
 rename docker/{unixconn => transport}/unixconn.py (93%)
 delete mode 100644 docker/unixconn/__init__.py
 delete mode 100644 docker_py.egg-info/pbr.json
 create mode 100644 tests/unit/client_test.py
 create mode 100644 tests/unit/ssladapter_test.py
 copy tests/{__init__.py => unit/testdata/certs/ca.pem} (100%)
 copy tests/{__init__.py => unit/testdata/certs/cert.pem} (100%)
 copy tests/{__init__.py => unit/testdata/certs/key.pem} (100%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-docker.git



More information about the Python-modules-commits mailing list