summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Vig <sean.v.775@gmail.com>2017-05-23 08:32:09 -0400
committerMichał Górny <mgorny@gentoo.org>2017-06-03 12:27:54 +0200
commit62308fdf8373e8a42c501c90b4b2b658b6d03aca (patch)
tree3f9281c936d62f5c96df0988e2ac89562422fa39 /dev-python/subprocess32/files
parentsys-devel/llvm: Move 3.9.1 patchset to tarball (diff)
downloadgentoo-62308fdf8373e8a42c501c90b4b2b658b6d03aca.tar.gz
gentoo-62308fdf8373e8a42c501c90b4b2b658b6d03aca.tar.bz2
gentoo-62308fdf8373e8a42c501c90b4b2b658b6d03aca.zip
dev-python/subprocess32: Add new package
Diffstat (limited to 'dev-python/subprocess32/files')
-rw-r--r--dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch14
1 files changed, 14 insertions, 0 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
new file mode 100644
index 000000000000..50e4a511fc4b
--- /dev/null
+++ b/dev-python/subprocess32/files/subprocess32-3.2.7-sandbox-test-fix.patch
@@ -0,0 +1,14 @@
+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()