diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2021-01-04 12:38:08 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2021-01-04 12:38:08 +0000 |
| commit | 1bf754efa5bbd5d8e8c873770e0aa95faab5e332 (patch) | |
| tree | d1c5f3040343d442d67543f37ab7a94988e8f3f9 /dev-python/matplotlib | |
| parent | a338dc57b8e9df503ab91b9c28412da15af5b16e (diff) | |
| download | baldeagleos-repo-1bf754efa5bbd5d8e8c873770e0aa95faab5e332.tar.gz baldeagleos-repo-1bf754efa5bbd5d8e8c873770e0aa95faab5e332.tar.xz baldeagleos-repo-1bf754efa5bbd5d8e8c873770e0aa95faab5e332.zip | |
Updating liguros repo
Diffstat (limited to 'dev-python/matplotlib')
| -rw-r--r-- | dev-python/matplotlib/files/matplotlib-3.3.3-disable-lto.patch | 25 | ||||
| -rw-r--r-- | dev-python/matplotlib/matplotlib-3.3.3-r1.ebuild (renamed from dev-python/matplotlib/matplotlib-3.3.3.ebuild) | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/dev-python/matplotlib/files/matplotlib-3.3.3-disable-lto.patch b/dev-python/matplotlib/files/matplotlib-3.3.3-disable-lto.patch new file mode 100644 index 000000000000..ab377e7f19b2 --- /dev/null +++ b/dev-python/matplotlib/files/matplotlib-3.3.3-disable-lto.patch @@ -0,0 +1,25 @@ +From 7382d6205bfdc647a8e47c8e417c991d3822eace Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org> +Date: Mon, 4 Jan 2021 10:03:32 +0100 +Subject: [PATCH] Disable -flto + +--- + setup.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/setup.py b/setup.py +index 6e1d19d..ed85d14 100644 +--- a/setup.py ++++ b/setup.py +@@ -147,7 +147,7 @@ class BuildExtraLibraries(BuildExtCommand): + ranlib = True + else: + ranlib = shutil.which('llvm-ranlib') +- if ranlib and has_flag(self.compiler, '-flto'): ++ if False and ranlib and has_flag(self.compiler, '-flto'): + for ext in self.extensions: + ext.extra_compile_args.append('-flto') + cppflags.append('-flto') +-- +2.30.0 + diff --git a/dev-python/matplotlib/matplotlib-3.3.3.ebuild b/dev-python/matplotlib/matplotlib-3.3.3-r1.ebuild index 319ea4d0e88e..e6e8c4ace6a1 100644 --- a/dev-python/matplotlib/matplotlib-3.3.3.ebuild +++ b/dev-python/matplotlib/matplotlib-3.3.3-r1.ebuild @@ -150,6 +150,7 @@ python_prepare_all() { local PATCHES=( "${FILESDIR}"/matplotlib-3.3.0-test.patch "${FILESDIR}"/matplotlib-3.3.2-test-extra.patch + "${FILESDIR}"/matplotlib-3.3.3-disable-lto.patch ) # requires jupyter-nbconvert |
