Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emulation/docker-compose: docker-compose-1.2.0-r1.ebuild ChangeLog
Date: Sat, 02 May 2015 15:59:59
Message-Id: 20150502155955.689E19AC@oystercatcher.gentoo.org
1 alunduil 15/05/02 15:59:55
2
3 Modified: ChangeLog
4 Added: docker-compose-1.2.0-r1.ebuild
5 Log:
6 add version 1.2.0-r1
7
8 * relax requirement on dev-python/requests
9
10 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
11
12 Revision Changes Path
13 1.9 app-emulation/docker-compose/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/ChangeLog?rev=1.9&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/ChangeLog?rev=1.9&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/ChangeLog?r1=1.8&r2=1.9
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v
22 retrieving revision 1.8
23 retrieving revision 1.9
24 diff -u -r1.8 -r1.9
25 --- ChangeLog 18 Apr 2015 00:56:57 -0000 1.8
26 +++ ChangeLog 2 May 2015 15:59:55 -0000 1.9
27 @@ -1,6 +1,12 @@
28 # ChangeLog for app-emulation/docker-compose
29 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v 1.8 2015/04/18 00:56:57 alunduil Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v 1.9 2015/05/02 15:59:55 alunduil Exp $
32 +
33 +*docker-compose-1.2.0-r1 (02 May 2015)
34 +
35 + 02 May 2015; Alex Brandt <alunduil@g.o>
36 + +docker-compose-1.2.0-r1.ebuild, +files/requests-requirements.patch:
37 + add version 1.2.0-r1 * relax requirement on dev-python/requests
38
39 18 Apr 2015; Alex Brandt <alunduil@g.o>
40 -docker-compose-1.1.0_rc2.ebuild:
41
42
43
44 1.1 app-emulation/docker-compose/docker-compose-1.2.0-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/docker-compose-1.2.0-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/docker-compose-1.2.0-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: docker-compose-1.2.0-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/docker-compose-1.2.0-r1.ebuild,v 1.1 2015/05/02 15:59:55 alunduil Exp $
54
55 EAPI=5
56 PYTHON_COMPAT=( python2_7 )
57
58 inherit bash-completion-r1 distutils-r1
59
60 DESCRIPTION="Multi-container orchestration for Docker"
61 HOMEPAGE="https://www.docker.com/"
62 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
63
64 LICENSE="Apache-2.0"
65 SLOT="0"
66 KEYWORDS="~amd64"
67 IUSE="test"
68
69 CDEPEND="
70 dev-python/setuptools[${PYTHON_USEDEP}]
71 >=dev-python/dockerpty-0.3.2[${PYTHON_USEDEP}]
72 <dev-python/dockerpty-0.4[${PYTHON_USEDEP}]
73 >=dev-python/docker-py-1.0.0[${PYTHON_USEDEP}]
74 <dev-python/docker-py-1.2[${PYTHON_USEDEP}]
75 >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
76 <dev-python/docopt-0.7[${PYTHON_USEDEP}]
77 >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
78 <dev-python/pyyaml-4[${PYTHON_USEDEP}]
79 >=dev-python/requests-2.2.1[${PYTHON_USEDEP}]
80 >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
81 <dev-python/six-2[${PYTHON_USEDEP}]
82 >=dev-python/texttable-0.8.1[${PYTHON_USEDEP}]
83 <dev-python/texttable-0.9[${PYTHON_USEDEP}]
84 >=dev-python/websocket-client-0.11.0[${PYTHON_USEDEP}]
85 <dev-python/websocket-client-1.0[${PYTHON_USEDEP}]
86 "
87 DEPEND="
88 test? (
89 ${CDEPEND}
90 >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
91 dev-python/nose[${PYTHON_USEDEP}]
92 )
93 "
94 RDEPEND="${CDEPEND}"
95
96 python_prepare_all() {
97 local PATCHES=(
98 "${FILESDIR}"/requests-requirements.patch
99 )
100
101 distutils-r1_python_prepare_all
102 }
103
104 python_test() {
105 nosetests tests/unit || die "tests failed under ${EPYTHON}"
106 }
107
108 python_install_all() {
109 newbashcomp contrib/completion/bash/docker-compose ${PN}
110
111 distutils-r1_python_install_all
112 }