summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-08-28 19:04:14 +0200
committerDavid Seifert <soap@gentoo.org>2020-09-12 11:54:56 +0200
commit4222126e435117c40e3f37cc45d70a7256ad5240 (patch)
tree4b536aa4e0ad51dae4c0877c80fda6d47051a98c /dev-python/zstandard
parentdev-python/yarl: remove unused patch (diff)
downloadgentoo-4222126e435117c40e3f37cc45d70a7256ad5240.tar.gz
gentoo-4222126e435117c40e3f37cc45d70a7256ad5240.tar.bz2
gentoo-4222126e435117c40e3f37cc45d70a7256ad5240.zip
dev-python/zstandard: remove unused patch(es)
Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/17300 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python/zstandard')
-rw-r--r--dev-python/zstandard/files/zstandard-0.13.0-compiler.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/dev-python/zstandard/files/zstandard-0.13.0-compiler.patch b/dev-python/zstandard/files/zstandard-0.13.0-compiler.patch
deleted file mode 100644
index fdaa4aa03922..000000000000
--- a/dev-python/zstandard/files/zstandard-0.13.0-compiler.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/make_cffi.py b/make_cffi.py
-index 0db4f71..4fe9cc4 100644
---- a/make_cffi.py
-+++ b/make_cffi.py
-@@ -8,6 +8,7 @@ from __future__ import absolute_import
-
- import cffi
- import distutils.ccompiler
-+import distutils.sysconfig
- import os
- import re
- import subprocess
-@@ -75,10 +76,12 @@ compiler = distutils.ccompiler.new_compiler()
- if hasattr(compiler, "initialize"):
- compiler.initialize()
-
-+distutils.sysconfig.customize_compiler(compiler)
-+
- # Distutils doesn't set compiler.preprocessor, so invoke the preprocessor
- # manually.
- if compiler.compiler_type == "unix":
-- args = list(compiler.executables["compiler"])
-+ args = compiler.compiler
- args.extend(
- ["-E", "-DZSTD_STATIC_LINKING_ONLY", "-DZDICT_STATIC_LINKING_ONLY",]
- )