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 35EAB1382C5 for ; Wed, 27 Jan 2021 18:17:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A1C8E0C38; Wed, 27 Jan 2021 18:17:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 51CFDE0C38 for ; Wed, 27 Jan 2021 18:17:28 +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 47AEB340DFE for ; Wed, 27 Jan 2021 18:17:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D90CF4AA for ; Wed, 27 Jan 2021 18:17:25 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1611771435.6e5ac2a448e05c61b3b22388acd1116b8cfabe7b.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/grpcio-tools/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/grpcio-tools/files/setup.py-respect-cc.patch X-VCS-Directories: dev-python/grpcio-tools/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 6e5ac2a448e05c61b3b22388acd1116b8cfabe7b X-VCS-Branch: master Date: Wed, 27 Jan 2021 18:17:25 +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: cab27831-a328-49e2-b11c-0f68f83e602d X-Archives-Hash: 0c041dd1bcc2ae767d1017ffb06ca17b commit: 6e5ac2a448e05c61b3b22388acd1116b8cfabe7b Author: Michael Mair-Keimberger gmail com> AuthorDate: Wed Jan 27 12:49:12 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Jan 27 18:17:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e5ac2a4 dev-python/grpcio-tools: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/19238 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Conrad Kostecki gentoo.org> dev-python/grpcio-tools/files/setup.py-respect-cc.patch | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/dev-python/grpcio-tools/files/setup.py-respect-cc.patch b/dev-python/grpcio-tools/files/setup.py-respect-cc.patch deleted file mode 100644 index 029f9648968..00000000000 --- a/dev-python/grpcio-tools/files/setup.py-respect-cc.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- a/setup.py 2020-06-08 00:11:23.457959701 -0700 -+++ b/setup.py 2020-06-08 00:11:54.384652323 -0700 -@@ -68,9 +68,10 @@ - - def check_linker_need_libatomic(): - """Test if linker on system needs libatomic.""" -+ cc = os.environ.get('CC', 'cc') - code_test = (b'#include \n' + - b'int main() { return std::atomic{}; }') -- cc_test = subprocess.Popen(['cc', '-x', 'c++', '-std=c++11', '-'], -+ cc_test = subprocess.Popen([cc, '-x', 'c++', '-std=c++11', '-'], - stdin=PIPE, - stdout=PIPE, - stderr=PIPE)