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 239401382C5 for ; Tue, 2 Jun 2020 04:28:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F2CCE08F7; Tue, 2 Jun 2020 04:28:27 +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 850FBE08F7 for ; Tue, 2 Jun 2020 04:28:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7FA3234F110 for ; Tue, 2 Jun 2020 04:28:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A46432A0 for ; Tue, 2 Jun 2020 04:28:21 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1591072082.0e789c9a5aa3e4cb91acc4973b295438483d3c42.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess32/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch X-VCS-Directories: dev-python/subprocess32/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 0e789c9a5aa3e4cb91acc4973b295438483d3c42 X-VCS-Branch: master Date: Tue, 2 Jun 2020 04:28:21 +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: 92769f33-37eb-4d67-b505-d1d913c52441 X-Archives-Hash: d3450c086f5018d6dae3f32e5aa88e4d commit: 0e789c9a5aa3e4cb91acc4973b295438483d3c42 Author: Michael Mair-Keimberger gmail com> AuthorDate: Tue May 19 19:24:31 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue Jun 2 04:28:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e789c9a dev-python/subprocess32: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Aaron Bauman gentoo.org> .../files/subprocess32-3.2.7-sandbox-test-fix.patch | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch b/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch deleted file mode 100644 index 50e4a511fc4..00000000000 --- a/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/test_subprocess32.py b/test_subprocess32.py -index c312949..000f7d6 100644 ---- a/test_subprocess32.py -+++ b/test_subprocess32.py -@@ -538,7 +538,8 @@ class ProcessTestCase(BaseTestCase): - [sys.executable, "-c", - 'import os; ' - 'print([k for k in os.environ.keys() ' -- ' if ("VERSIONER" not in k and "__CF" not in k)])'], -+ ' if ("VERSIONER" not in k and "__CF" not in k and ' -+ ' "LD_PRELOAD" not in k and "SANDBOX_" not in k)])'], - stdout=subprocess.PIPE, env={}) - try: - stdout, stderr = p.communicate()