Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/eix/
Date: Thu, 21 May 2020 07:08:11
Message-Id: 1590044881.73b21a1253f24d4d0697de24e1ef3b2e52af0d01.mgorny@gentoo
1 commit: 73b21a1253f24d4d0697de24e1ef3b2e52af0d01
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 05:43:13 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 07:08:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b21a12
7
8 app-portage/eix: Workaround dep on protobuf-c
9
10 Bug: https://bugs.gentoo.org/724366
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 app-portage/eix/eix-0.34.1.ebuild | 5 +++++
14 1 file changed, 5 insertions(+)
15
16 diff --git a/app-portage/eix/eix-0.34.1.ebuild b/app-portage/eix/eix-0.34.1.ebuild
17 index 243166afda4..d2aaec3c2f0 100644
18 --- a/app-portage/eix/eix-0.34.1.ebuild
19 +++ b/app-portage/eix/eix-0.34.1.ebuild
20 @@ -40,6 +40,11 @@ src_prepare() {
21 -i src/eix-functions.sh.in || die
22 sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EPREFIX}/usr/share/eix/eix-functions\\\\\":" \
23 -i src/Makefile.am || die
24 +
25 + # workaround unconditional protobuf use
26 + # https://bugs.gentoo.org/724366
27 + sed -e '/eix-proto\.cc/d' -i src/Makefile.am || die
28 +
29 eautoreconf
30 }