From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id F013A1381F3 for ; Tue, 17 Sep 2013 09:07:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B28DE0AF7; Tue, 17 Sep 2013 09:07:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6DFB1E0B09 for ; Tue, 17 Sep 2013 09:07:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7EFA833EABE for ; Tue, 17 Sep 2013 09:07:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2F819E545E for ; Tue, 17 Sep 2013 09:07:23 +0000 (UTC) From: "Kacper Kowalik" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kacper Kowalik" Message-ID: <1379406927.035cafa836b75610fd097eb70ea79d9c012aff10.xarthisius@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/healpy/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/healpy/ChangeLog dev-python/healpy/healpy-1.6.2.ebuild X-VCS-Directories: dev-python/healpy/ X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik X-VCS-Revision: 035cafa836b75610fd097eb70ea79d9c012aff10 X-VCS-Branch: master Date: Tue, 17 Sep 2013 09:07:23 +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: 90836890-3986-4a6c-8773-0e065ad0dc60 X-Archives-Hash: 7aecf1a2c97c192b2c0718319958669f commit: 035cafa836b75610fd097eb70ea79d9c012aff10 Author: Michał Górny gentoo org> AuthorDate: Tue Sep 17 08:35:27 2013 +0000 Commit: Kacper Kowalik gentoo org> CommitDate: Tue Sep 17 08:35:27 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=035cafa8 dev-python/healpy: Clean up python_test(). Bug #484426. Package-Manager: portage-2.2.6 --- dev-python/healpy/ChangeLog | 3 +++ dev-python/healpy/healpy-1.6.2.ebuild | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/dev-python/healpy/ChangeLog b/dev-python/healpy/ChangeLog index aec23ab..2aa801e 100644 --- a/dev-python/healpy/ChangeLog +++ b/dev-python/healpy/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 17 Sep 2013; Michał Górny healpy-1.6.2.ebuild: + dev-python/healpy: Clean up python_test(). Bug #484426. + *healpy-1.6.2 (17 Jun 2013) 17 Jun 2013; Sébastien Fabbro +healpy-1.6.2.ebuild, diff --git a/dev-python/healpy/healpy-1.6.2.ebuild b/dev-python/healpy/healpy-1.6.2.ebuild index 485c1b8..c90bd7b 100644 --- a/dev-python/healpy/healpy-1.6.2.ebuild +++ b/dev-python/healpy/healpy-1.6.2.ebuild @@ -27,8 +27,8 @@ DEPEND="${RDEPEND} virtual/pkgconfig" python_test() { - cd "${BUILD_DIR}"/lib* - echo "backend: Agg" > matplotlibrc - MPLCONFIGDIR=. PYTHONPATH=. nosetests-"${EPYTHON}" || die - rm matplotlibrc + cd "${BUILD_DIR}"/lib || die + echo "backend: Agg" > matplotlibrc || die + MPLCONFIGDIR=. nosetests || die + rm matplotlibrc || die }