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 C284B1382C5 for ; Sat, 13 Jun 2020 18:59:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE9E2E0D91; Sat, 13 Jun 2020 18:59:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 A956CE0D91 for ; Sat, 13 Jun 2020 18:59:45 +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 7A47434F23C for ; Sat, 13 Jun 2020 18:59:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6E36299 for ; Sat, 13 Jun 2020 18:59:40 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1592074753.60b7072a739ba280d075d6d91da644cd6f3ee372.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/protobuf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/protobuf/protobuf-3.10.1.ebuild dev-libs/protobuf/protobuf-3.11.4.ebuild X-VCS-Directories: dev-libs/protobuf/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 60b7072a739ba280d075d6d91da644cd6f3ee372 X-VCS-Branch: master Date: Sat, 13 Jun 2020 18:59:40 +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: a035a8fa-bf45-471d-a7a7-1bf934a19825 X-Archives-Hash: 8b287f97998f4b7d63155df818ecd4fa commit: 60b7072a739ba280d075d6d91da644cd6f3ee372 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Sat Jun 13 18:26:41 2020 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jun 13 18:59:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60b7072a dev-libs/protobuf: Use not AC_PROG_CXX_FOR_BUILD. Closes: https://bugs.gentoo.org/718876 Signed-off-by: Arfrever Frehtes Taifersar Arahesis Apache.Org> Signed-off-by: Mike Gilbert gentoo.org> dev-libs/protobuf/protobuf-3.10.1.ebuild | 4 ++++ dev-libs/protobuf/protobuf-3.11.4.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-libs/protobuf/protobuf-3.10.1.ebuild b/dev-libs/protobuf/protobuf-3.10.1.ebuild index 207d865f940..53bd166190b 100644 --- a/dev-libs/protobuf/protobuf-3.10.1.ebuild +++ b/dev-libs/protobuf/protobuf-3.10.1.ebuild @@ -42,6 +42,10 @@ DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md) src_prepare() { default + + # https://github.com/protocolbuffers/protobuf/issues/7413 + sed -e "/^AC_PROG_CXX_FOR_BUILD$/d" -i configure.ac || die + eautoreconf } diff --git a/dev-libs/protobuf/protobuf-3.11.4.ebuild b/dev-libs/protobuf/protobuf-3.11.4.ebuild index 10dfc3a1a39..568a3f45c37 100644 --- a/dev-libs/protobuf/protobuf-3.11.4.ebuild +++ b/dev-libs/protobuf/protobuf-3.11.4.ebuild @@ -42,6 +42,10 @@ DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md) src_prepare() { default + + # https://github.com/protocolbuffers/protobuf/issues/7413 + sed -e "/^AC_PROG_CXX_FOR_BUILD$/d" -i configure.ac || die + eautoreconf }