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 B35841388C2 for ; Tue, 10 Nov 2015 07:09:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5381DE080B; Tue, 10 Nov 2015 07:09:10 +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 E166BE0810 for ; Tue, 10 Nov 2015 07:09:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B9F6F3402A2 for ; Tue, 10 Nov 2015 07:09:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3C692417 for ; Tue, 10 Nov 2015 07:09:05 +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: <1447116405.e3c66a03567514092b9e5adec59ce9335adc1416.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nipype/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nipype/ChangeLog sci-libs/nipype/nipype-0.11.0.ebuild X-VCS-Directories: sci-libs/nipype/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: e3c66a03567514092b9e5adec59ce9335adc1416 X-VCS-Branch: master Date: Tue, 10 Nov 2015 07:09:05 +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: 1338b40d-8397-4ba8-ac46-af83635fd5cb X-Archives-Hash: b72c9454915e15e7f1dd15794da4babb commit: e3c66a03567514092b9e5adec59ce9335adc1416 Author: Horea Christian mail ru> AuthorDate: Tue Nov 10 00:46:45 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Nov 10 00:46:45 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e3c66a03 sci-libs/nipype: new versioned version Package-Manager: portage-2.2.23 sci-libs/nipype/ChangeLog | 5 +++++ sci-libs/nipype/nipype-0.11.0.ebuild | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/sci-libs/nipype/ChangeLog b/sci-libs/nipype/ChangeLog index 1cc3228..755a95f 100644 --- a/sci-libs/nipype/ChangeLog +++ b/sci-libs/nipype/ChangeLog @@ -2,6 +2,11 @@ # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Id$ +*nipype-0.11.0 (10 Nov 2015) + + 10 Nov 2015; Horea Christian +nipype-0.11.0.ebuild: + sci-libs/nipype: new versioned version + 27 Jul 2015; nipype-9999.ebuild: setting USE requirement before inherit diff --git a/sci-libs/nipype/nipype-0.11.0.ebuild b/sci-libs/nipype/nipype-0.11.0.ebuild new file mode 100644 index 0000000..7751c6c --- /dev/null +++ b/sci-libs/nipype/nipype-0.11.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# pyamg missing py3 support +# PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="sqlite" + +inherit distutils-r1 + +DESCRIPTION="Neuroimaging in Python: Pipelines and Interfaces" +HOMEPAGE="http://nipy.sourceforge.net/nipype/" +SRC_URI="https://github.com/nipy/nipype/archive/0.11.0.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + sci-libs/nibabel[${PYTHON_USEDEP}]" +RDEPEND=" + sci-libs/scipy[${PYTHON_USEDEP}] + dev-python/traits[${PYTHON_USEDEP}] + dev-python/networkx[${PYTHON_USEDEP}] + dev-python/pygraphviz[${PYTHON_USEDEP}]" + +python_test() { + nosetests -v || die +}