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 CFF7C58973 for ; Wed, 10 Feb 2016 15:54:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A784B21C039; Wed, 10 Feb 2016 15:54:32 +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 3EF3621C039 for ; Wed, 10 Feb 2016 15:54:32 +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 46796340B27 for ; Wed, 10 Feb 2016 15:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 687468DF for ; Wed, 10 Feb 2016 15:54:28 +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: <1455119479.4cfc280f8fa76eca1a690c00e704f6112444c43c.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pyfftw/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/pyfftw/pyfftw-0.10.1.ebuild X-VCS-Directories: dev-python/pyfftw/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 4cfc280f8fa76eca1a690c00e704f6112444c43c X-VCS-Branch: master Date: Wed, 10 Feb 2016 15:54:28 +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: d67a34da-e802-4942-979d-61b7489a07a4 X-Archives-Hash: 56e3cc7fa471b578edde177115a9253b commit: 4cfc280f8fa76eca1a690c00e704f6112444c43c Author: Marius Brehler linux sungazer de> AuthorDate: Wed Feb 10 15:51:19 2016 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Wed Feb 10 15:51:19 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4cfc280f dev-python/pyfftw: Version bumo to 0.10.1, tests currently disabled Package-Manager: portage-2.2.26 dev-python/pyfftw/pyfftw-0.10.1.ebuild | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/dev-python/pyfftw/pyfftw-0.10.1.ebuild b/dev-python/pyfftw/pyfftw-0.10.1.ebuild new file mode 100644 index 0000000..6022936 --- /dev/null +++ b/dev-python/pyfftw/pyfftw-0.10.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} ) + +inherit distutils-r1 + +MY_PN="pyFFTW" + +DESCRIPTION="FFTW wrapper for python" +HOMEPAGE="http://hgomersall.github.io/pyFFTW/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" + +LICENSE="BSD" +SLOT="0" +IUSE="test" +KEYWORDS="~amd64" + +S="${WORKDIR}/${MY_PN}-${PV}" + +RDEPEND=" + >=dev-python/numpy-1.8.0[${PYTHON_USEDEP}] + >=sci-libs/fftw-3.3.3 + >=dev-python/cython-0.19.1[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND}" + +#current python_test() broken +RESTRICT="test" + +python_test() { + distutils_install_for_testing + cd "${TEST_DIR}"/lib || die + + cp "${S}"/setup.py "${TEST_DIR}"/lib/ || die + cp -r "${S}"/test "${TEST_DIR}"/lib/ || die + esetup.py test || die +}