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.1.0.ebuild ChangeLog
Date: Mon, 02 Mar 2015 23:58:46
Message-Id: 20150302235838.BECCE12E99@oystercatcher.gentoo.org
1 alunduil 15/03/02 23:58:38
2
3 Modified: ChangeLog
4 Added: docker-compose-1.1.0.ebuild
5 Log:
6 add version 1.1.0
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
9
10 Revision Changes Path
11 1.2 app-emulation/docker-compose/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 31 Jan 2015 16:49:42 -0000 1.1
24 +++ ChangeLog 2 Mar 2015 23:58:38 -0000 1.2
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-emulation/docker-compose
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v 1.1 2015/01/31 16:49:42 alunduil Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/docker-compose/ChangeLog,v 1.2 2015/03/02 23:58:38 alunduil Exp $
30 +
31 +*docker-compose-1.1.0 (02 Mar 2015)
32 +
33 + 02 Mar 2015; Alex Brandt <alunduil@g.o> +docker-compose-1.1.0.ebuild:
34 + add version 1.1.0
35
36 *docker-compose-1.1.0_rc2 (31 Jan 2015)
37 *docker-compose-1.1.0_rc1 (31 Jan 2015)
38
39
40
41 1.1 app-emulation/docker-compose/docker-compose-1.1.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/docker-compose-1.1.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-emulation/docker-compose/docker-compose-1.1.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: docker-compose-1.1.0.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/app-emulation/docker-compose/docker-compose-1.1.0.ebuild,v 1.1 2015/03/02 23:58:38 alunduil Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="Multi-container orchestration for Docker"
58 HOMEPAGE="https://www.docker.com/"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="Apache-2.0"
62 SLOT="0"
63 KEYWORDS="~amd64"
64 IUSE="test"
65
66 CDEPEND="
67 >=dev-python/dockerpty-0.3.2[${PYTHON_USEDEP}]
68 <dev-python/dockerpty-0.4[${PYTHON_USEDEP}]
69 >=dev-python/docker-py-0.6.0[${PYTHON_USEDEP}]
70 <dev-python/docker-py-0.8[${PYTHON_USEDEP}]
71 >=dev-python/docopt-0.6.1[${PYTHON_USEDEP}]
72 <dev-python/docopt-0.7[${PYTHON_USEDEP}]
73 >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
74 <dev-python/pyyaml-4[${PYTHON_USEDEP}]
75 >=dev-python/requests-2.2.1[${PYTHON_USEDEP}]
76 <dev-python/requests-2.5.0[${PYTHON_USEDEP}]
77 >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
78 <dev-python/six-2[${PYTHON_USEDEP}]
79 >=dev-python/texttable-0.8.1[${PYTHON_USEDEP}]
80 <dev-python/texttable-0.9[${PYTHON_USEDEP}]
81 >=dev-python/websocket-client-0.11.0[${PYTHON_USEDEP}]
82 <dev-python/websocket-client-1.0[${PYTHON_USEDEP}]
83 "
84 DEPEND="
85 dev-python/setuptools[${PYTHON_USEDEP}]
86 test? (
87 ${CDEPEND}
88 >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
89 dev-python/nose[${PYTHON_USEDEP}]
90 )
91 "
92 RDEPEND="${CDEPEND}"
93
94 python_test() {
95 nosetests tests/unit || die "Tests failed under ${EPYTHON}"
96 }