rename pyfftw to pyFFTW

This commit is contained in:
Florian Tham
2017-06-25 22:28:29 +02:00
parent 8365987ff5
commit bfa2294e81
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1 @@
EBUILD pyFFTW-9999.ebuild 625 SHA256 92c31781ae10cb28f0d21c608fff521b9540df701a767a868eb7e2d5c7dfbf4b SHA512 ae7af22f2fd074d77ca7ffb55789318320e3de68ef803ef9637e4a3a2a7f822931117df763cb225200af0aea6774712f610faeac2209c59c3e4b98f979a08d3d WHIRLPOOL 449087b56724b298c0c3447b0df288a05403bf422976c7279b8103fa49a82043d1d985487aac3886497075a9275b32823f9e6612eb1e53d8ac414d9455f0213f

View File

@@ -0,0 +1,27 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
inherit distutils-r1
DESCRIPTION="A pythonic python wrapper around FFTW"
HOMEPAGE="https://github.com/pyFFTW/pyFFTW"
LICENSE="BSD"
SLOT="0"
if [ "${PV}" = "9999" ]; then
KEYWORDS=""
inherit git-r3
EGIT_REPO_URI="https://github.com/pyFFTW/pyFFTW.git"
else
KEYWORDS="~amd64 ~x86"
SRC_URI="https://github.com/pyFFTW/pyFFTW/archive/v${PV}.tar.gz -> ${P}.tar.gz"
fi
IUSE=""
DEPEND="dev-python/numpy[${PYTHON_USEDEP}]
dev-python/cython[${PYTHON_USEDEP}]
>=sci-libs/fftw-3.3:3.0="
RDEPEND="${DEPEND}"