Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/subprocess32/files/
Date: Tue, 02 Jun 2020 04:28:34
Message-Id: 1591072082.0e789c9a5aa3e4cb91acc4973b295438483d3c42.bman@gentoo
1 commit: 0e789c9a5aa3e4cb91acc4973b295438483d3c42
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue May 19 19:24:31 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 2 04:28:02 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e789c9a
7
8 dev-python/subprocess32: remove unused patch(es)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
12
13 .../files/subprocess32-3.2.7-sandbox-test-fix.patch | 14 --------------
14 1 file changed, 14 deletions(-)
15
16 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
17 deleted file mode 100644
18 index 50e4a511fc4..00000000000
19 --- a/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch
20 +++ /dev/null
21 @@ -1,14 +0,0 @@
22 -diff --git a/test_subprocess32.py b/test_subprocess32.py
23 -index c312949..000f7d6 100644
24 ---- a/test_subprocess32.py
25 -+++ b/test_subprocess32.py
26 -@@ -538,7 +538,8 @@ class ProcessTestCase(BaseTestCase):
27 - [sys.executable, "-c",
28 - 'import os; '
29 - 'print([k for k in os.environ.keys() '
30 -- ' if ("VERSIONER" not in k and "__CF" not in k)])'],
31 -+ ' if ("VERSIONER" not in k and "__CF" not in k and '
32 -+ ' "LD_PRELOAD" not in k and "SANDBOX_" not in k)])'],
33 - stdout=subprocess.PIPE, env={})
34 - try:
35 - stdout, stderr = p.communicate()