holgersson-overlay/dev-python/soundfile/soundfile-0.11.0_beta20220602.ebuild
Nils Freydank 9da848d89b
dev-python/soundfile: Bump to 0.11.0_beta20220602 a.k.a. 0.11.0b5
Signed-off-by: Nils Freydank <nils.freydank@posteo.de>
2022-06-06 13:53:00 +02:00

44 lines
1.1 KiB
Bash

# Copyright 2016-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
PYTHON_COMPAT=( python3_{9..10} )
inherit distutils-r1
COMMIT_ID="8caf3c7338d02eb2963641118276d3c43bc0966c"
DESCRIPTION="SoundFile is an audio library based on libsndfile, CFFI, and NumPy"
HOMEPAGE="https://github.com/bastibe/python-soundfile"
if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/bastibe/python-${PN}"
inherit git-r3
else
if [[ (${PV} == *_p*) || (${PV} == *_beta*) ]]; then
SRC_URI="https://github.com/bastibe/python-${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/python-${PN}-${COMMIT_ID}"
else
SRC_URI="https://github.com/bastibe/python-${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
fi
fi
KEYWORDS="~amd64 ~x86"
LICENSE="PySoundFile-BSD-3"
SLOT="0"
IUSE="test"
# Some tests result in sandbox violations.
RESTRICT="test"
DEPEND="
dev-python/cffi[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
media-libs/libsndfile
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
"
python_test() {
py.test -vv
}