Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uvloop/
Date: Wed, 25 May 2016 08:15:20
Message-Id: 1464162392.e603781bbedc64e0015f0405700bbd6220ad6142.monsieurp@gentoo
1 commit: e603781bbedc64e0015f0405700bbd6220ad6142
2 Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 21 23:29:58 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed May 25 07:46:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e603781b
7
8 dev-python/uvloop: fix unnecessary CDEPEND logic, add missing die
9
10 Package-Manager: portage-2.2.28
11 Closes: https://github.com/gentoo/gentoo/pull/1506
12
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 dev-python/uvloop/uvloop-0.4.20.ebuild | 8 +++-----
16 1 file changed, 3 insertions(+), 5 deletions(-)
17
18 diff --git a/dev-python/uvloop/uvloop-0.4.20.ebuild b/dev-python/uvloop/uvloop-0.4.20.ebuild
19 index 6a22761..e5c72a0 100644
20 --- a/dev-python/uvloop/uvloop-0.4.20.ebuild
21 +++ b/dev-python/uvloop/uvloop-0.4.20.ebuild
22 @@ -16,9 +16,9 @@ LICENSE="MIT"
23 SLOT="0"
24 IUSE="doc examples test"
25
26 -CDEPEND=">=dev-libs/libuv-1.8.0:="
27 +RDEPEND=">=dev-libs/libuv-1.8.0:="
28 DEPEND="
29 - ${CDEPEND}
30 + ${RDEPEND}
31 dev-python/setuptools[${PYTHON_USEDEP}]
32 doc? (
33 >=dev-python/alabaster-0.6.2[${PYTHON_USEDEP}]
34 @@ -27,10 +27,8 @@ DEPEND="
35 )
36 "
37
38 -RDEPEND="${CDEPEND}"
39 -
40 src_prepare() {
41 - cat <<EOF >> setup.cfg
42 + cat <<EOF >> setup.cfg || die
43 [build_ext]
44 use-system-libuv=1
45 EOF