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 1CBFD1383D3 for ; Tue, 1 Sep 2015 11:47:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9CD31424F; Tue, 1 Sep 2015 11:47:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 27B091424F for ; Tue, 1 Sep 2015 11:47:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 51884340766 for ; Tue, 1 Sep 2015 11:47:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50C34175 for ; Tue, 1 Sep 2015 11:47:53 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1440919892.8b3816cb8ff03dc927608cc5575e4c079eaa3728.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nibabel/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nibabel/nibabel-2.0.1.ebuild X-VCS-Directories: sci-libs/nibabel/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8b3816cb8ff03dc927608cc5575e4c079eaa3728 X-VCS-Branch: master Date: Tue, 1 Sep 2015 11:47:53 +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: 91f6e9ec-49ad-479b-b534-a9e3fc9f1a4c X-Archives-Hash: 2a66ea286864d05b9beac4e89c6ef70a commit: 8b3816cb8ff03dc927608cc5575e4c079eaa3728 Author: Robbert Harms xkls nl> AuthorDate: Sun Aug 30 07:31:32 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Aug 30 07:31:32 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8b3816cb Version bump, adds nibabel-2.0.1. Also, version-2.0.1 now has python3_4 as python version dependency. sci-libs/nibabel/nibabel-2.0.1.ebuild | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/sci-libs/nibabel/nibabel-2.0.1.ebuild b/sci-libs/nibabel/nibabel-2.0.1.ebuild new file mode 100644 index 0000000..6d2f25d --- /dev/null +++ b/sci-libs/nibabel/nibabel-2.0.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python2_7 python3_4 ) + +inherit distutils-r1 + +DESCRIPTION="Access a cacophony of neuro-imaging file formats" +HOMEPAGE="http://nipy.org/nibabel/" +SRC_URI="https://github.com/nipy/nibabel/archive/${PV}.tar.gz -> ${P}.tar.gz" + +KEYWORDS="~amd64 ~x86" + +LICENSE="MIT" +SLOT="0" +IUSE="dicom doc test" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dicom? ( + sci-libs/pydicom[${PYTHON_USEDEP}] + virtual/python-imaging[${PYTHON_USEDEP}] + ) + " + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${RDEPEND} ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + " + +python_test() { + distutils-r1_install_for_testing + cd "${BUILD_DIR}" || die + echo "backend: Agg" > matplotlibrc + MPLCONFIGDIR=. nosetests || die +}