summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-04-13 16:34:00 +0200
committerMichał Górny <mgorny@gentoo.org>2024-04-13 16:36:45 +0200
commitd74cc98059a77fca74e321e40283dde34d8a9377 (patch)
tree75a2afd0e4a7f96b4958471fde65cdd0fefc108e /dev-python/python-efl/files
parentnet-misc/econnman: Remove last-rited pkg (diff)
downloadgentoo-d74cc98059a77fca74e321e40283dde34d8a9377.tar.gz
gentoo-d74cc98059a77fca74e321e40283dde34d8a9377.tar.bz2
gentoo-d74cc98059a77fca74e321e40283dde34d8a9377.zip
dev-python/python-efl: Remove last-rited pkg
Bug: https://bugs.gentoo.org/925692 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/python-efl/files')
-rw-r--r--dev-python/python-efl/files/python-efl-1.25-clang-crosscompile.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-python/python-efl/files/python-efl-1.25-clang-crosscompile.patch b/dev-python/python-efl/files/python-efl-1.25-clang-crosscompile.patch
deleted file mode 100644
index 856aed8474ec..000000000000
--- a/dev-python/python-efl/files/python-efl-1.25-clang-crosscompile.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Naur a/setup.py b/setup.py
---- a/setup.py 2020-06-25 19:46:38.312786000 +0300
-+++ b/setup.py 2020-09-25 09:52:34.830587205 +0300
-@@ -221,6 +221,10 @@
- # remove clang unknown flags
- if os.getenv("CC") == "clang":
- common_cflags.remove('-fno-var-tracking-assignments')
-+if os.getenv("CC") == "x86_64-pc-linux-gnu-clang":
-+ common_cflags.remove('-fno-var-tracking-assignments')
-+if os.getenv("CC") == "i686-pc-linux-gnu-clang":
-+ common_cflags.remove('-fno-var-tracking-assignments')
-
-
- if set(("build", "build_ext", "install", "bdist", "sdist")) & set(sys.argv):