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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 09C79158086 for ; Tue, 4 Jan 2022 10:08:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F898E07A9; Tue, 4 Jan 2022 10:08:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BE10BE07A5 for ; Tue, 4 Jan 2022 10:07:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4291B342D39 for ; Tue, 4 Jan 2022 10:07:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BC64274 for ; Tue, 4 Jan 2022 10:07:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1641290859.a792e455bfcba4b7a462d1cadb1eab2ed1c3f7fc.sam@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.16.0.ebuild dev-libs/protobuf/protobuf-3.17.0.ebuild dev-libs/protobuf/protobuf-3.17.1.ebuild dev-libs/protobuf/protobuf-3.17.2.ebuild dev-libs/protobuf/protobuf-3.17.3.ebuild dev-libs/protobuf/protobuf-3.19.1.ebuild dev-libs/protobuf/protobuf-9999.ebuild X-VCS-Directories: dev-libs/protobuf/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a792e455bfcba4b7a462d1cadb1eab2ed1c3f7fc X-VCS-Branch: master Date: Tue, 4 Jan 2022 10:07:50 +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: 59cbeaec-4456-4788-8075-bfa14c8260d6 X-Archives-Hash: 812cbd536af2933c9dd346451a9b018c commit: a792e455bfcba4b7a462d1cadb1eab2ed1c3f7fc Author: Adrian Ratiu collabora com> AuthorDate: Mon Dec 6 12:30:24 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 4 10:07:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a792e455 dev-libs/protobuf: fix Objective-C compiler selection During the protobuf configure phase, autotools gives priority to GCC if $OBJC is unset, thus leading to cases where GCC is used for Objective-C even though Clang is used for the rest of the build, so we set OBJC to correctly picks up CC values. Closes: https://bugs.gentoo.org/830584 Signed-off-by: Adrian Ratiu collabora.com> Closes: https://github.com/gentoo/gentoo/pull/23197 Signed-off-by: Sam James gentoo.org> dev-libs/protobuf/protobuf-3.16.0.ebuild | 3 ++- dev-libs/protobuf/protobuf-3.17.0.ebuild | 3 ++- dev-libs/protobuf/protobuf-3.17.1.ebuild | 3 ++- dev-libs/protobuf/protobuf-3.17.2.ebuild | 3 ++- dev-libs/protobuf/protobuf-3.17.3.ebuild | 3 ++- dev-libs/protobuf/protobuf-3.19.1.ebuild | 3 ++- dev-libs/protobuf/protobuf-9999.ebuild | 3 ++- 7 files changed, 14 insertions(+), 7 deletions(-) diff --git a/dev-libs/protobuf/protobuf-3.16.0.ebuild b/dev-libs/protobuf/protobuf-3.16.0.ebuild index ed6e85a966fb..68eb4507463b 100644 --- a/dev-libs/protobuf/protobuf-3.16.0.ebuild +++ b/dev-libs/protobuf/protobuf-3.16.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Gentoo Authors +# Copyright 2008-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -74,6 +74,7 @@ src_configure() { multilib_src_configure() { local options=( + OBJC="$(tc-getBUILD_CC)" $(use_enable static-libs static) $(use_with zlib) ) diff --git a/dev-libs/protobuf/protobuf-3.17.0.ebuild b/dev-libs/protobuf/protobuf-3.17.0.ebuild index 6391fd499f34..390df7df0b7c 100644 --- a/dev-libs/protobuf/protobuf-3.17.0.ebuild +++ b/dev-libs/protobuf/protobuf-3.17.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Gentoo Authors +# Copyright 2008-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -74,6 +74,7 @@ src_configure() { multilib_src_configure() { local options=( + OBJC="$(tc-getBUILD_CC)" $(use_enable static-libs static) $(use_with zlib) ) diff --git a/dev-libs/protobuf/protobuf-3.17.1.ebuild b/dev-libs/protobuf/protobuf-3.17.1.ebuild index 6391fd499f34..390df7df0b7c 100644 --- a/dev-libs/protobuf/protobuf-3.17.1.ebuild +++ b/dev-libs/protobuf/protobuf-3.17.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Gentoo Authors +# Copyright 2008-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -74,6 +74,7 @@ src_configure() { multilib_src_configure() { local options=( + OBJC="$(tc-getBUILD_CC)" $(use_enable static-libs static) $(use_with zlib) ) diff --git a/dev-libs/protobuf/protobuf-3.17.2.ebuild b/dev-libs/protobuf/protobuf-3.17.2.ebuild index 6391fd499f34..390df7df0b7c 100644 --- a/dev-libs/protobuf/protobuf-3.17.2.ebuild +++ b/dev-libs/protobuf/protobuf-3.17.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Gentoo Authors +# Copyright 2008-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -74,6 +74,7 @@ src_configure() { multilib_src_configure() { local options=( + OBJC="$(tc-getBUILD_CC)" $(use_enable static-libs static) $(use_with zlib) ) diff --git a/dev-libs/protobuf/protobuf-3.17.3.ebuild b/dev-libs/protobuf/protobuf-3.17.3.ebuild index 1254928d7c06..a29ab8dcb86c 100644 --- a/dev-libs/protobuf/protobuf-3.17.3.ebuild +++ b/dev-libs/protobuf/protobuf-3.17.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Gentoo Authors +# Copyright 2008-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -74,6 +74,7 @@ src_configure() { multilib_src_configure() { local options=( + OBJC="$(tc-getBUILD_CC)" $(use_enable static-libs static) $(use_with zlib) ) diff --git a/dev-libs/protobuf/protobuf-3.19.1.ebuild b/dev-libs/protobuf/protobuf-3.19.1.ebuild index 534446b5f41a..41c154dc9b6a 100644 --- a/dev-libs/protobuf/protobuf-3.19.1.ebuild +++ b/dev-libs/protobuf/protobuf-3.19.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Gentoo Authors +# Copyright 2008-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -71,6 +71,7 @@ src_configure() { multilib_src_configure() { local options=( + OBJC="$(tc-getBUILD_CC)" $(use_enable static-libs static) $(use_with zlib) ) diff --git a/dev-libs/protobuf/protobuf-9999.ebuild b/dev-libs/protobuf/protobuf-9999.ebuild index cfe56720a1a3..f2b413703d21 100644 --- a/dev-libs/protobuf/protobuf-9999.ebuild +++ b/dev-libs/protobuf/protobuf-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2008-2021 Gentoo Authors +# Copyright 2008-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -52,6 +52,7 @@ src_configure() { multilib_src_configure() { local options=( + OBJC="$(tc-getBUILD_CC)" $(use_enable static-libs static) $(use_with zlib) )