Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-openstackclient/
Date: Mon, 28 Mar 2016 02:43:39
Message-Id: 1459132975.4f0f81c0d1cba44a2af4bbeec695155734f0937e.prometheanfire@gentoo
1 commit: 4f0f81c0d1cba44a2af4bbeec695155734f0937e
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 28 02:42:55 2016 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 28 02:42:55 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f0f81c0
7
8 dev-python/python-openstackclient: fixing sed typo
9
10 Package-Manager: portage-2.2.26
11
12 dev-python/python-openstackclient/python-openstackclient-2.2.0.ebuild | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/dev-python/python-openstackclient/python-openstackclient-2.2.0.ebuild b/dev-python/python-openstackclient/python-openstackclient-2.2.0.ebuild
16 index f22e56c..a78b827 100644
17 --- a/dev-python/python-openstackclient/python-openstackclient-2.2.0.ebuild
18 +++ b/dev-python/python-openstackclient/python-openstackclient-2.2.0.ebuild
19 @@ -61,7 +61,7 @@ RDEPEND="
20 python_prepare_all() {
21 sed -i '/^hacking/d' test-requirements.txt || die
22 # clients aren't actually needed
23 - sed -o '/\-client/d' test-requirements.txt || die
24 + sed -i '/\-client/d' test-requirements.txt || die
25 distutils-r1_python_prepare_all
26 }