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 828851384B4 for ; Tue, 17 Nov 2015 15:46:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FCC621C004; Tue, 17 Nov 2015 15:46:46 +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 53A8C21C006 for ; Tue, 17 Nov 2015 15:46:45 +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 9CB7B340756 for ; Tue, 17 Nov 2015 15:46:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 73E68702 for ; Tue, 17 Nov 2015 15:46:40 +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: <1447281520.11abed023da7f2d1fb261332dacf829a4c1a666b.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nipy/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nipy/ChangeLog sci-libs/nipy/nipy-0.4.0.ebuild X-VCS-Directories: sci-libs/nipy/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 11abed023da7f2d1fb261332dacf829a4c1a666b X-VCS-Branch: master Date: Tue, 17 Nov 2015 15:46:40 +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: ef4c343c-a4e7-48db-b0d1-2d9b5d6effa3 X-Archives-Hash: 521c0b751ffc1c726ba092475bc79496 commit: 11abed023da7f2d1fb261332dacf829a4c1a666b Author: Horea Christian mail ru> AuthorDate: Wed Nov 11 22:38:40 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Nov 11 22:38:40 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=11abed02 sci-libs/nipy: version bump Package-Manager: portage-2.2.23 sci-libs/nipy/ChangeLog | 8 ++++++-- sci-libs/nipy/nipy-0.4.0.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 2 deletions(-) diff --git a/sci-libs/nipy/ChangeLog b/sci-libs/nipy/ChangeLog index cac9346..29eb490 100644 --- a/sci-libs/nipy/ChangeLog +++ b/sci-libs/nipy/ChangeLog @@ -1,8 +1,12 @@ # ChangeLog for sci-libs/nipy -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 # $Id$ +*nipy-0.4.0 (11 Nov 2015) + + 11 Nov 2015; Horea Christian +nipy-0.4.0.ebuild: + sci-libs/nipy: version bump + 06 Jan 2014; Justin Lecher nipy-0.3.0.ebuild, nipy-9999.ebuild, metadata.xml: Switch from git-2 to git-r3 - diff --git a/sci-libs/nipy/nipy-0.4.0.ebuild b/sci-libs/nipy/nipy-0.4.0.ebuild new file mode 100644 index 0000000..e9d3f13 --- /dev/null +++ b/sci-libs/nipy/nipy-0.4.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 eutils multilib flag-o-matic + +DESCRIPTION="Neuroimaging tools for Python" +HOMEPAGE="http://nipy.org/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + sci-libs/scipy[${PYTHON_USEDEP}] + dev-python/sympy[${PYTHON_USEDEP}] + >=sci-libs/nibabel-1.2[${PYTHON_USEDEP}]" + +python_prepare_all() { + distutils-r1_python_prepare_all + # bug #397605 + [[ ${CHOST} == *-darwin* ]] \ + && append-ldflags -bundle "-undefined dynamic_lookup" \ + || append-ldflags -shared + + # nipy uses the horrible numpy.distutils automagic +}