Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/docker-py: docker-py-1.2.1.ebuild ChangeLog
Date: Sat, 02 May 2015 15:42:37
Message-Id: 20150502154228.3FBC99A7@oystercatcher.gentoo.org
1 alunduil 15/05/02 15:42:27
2
3 Modified: ChangeLog
4 Added: docker-py-1.2.1.ebuild
5 Log:
6 add version 1.2.1
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
9
10 Revision Changes Path
11 1.24 dev-python/docker-py/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/ChangeLog?rev=1.24&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/ChangeLog?rev=1.24&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/ChangeLog?r1=1.23&r2=1.24
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v
20 retrieving revision 1.23
21 retrieving revision 1.24
22 diff -u -r1.23 -r1.24
23 --- ChangeLog 25 Apr 2015 21:28:31 -0000 1.23
24 +++ ChangeLog 2 May 2015 15:42:27 -0000 1.24
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/docker-py
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v 1.23 2015/04/25 21:28:31 alunduil Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/ChangeLog,v 1.24 2015/05/02 15:42:27 alunduil Exp $
30 +
31 +*docker-py-1.2.1 (02 May 2015)
32 +
33 + 02 May 2015; Alex Brandt <alunduil@g.o> +docker-py-1.2.1.ebuild:
34 + add version 1.2.1
35
36 25 Apr 2015; Alex Brandt <alunduil@g.o> -docker-py-1.0.0.ebuild:
37 remove version 1.0.0
38
39
40
41 1.1 dev-python/docker-py/docker-py-1.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/docker-py-1.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/docker-py/docker-py-1.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: docker-py-1.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/docker-py/docker-py-1.2.1.ebuild,v 1.1 2015/05/02 15:42:27 alunduil Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
54
55 inherit distutils-r1 vcs-snapshot
56
57 DESCRIPTION="Python client for Docker."
58 HOMEPAGE="https://github.com/docker/docker-py"
59 SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="doc test"
65
66 DEPEND="
67 dev-python/setuptools[${PYTHON_USEDEP}]
68 doc? ( >=dev-python/mkdocs-0.9[${PYTHON_USEDEP}] )
69 test? ( >=dev-python/mock-1.0.1[${PYTHON_USEDEP}] )
70 "
71 RDEPEND="
72 >=dev-python/requests-2.5.2[${PYTHON_USEDEP}]
73 >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
74 $(python_gen_cond_dep '>=dev-python/websocket-client-0.11.0[${PYTHON_USEDEP}]' python2_7)
75 "
76
77 python_compile_all() {
78 if use doc; then
79 mkdocs build || die "docs failed to build"
80 fi
81 }
82
83 python_test() {
84 "${PYTHON}" tests/test.py || die "tests failed under ${EPYTHON}"
85 }
86
87 python_install_all() {
88 use doc && local HTML_DOCS=( site/. )
89
90 distutils-r1_python_install_all
91 }