From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6E205139694 for ; Sat, 15 Jul 2017 21:42:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C8EA1FC03A; Sat, 15 Jul 2017 21:42:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1BA171FC03A for ; Sat, 15 Jul 2017 21:42:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AFB5734194C for ; Sat, 15 Jul 2017 21:42:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B961F74B5 for ; Sat, 15 Jul 2017 21:42:12 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1500154926.2680e441fa13ed000b774a813512a653e1c0c8f6.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/matplotlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/matplotlib/matplotlib-2.0.2.ebuild X-VCS-Directories: dev-python/matplotlib/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 2680e441fa13ed000b774a813512a653e1c0c8f6 X-VCS-Branch: master Date: Sat, 15 Jul 2017 21:42:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 64f7f01c-35ab-4715-b8eb-5e4c1784e1e6 X-Archives-Hash: 572e97f38621fa413af988b824f857ae commit: 2680e441fa13ed000b774a813512a653e1c0c8f6 Author: Tadej Borovšak gmail com> AuthorDate: Sat Jul 15 20:56:01 2017 +0000 Commit: Patrice Clement gentoo 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() {