From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DCD5B1382C5 for ; Thu, 21 May 2020 07:08:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E1A7E097D; Thu, 21 May 2020 07:08:11 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 09284E097D for ; Thu, 21 May 2020 07:08:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D352134F4B3 for ; Thu, 21 May 2020 07:08:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01838258 for ; Thu, 21 May 2020 07:08:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1590044881.73b21a1253f24d4d0697de24e1ef3b2e52af0d01.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/eix/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/eix/eix-0.34.1.ebuild X-VCS-Directories: app-portage/eix/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 73b21a1253f24d4d0697de24e1ef3b2e52af0d01 X-VCS-Branch: master Date: Thu, 21 May 2020 07:08:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 04863ad2-b8fc-4c1c-a82d-aef6f866612c X-Archives-Hash: a530e41506356dbad37206e7e65c4b83 commit: 73b21a1253f24d4d0697de24e1ef3b2e52af0d01 Author: Michał Górny gentoo org> AuthorDate: Thu May 21 05:43:13 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu May 21 07:08:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b21a12 app-portage/eix: Workaround dep on protobuf-c Bug: https://bugs.gentoo.org/724366 Signed-off-by: Michał Górny gentoo.org> app-portage/eix/eix-0.34.1.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-portage/eix/eix-0.34.1.ebuild b/app-portage/eix/eix-0.34.1.ebuild index 243166afda4..d2aaec3c2f0 100644 --- a/app-portage/eix/eix-0.34.1.ebuild +++ b/app-portage/eix/eix-0.34.1.ebuild @@ -40,6 +40,11 @@ src_prepare() { -i src/eix-functions.sh.in || die sed -e "s:'\$(bindir)/eix-functions.sh':cat \\\\\"${EPREFIX}/usr/share/eix/eix-functions\\\\\":" \ -i src/Makefile.am || die + + # workaround unconditional protobuf use + # https://bugs.gentoo.org/724366 + sed -e '/eix-proto\.cc/d' -i src/Makefile.am || die + eautoreconf }