Gentoo Archives: gentoo-commits

From: Alex Brandt <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-compose/
Date: Wed, 25 Nov 2015 14:42:19
Message-Id: 1448462471.6d4b41d7904e388e9e65581157eceadd5e18c5af.alunduil@gentoo
1 commit: 6d4b41d7904e388e9e65581157eceadd5e18c5af
2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 25 14:40:32 2015 +0000
4 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 25 14:41:11 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d4b41d7
7
8 app-emulation/docker-compose: move enum34 dependence
9
10 The dev-python/enum34 dependence was in the incorrect set of dependencies. I
11 read the setup.py incorrectly and placed it in testing dependences rather than
12 common. This fixes bug #566754.
13
14 Package-Manager: portage-2.2.26
15
16 app-emulation/docker-compose/docker-compose-1.5.1.ebuild | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 diff --git a/app-emulation/docker-compose/docker-compose-1.5.1.ebuild b/app-emulation/docker-compose/docker-compose-1.5.1.ebuild
20 index e988d19..e20684f 100644
21 --- a/app-emulation/docker-compose/docker-compose-1.5.1.ebuild
22 +++ b/app-emulation/docker-compose/docker-compose-1.5.1.ebuild
23 @@ -36,13 +36,13 @@ CDEPEND="
24 <dev-python/texttable-0.9[${PYTHON_USEDEP}]
25 >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
26 <dev-python/websocket-client-1.0[${PYTHON_USEDEP}]
27 + $(python_gen_cond_dep '>=dev-python/enum34-1.0.4[${PYTHON_USEDEP}]' 'python2_7' )
28 + $(python_gen_cond_dep '<dev-python/enum34-2[${PYTHON_USEDEP}]' 'python2_7' )
29 "
30 DEPEND="
31 test? (
32 ${CDEPEND}
33 dev-python/pytest[${PYTHON_USEDEP}]
34 - $(python_gen_cond_dep '>=dev-python/enum34-1.0.4[${PYTHON_USEDEP}]' 'python2_7' )
35 - $(python_gen_cond_dep '<dev-python/enum34-2[${PYTHON_USEDEP}]' 'python2_7' )
36 $(python_gen_cond_dep '>=dev-python/mock-1.0.1[${PYTHON_USEDEP}]' 'python2_7' )
37 )
38 "