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: Thu, 11 Apr 2019 11:06:58
Message-Id: 1554980800.ef999d9089ed41b9fa963c7e4f684590e1d4cdc1.mrueg@gentoo
1 commit: ef999d9089ed41b9fa963c7e4f684590e1d4cdc1
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 11 11:06:40 2019 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 11 11:06:40 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef999d90
7
8 dev-python/docker-py: Version bump to 3.7.0
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
12
13 dev-python/docker-py/Manifest | 1 +
14 dev-python/docker-py/docker-py-3.7.0.ebuild | 51 +++++++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
18 index 2ada36de8e6..d602bc9f739 100644
19 --- a/dev-python/docker-py/Manifest
20 +++ b/dev-python/docker-py/Manifest
21 @@ -4,3 +4,4 @@ DIST docker-py-3.4.1.tar.gz 207885 BLAKE2B 472f5dde4761b02a2b55c64762a0529dbaecc
22 DIST docker-py-3.5.0.tar.gz 209142 BLAKE2B 56e4400e1f67c870274eb2fdaf84edeac966a1486366355f2697f0fc4e5f37c5e4f3f8163e9187219a4fa27cd43be2bc19370a99755fa880c9e089d6af9bcc9e SHA512 c5ebc99df66d49f53c39ff897bd95afcbb92ced3ec6fd61148b6775cddf9e830454b1da5ac79ea0bba76f143f35f29dec66e7db5c6df33ca5157d3fe40cd4e93
23 DIST docker-py-3.5.1.tar.gz 209381 BLAKE2B de0992aff9af240eeb79b66f0f7ca11aca4132cbef0ca9796cfa778b0f44e2ebf83858d0e4df2b9dd813caa83e1c301829152362a6983e5ee96dd5806815ee6f SHA512 8e927794cd308e17fc75f3c6569026c9b9c9f44eb2aa1c191dcfc6d1aabc36bdd341795ba9a2243ae2a27c428868c9f45e8bfabd7c1c798f3f4c85b7855eda6d
24 DIST docker-py-3.6.0.tar.gz 213435 BLAKE2B 28301a508ef346373f8ac4033b697a71092c4162ba1be81bc69c513d1de700326a4e8ffcb1c015e20516aa1a09d31162d54182985eea3dc1dc23d6e79ef28fea SHA512 b32acb2585995c3c5bdef95ea4bbb6bcadba3b9fca81a3e637dc294b5dbd3823ee6c98236c4bb197373a96feafcaae665b9c64b805abd52e1ae27aa42079278d
25 +DIST docker-py-3.7.0.tar.gz 220407 BLAKE2B 3ba217957ff8746fb399ba23e4513810ffd96a758bfc5eba908ab3c66eb0a9711d94e5d9f517c301602961a21490659628d0a3deec3a4286155a4f5469304a3b SHA512 444634a26d0ce7af4850f346286cdac7f2c597aa6ce349c6371dbaa670aa0bcc2fa192221783b2059750d682580e34fcc5e115aeda0884838bf966decf9d0070
26
27 diff --git a/dev-python/docker-py/docker-py-3.7.0.ebuild b/dev-python/docker-py/docker-py-3.7.0.ebuild
28 new file mode 100644
29 index 00000000000..23df023bffa
30 --- /dev/null
31 +++ b/dev-python/docker-py/docker-py-3.7.0.ebuild
32 @@ -0,0 +1,51 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Python client for Docker"
42 +HOMEPAGE="https://github.com/docker/docker-py"
43 +SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm64 ~x86"
48 +IUSE="doc test"
49 +
50 +RDEPEND="
51 + >=dev-python/docker-pycreds-0.4.0[${PYTHON_USEDEP}]
52 + !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
53 + >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
54 + >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
55 + >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
56 + $(python_gen_cond_dep '>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 'python3_4' )
57 + $(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 'python2_7' )
58 +"
59 +DEPEND="
60 + dev-python/setuptools[${PYTHON_USEDEP}]
61 + test? (
62 + ${RDEPEND}
63 + >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
64 + dev-python/paramiko[${PYTHON_USEDEP}]
65 + dev-python/pytest-runner[${PYTHON_USEDEP}]
66 + >=dev-python/pytest-2.9.1[${PYTHON_USEDEP}]
67 + )
68 + doc? (
69 + dev-python/recommonmark[${PYTHON_USEDEP}]
70 + >=dev-python/sphinx-1.4.6[${PYTHON_USEDEP}]
71 + )
72 +"
73 +
74 +python_compile_all() {
75 + if use doc; then
76 + sphinx-build docs html || die "docs failed to build"
77 + HTML_DOCS=( html/. )
78 + fi
79 +}
80 +
81 +python_test() {
82 + py.test tests/unit/ || die "tests failed under ${EPYTHON}"
83 +}