Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ioflo/
Date: Fri, 17 Aug 2018 02:01:47
Message-Id: 1534471295.7636a2e02e4a1cb07b6aa94d6cbe315eb6163fe7.zmedico@gentoo
1 commit: 7636a2e02e4a1cb07b6aa94d6cbe315eb6163fe7
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 17 01:46:56 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 17 02:01:35 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7636a2e0
7
8 dev-python/ioflo: remove setuptools-git dep
9
10 Package-Manager: Portage-2.3.46, Repoman-2.3.10
11
12 dev-python/ioflo/ioflo-1.7.4.ebuild | 10 +++++++---
13 1 file changed, 7 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-python/ioflo/ioflo-1.7.4.ebuild b/dev-python/ioflo/ioflo-1.7.4.ebuild
16 index 6bc509dcef2..c9bb199ea62 100644
17 --- a/dev-python/ioflo/ioflo-1.7.4.ebuild
18 +++ b/dev-python/ioflo/ioflo-1.7.4.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=5
25 @@ -15,5 +15,9 @@ SLOT="0"
26 KEYWORDS="~amd64 ~x86"
27 IUSE=""
28
29 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
30 - >=dev-python/setuptools-git-1.1[${PYTHON_USEDEP}]"
31 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
32 +
33 +python_prepare_all() {
34 + sed -e 's:"setuptools_git[^"]*",::' -i setup.py || die
35 + distutils-r1_python_prepare_all
36 +}