buildroot/package/python-matplotlib/0001-Fix-invalid-inclusion-headers.patch
Jugurtha BELKALEM d80339c965 package/python-matplotlib: new package
Matplotlib is a Python 2D plotting library
which produces publication quality figures
in a variety of hardcopy formats and interactive
environments across platforms.

More information is available at:
https://matplotlib.org/.

Signed-off-by: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
[Peter: use Python-2.0 for license, fix license file, add host-pkgconf]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2019-05-20 11:39:53 +02:00

30 lines
827 B
Diff

From b0232c3cf1051749dd1e2bd0ec7c5c0a3a008d2f Mon Sep 17 00:00:00 2001
From: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
Date: Thu, 9 May 2019 15:06:36 +0200
Subject: [PATCH] Fix invalid inclusion headers
By default, matplotlib includes headers from host
machine which breaks the build process.
Signed-off-by: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
---
python-matplotlib-3.0.3/setupext.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/setupext.py b/setupext.py
index fc82d5d..eb978d2 100644
--- a/setupext.py
+++ b/setupext.py
@@ -267,7 +267,7 @@ def get_base_dirs():
'gnu0': ['/usr'],
'aix5': ['/usr/local'],
}
- return basedir_map.get(sys.platform, ['/usr/local', '/usr'])
+ return basedir_map.get(sys.platform, [])
def get_include_dirs():
--
2.7.4