commit: 2680e441fa13ed000b774a813512a653e1c0c8f6 Author: Tadej Borovšak <tadeboro <AT> gmail <DOT> com> AuthorDate: Sat Jul 15 20:56:01 2017 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Sat Jul 15 21:42:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2680e441
dev-python/matplotlib: fix wrap_setup function. Wrapper for python_compile() function only prepared environment for the compile call, but never executed it. Gentoo-Bug: https://bugs.gentoo.org/624554 Closes: https://github.com/gentoo/gentoo/pull/5112 dev-python/matplotlib/matplotlib-2.0.2.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-python/matplotlib/matplotlib-2.0.2.ebuild b/dev-python/matplotlib/matplotlib-2.0.2.ebuild index cf16b2b42e5..e8214110ebf 100644 --- a/dev-python/matplotlib/matplotlib-2.0.2.ebuild +++ b/dev-python/matplotlib/matplotlib-2.0.2.ebuild @@ -209,6 +209,7 @@ python_configure() { wrap_setup() { local -x MPLSETUPCFG=${BUILD_DIR}/setup.cfg unset DISPLAY + "$@" } python_compile() {
