summaryrefslogtreecommitdiff
path: root/media-gfx/mypaint/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-09-23 10:22:15 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-09-23 10:22:15 +0100
commit8b4ace9c50842c5b83401ea7b179dcab940387e1 (patch)
tree230f3135ceaace633cf93e9838b185c4a6664c2e /media-gfx/mypaint/files
parent9ee6d97c2883d42f204a533a8bc1f4562df778fb (diff)
gentoo resync : 23.09.2020
Diffstat (limited to 'media-gfx/mypaint/files')
-rw-r--r--media-gfx/mypaint/files/mypaint-2.0.1-build-system.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/media-gfx/mypaint/files/mypaint-2.0.1-build-system.patch b/media-gfx/mypaint/files/mypaint-2.0.1-build-system.patch
deleted file mode 100644
index c7806e7119dc..000000000000
--- a/media-gfx/mypaint/files/mypaint-2.0.1-build-system.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-diff --git a/setup.py b/setup.py
-index 670df4d..703f9d2 100644
---- a/setup.py
-+++ b/setup.py
-@@ -471,9 +471,6 @@ class BuildExt (build_ext):
- linkflags.extend([
- "-O0",
- ])
-- else:
-- linkflags.append("-O3")
-- ccflags.append("-O3")
-
- return build_ext.build_extension(self, ext)
-
-@@ -869,7 +866,6 @@ def get_ext_modules():
- '-Wno-write-strings',
- '-D_POSIX_C_SOURCE=200809L',
- "-DNO_TESTS", # FIXME: we're building against shared libmypaint now
-- '-g', # always include symbols, for profiling
- ]
- extra_link_args = []
-
-diff --git a/setup.py b/setup.py
-index 703f9d2..cc8abbd 100644
---- a/setup.py
-+++ b/setup.py
-@@ -456,10 +456,6 @@ class BuildExt (build_ext):
- ccflags = ext.extra_compile_args
- linkflags = ext.extra_link_args
-
-- if sys.platform != "darwin" and not self.disable_openmp:
-- linkflags.append(OPENMP_CFLAG)
-- ccflags.append(OPENMP_LDFLAG)
--
- if self.debug:
- skip = ["-DNDEBUG"]
- ccflags[:] = [f for f in ccflags if f not in skip]