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 24FD31382BD for ; Wed, 15 Jun 2016 14:19:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DA5CE09F0; Wed, 15 Jun 2016 14:19:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 11B50E09F0 for ; Wed, 15 Jun 2016 14:19:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92F04340662 for ; Wed, 15 Jun 2016 14:19:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 573E11BA1 for ; Wed, 15 Jun 2016 14:19:15 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1464120407.57f2ab778ebe11dd3f189a6eb3ae0c3c82cef22a.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/nilearn/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/nilearn/nilearn-0.2.4.ebuild X-VCS-Directories: sci-biology/nilearn/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 57f2ab778ebe11dd3f189a6eb3ae0c3c82cef22a X-VCS-Branch: master Date: Wed, 15 Jun 2016 14:19:15 +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: daa2b05f-7cec-42d0-a8ba-6b9ec08c6fdc X-Archives-Hash: 2d53a11793a8304986e9907da60a9008 commit: 57f2ab778ebe11dd3f189a6eb3ae0c3c82cef22a Author: Horea Christian yandex com> AuthorDate: Tue May 24 20:06:47 2016 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Tue May 24 20:06:47 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=57f2ab77 sci-biology/nilearn: new version Package-Manager: portage-2.3.0_rc1 sci-biology/nilearn/nilearn-0.2.4.ebuild | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/sci-biology/nilearn/nilearn-0.2.4.ebuild b/sci-biology/nilearn/nilearn-0.2.4.ebuild new file mode 100644 index 0000000..2c2af9a --- /dev/null +++ b/sci-biology/nilearn/nilearn-0.2.4.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_4 ) + +inherit distutils-r1 git-r3 + +DESCRIPTION="Fast and easy statistical learning on NeuroImaging data" +HOMEPAGE="http://nilearn.github.io/" +SRC_URI="" +EGIT_REPO_URI="git://github.com/nilearn/nilearn" +EGIT_COMMIT="${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+plot test" + +DEPEND=" + test? ( dev-python/nose[${PYTHON_USEDEP}] ) + dev-python/setuptools[${PYTHON_USEDEP}] + " +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] + sci-libs/scikits_learn[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + sci-libs/nibabel[${PYTHON_USEDEP}] + plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )" + +src_test() { + emake test-code +}