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, 08 Feb 2018 16:43:41
Message-Id: 1518108200.8be90a58ceef703f975c279c54d02ace9dadad77.mrueg@gentoo
1 commit: 8be90a58ceef703f975c279c54d02ace9dadad77
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 7 13:26:07 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 8 16:43:20 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8be90a58
7
8 dev-python/docker-py: Remove old
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-2.6.1.ebuild | 56 -----------------------------
14 2 files changed, 57 deletions(-)
15
16 diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
17 index 4de1eb39c1f..50318f77a94 100644
18 --- a/dev-python/docker-py/Manifest
19 +++ b/dev-python/docker-py/Manifest
20 @@ -1,3 +1,2 @@
21 DIST docker-py-2.4.2.tar.gz 180890 BLAKE2B 57518a0c8481fde0198100354225cd8a2908af6d3ca2690d98ad80b386ca4c688c7ccd6a34634ce04fb5ab1553b6c0dfbc75d28333a10f28de7188fe2ee7ffde SHA512 3367066b2acd96b85bef28aef00c91d752dc25b3055575b4f2f9c0b981eb4bca81a742bc6da5f97cf039cd9c7d818e3f80101997fe3a2e2c6f3a9c42fd3111c2
22 -DIST docker-py-2.6.1.tar.gz 191919 BLAKE2B e8147d83594138d5456fd75efa776b8c69fbca9f9d3959e1e2318dbdb9ae638ecf483785bbfebf58308d237a7b5d6f1ac885489811094d11e0e7270c0555ec46 SHA512 ee5e646e6b45ed9fafd8bd32c4cdeff565988ff77b21303b0c1b4b1ea56a9d51d04c4f8c9595159efff09cfd8962c1a7060c1910d48cbfb4a2024e90b662ae58
23 DIST docker-py-2.7.0.tar.gz 196369 BLAKE2B dd181dbf32f5afda06e748cb49f15d5fc6ff4a579c64b505308ad0d96913ddc8065d165090ec2b20e1f17a4519988a5665dd7a8c7643ca53aaa4385ceecb1341 SHA512 15cf1d8949d71e472f7636ff975cbc4c5f3e18e2d193cb603ade1397a56d0c1ec239167b71be325af99105bc36590a0f0faa1ab010f36fe8baca7807ddfa191b
24
25 diff --git a/dev-python/docker-py/docker-py-2.6.1.ebuild b/dev-python/docker-py/docker-py-2.6.1.ebuild
26 deleted file mode 100644
27 index 559c7b0e68d..00000000000
28 --- a/dev-python/docker-py/docker-py-2.6.1.ebuild
29 +++ /dev/null
30 @@ -1,56 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Python client for Docker"
40 -HOMEPAGE="https://github.com/docker/docker-py"
41 -SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm64 ~x86"
46 -IUSE="doc test"
47 -
48 -RDEPEND="
49 - >=dev-python/docker-pycreds-0.2.1[${PYTHON_USEDEP}]
50 - !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
51 - !~dev-python/requests-2.12.2[${PYTHON_USEDEP}]
52 - >=dev-python/requests-2.11.1[${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 -}