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 A8233138AD0 for ; Thu, 5 Feb 2015 08:01:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EBB4BE08A5; Thu, 5 Feb 2015 08:01:27 +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 586CCE08E2 for ; Thu, 5 Feb 2015 08:01:27 +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 297B434065F for ; Thu, 5 Feb 2015 08:01:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB9E711173 for ; Thu, 5 Feb 2015 08:01:24 +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: <1423044829.8e132629f78de2992a9af73251fb76f6890e71d4.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pyfftw/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/pyfftw/ChangeLog dev-python/pyfftw/metadata.xml dev-python/pyfftw/pyfftw-0.9.2.ebuild dev-python/pyfftw/pyfftw-9999.ebuild X-VCS-Directories: dev-python/pyfftw/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8e132629f78de2992a9af73251fb76f6890e71d4 X-VCS-Branch: master Date: Thu, 5 Feb 2015 08:01:24 +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: e0e5e3f7-caba-4d4e-b317-e4ae4d87583c X-Archives-Hash: 93fcaef875a74871ef05c33a5ff711ec commit: 8e132629f78de2992a9af73251fb76f6890e71d4 Author: Marius Brehler linux sungazer de> AuthorDate: Wed Feb 4 10:13:49 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Feb 4 10:13:49 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=8e132629 New package dev-python/pyfftw --- dev-python/pyfftw/ChangeLog | 9 +++++++++ dev-python/pyfftw/metadata.xml | 13 +++++++++++++ dev-python/pyfftw/pyfftw-0.9.2.ebuild | 1 + dev-python/pyfftw/pyfftw-9999.ebuild | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 55 insertions(+) diff --git a/dev-python/pyfftw/ChangeLog b/dev-python/pyfftw/ChangeLog new file mode 100644 index 0000000..3c19f1e --- /dev/null +++ b/dev-python/pyfftw/ChangeLog @@ -0,0 +1,9 @@ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*pyfftw-9999 (04 Feb 2015) +*pyfftw-0.9.2 (04 Feb 2015) + + 04 Feb 2015; Marius Brehler +metadata.xml, + +pyfftw-9999.ebuild, +pyfftw-0.9.2.ebuild: + Add pyFFTW to overlay diff --git a/dev-python/pyfftw/metadata.xml b/dev-python/pyfftw/metadata.xml new file mode 100644 index 0000000..07e8f03 --- /dev/null +++ b/dev-python/pyfftw/metadata.xml @@ -0,0 +1,13 @@ + + + + sci + + marbre@linux.sungazer.de + Marius Brehler + + + A pythonic wrapper around FFTW, the FFT library, presenting a + unified interface for all the supported transforms. + + diff --git a/dev-python/pyfftw/pyfftw-0.9.2.ebuild b/dev-python/pyfftw/pyfftw-0.9.2.ebuild new file mode 120000 index 0000000..c3e80cf --- /dev/null +++ b/dev-python/pyfftw/pyfftw-0.9.2.ebuild @@ -0,0 +1 @@ +pyfftw-9999.ebuild \ No newline at end of file diff --git a/dev-python/pyfftw/pyfftw-9999.ebuild b/dev-python/pyfftw/pyfftw-9999.ebuild new file mode 100644 index 0000000..962cf05 --- /dev/null +++ b/dev-python/pyfftw/pyfftw-9999.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +MY_PN="pyFFTW" + +DESCRIPTION="FFTW wrapper for python" +HOMEPAGE="http://hgomersall.github.io/pyFFTW/" + +if [ ${PV} == "9999" ] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/hgomersall/${MY_PN}.git git://github.com/hgomersall/${MY_PN}.git" +else + SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" + KEYWORDS="~amd64" + S="${WORKDIR}/${MY_PN}-${PV}" +fi + +LICENSE="BSD" +SLOT="0" + +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}"