Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/docker-py/
Date: Fri, 23 Mar 2018 15:06:02
Message-Id: 1521817535.e9010f70ab9e0b3e9cd94c526b9cd0439c992e7b.mrueg@gentoo
1 commit: e9010f70ab9e0b3e9cd94c526b9cd0439c992e7b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 23 15:03:12 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 23 15:05:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9010f70
7
8 dev-python/docker-py: Version bump to 3.1.4
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 dev-python/docker-py/Manifest | 1 +
13 dev-python/docker-py/docker-py-3.1.4.ebuild | 55 +++++++++++++++++++++++++++++
14 2 files changed, 56 insertions(+)
15
16 diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
17 index 5015ad87751..f9851c3f5c5 100644
18 --- a/dev-python/docker-py/Manifest
19 +++ b/dev-python/docker-py/Manifest
20 @@ -2,3 +2,4 @@ DIST docker-py-2.4.2.tar.gz 180890 BLAKE2B 57518a0c8481fde0198100354225cd8a2908a
21 DIST docker-py-2.7.0.tar.gz 196369 BLAKE2B dd181dbf32f5afda06e748cb49f15d5fc6ff4a579c64b505308ad0d96913ddc8065d165090ec2b20e1f17a4519988a5665dd7a8c7643ca53aaa4385ceecb1341 SHA512 15cf1d8949d71e472f7636ff975cbc4c5f3e18e2d193cb603ade1397a56d0c1ec239167b71be325af99105bc36590a0f0faa1ab010f36fe8baca7807ddfa191b
22 DIST docker-py-3.1.0.tar.gz 201288 BLAKE2B 0aa7f712952aac86df37f4eb8f9c60c71199454472ac14d50ee2fd5acdf1980adea6b9f065fdb920999e8d657ae37028e0aff90dd82c3e8b3b13850d748c0e97 SHA512 7f69e6095f36b7a526367bf2762704f5dc5337ba81b2733ad0b683edc271ab17f548da4398176f2e1ffaad41f8f445e1c790af14d815404ad4df7a25d0ff0b7b
23 DIST docker-py-3.1.1.tar.gz 201637 BLAKE2B f94ba89922eb62891113bef2b5f3d034eba0f6e91aeb657c265aa72e3b66ad5f6eba6430faae99485236689ef22e09eed3461126d84b51f369ef3004179e89c5 SHA512 139967232d687af9379e18abd1fd133fa655b6247055ae24fe9c8be02a1900d3af0bfcf0d994b7807c3623a3d1fd57e80ca18ce882855bae593321f0a85432f6
24 +DIST docker-py-3.1.4.tar.gz 202064 BLAKE2B 6ee3672cd1f62cd570d3939805465698879d747215b8424bc4edd79253c5bc25d193582dbfa6aa423f9b183d477486d6347f65ac7245d601d3f1fe2a1fd124ed SHA512 78081010ce4027156d3b4ebafee6023f387ee8e7ee4d77ee671a16a3fcb646fca91c5c36cfbaf94157f8a524a3e1a09b9cbfabf304e278a3c1e0132df5d13d13
25
26 diff --git a/dev-python/docker-py/docker-py-3.1.4.ebuild b/dev-python/docker-py/docker-py-3.1.4.ebuild
27 new file mode 100644
28 index 00000000000..8108a4abde8
29 --- /dev/null
30 +++ b/dev-python/docker-py/docker-py-3.1.4.ebuild
31 @@ -0,0 +1,55 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Python client for Docker"
41 +HOMEPAGE="https://github.com/docker/docker-py"
42 +SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~x86"
47 +IUSE="doc test"
48 +
49 +RDEPEND="
50 + >=dev-python/docker-pycreds-0.2.2[${PYTHON_USEDEP}]
51 + !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
52 + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
53 + >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
54 + >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
55 + $(python_gen_cond_dep '>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 'python3_4' )
56 + $(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 'python2_7' )
57 +"
58 +DEPEND="
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + test? (
61 + ${RDEPEND}
62 + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
63 + dev-python/pytest-runner[${PYTHON_USEDEP}]
64 + >=dev-python/pytest-2.9.1[${PYTHON_USEDEP}]
65 + )
66 + doc? (
67 + dev-python/recommonmark[${PYTHON_USEDEP}]
68 + >=dev-python/sphinx-1.4.6[${PYTHON_USEDEP}]
69 + )
70 +"
71 +
72 +python_prepare_all() {
73 + sed -i -e "s/import pip//" -e "s/if 'docker-py'.*/if False:/" setup.py || die
74 + distutils-r1_python_prepare_all
75 +}
76 +
77 +python_compile_all() {
78 + if use doc; then
79 + sphinx-build docs html || die "docs failed to build"
80 + HTML_DOCS=( html/. )
81 + fi
82 +}
83 +
84 +python_test() {
85 + py.test tests/unit/ || die "tests failed under ${EPYTHON}"
86 +}