diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-11-12 09:26:55 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-11-12 09:27:58 +0200 |
commit | 463842a218003a3d94771b5463ca25ceb3060fb3 (patch) | |
tree | 603e752328e0ad49d772f8c665a4cd19695b08f2 /dev-python/python-efl/files | |
parent | dev-python/python-efl: stabilize 1.25.0 on amd64 (diff) | |
download | gentoo-463842a218003a3d94771b5463ca25ceb3060fb3.tar.gz gentoo-463842a218003a3d94771b5463ca25ceb3060fb3.tar.bz2 gentoo-463842a218003a3d94771b5463ca25ceb3060fb3.zip |
dev-python/python-efl: clean old 1.24.0
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/python-efl/files')
-rw-r--r-- | dev-python/python-efl/files/python-efl-1.24-clang.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/dev-python/python-efl/files/python-efl-1.24-clang.patch b/dev-python/python-efl/files/python-efl-1.24-clang.patch deleted file mode 100644 index a6f18d866300..000000000000 --- a/dev-python/python-efl/files/python-efl-1.24-clang.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff -Naur a/setup.py b/setup.py ---- a/setup.py 2020-04-23 08:20:55.742402600 +0300 -+++ b/setup.py 2020-09-22 08:29:43.065243208 +0300 -@@ -211,13 +211,21 @@ - py_modules = [] - packages = ["efl"] - common_cflags = [ -- "-fno-var-tracking-assignments", # seems to lower the mem used during build -- "-Wno-misleading-indentation", # not needed (we don't indent the C code) -- "-Wno-deprecated-declarations", # we bind deprecated functions -- "-Wno-unused-variable", # eo_instance_from_object() is unused -- "-Wno-format-security", # some cc don't like the way cython use EINA_LOG macros -- # "-Werror", "-Wfatal-errors" # use this to stop build on first warnings -+ "-fno-var-tracking-assignments", # seems to lower the mem used during build -+ "-Wno-misleading-indentation", # not needed (we don't indent the C code) -+ "-Wno-deprecated-declarations", # we bind deprecated functions -+ "-Wno-unused-variable", # eo_instance_from_object() is unused -+ "-Wno-format-security", # some cc don't like the way cython use EINA_LOG macros -+ # "-Werror", "-Wfatal-errors" # use this to stop build on first warnings - ] -+# 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): - sys.stdout.write("Python-EFL: %s\n" % RELEASE) |