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 D3D33138334 for ; Thu, 9 Aug 2018 15:46:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8887E09BB; Thu, 9 Aug 2018 15:46:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 734B6E09BB for ; Thu, 9 Aug 2018 15:46:04 +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 9AE6F335C9B for ; Thu, 9 Aug 2018 15:46:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA053389 for ; Thu, 9 Aug 2018 15:46:00 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1533829545.5e2ddabad787cef77cf2197110355953c92aed5e.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nipype/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nipype/nipype-1.1.0.ebuild X-VCS-Directories: sci-libs/nipype/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 5e2ddabad787cef77cf2197110355953c92aed5e X-VCS-Branch: master Date: Thu, 9 Aug 2018 15:46:00 +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: c85fc905-8d8e-4baf-9ce8-44180ccf1f44 X-Archives-Hash: ca34483517abd920f23e927691175b36 commit: 5e2ddabad787cef77cf2197110355953c92aed5e Author: Horea Christian yandex com> AuthorDate: Thu Aug 9 15:45:45 2018 +0000 Commit: Horea Christian gmail com> CommitDate: Thu Aug 9 15:45:45 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5e2ddaba sci-libs/nipype: version bump Package-Manager: Portage-2.3.44, Repoman-2.3.10 sci-libs/nipype/nipype-1.1.0.ebuild | 53 +++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/sci-libs/nipype/nipype-1.1.0.ebuild b/sci-libs/nipype/nipype-1.1.0.ebuild new file mode 100644 index 000000000..8c2713712 --- /dev/null +++ b/sci-libs/nipype/nipype-1.1.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +PYTHON_REQ_USE="threads(+),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/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND=" + dev-python/future[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + ~dev-python/prov-1.5.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + sci-libs/nibabel[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + ${RDEPEND} + ) + $(python_gen_cond_dep 'dev-python/configparser[${PYTHON_USEDEP}]' python2_7) + " +RDEPEND=" + >=dev-python/click-6.6[${PYTHON_USEDEP}] + dev-python/networkx[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] + dev-python/pydotplus[${PYTHON_USEDEP}] + dev-python/pygraphviz[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/simplejson[${PYTHON_USEDEP}] + dev-python/traits[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + virtual/python-funcsigs[${PYTHON_USEDEP}] + " + +python_test() { + py.test -v --cov nipype\ + --cov-config .coveragerc\ + --cov-report xml:cov.xml\ + -c nipype/pytest.ini\ + --doctest-modules nipype\ + || die +}