2024-05-09 22:15:57 +02:00
|
|
|
# Copyright 2016-2024 Gentoo Authors
|
2020-12-08 17:10:46 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2021-07-10 19:09:23 +02:00
|
|
|
EAPI="8"
|
2020-12-08 17:10:46 +01:00
|
|
|
|
2022-11-22 22:38:13 +01:00
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
2024-05-09 22:15:57 +02:00
|
|
|
PYTHON_COMPAT=( python3_{11..12} )
|
2023-03-02 23:14:05 +01:00
|
|
|
inherit distutils-r1 pypi
|
2020-12-08 17:10:46 +01:00
|
|
|
|
2022-10-06 17:52:02 +02:00
|
|
|
COMMIT_ID=""
|
2020-12-08 17:10:46 +01:00
|
|
|
|
|
|
|
DESCRIPTION="SoundFile is an audio library based on libsndfile, CFFI, and NumPy"
|
2023-01-13 20:20:11 +01:00
|
|
|
HOMEPAGE="
|
|
|
|
https://github.com/bastibe/python-soundfile
|
2023-02-08 22:20:58 +01:00
|
|
|
https://pypi.org/project/soundfile/
|
2023-01-13 20:20:11 +01:00
|
|
|
"
|
2020-12-08 17:10:46 +01:00
|
|
|
|
|
|
|
if [[ ${PV} == *9999 ]]; then
|
2021-05-15 23:59:59 +02:00
|
|
|
EGIT_REPO_URI="https://github.com/bastibe/python-${PN}"
|
2020-12-08 17:10:46 +01:00
|
|
|
inherit git-r3
|
|
|
|
else
|
2022-02-09 23:02:03 +01:00
|
|
|
if [[ (${PV} == *_p*) || (${PV} == *_beta*) ]]; then
|
2023-02-19 18:31:51 +01:00
|
|
|
SRC_URI="https://github.com/bastibe/python-${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.gh.tar.gz"
|
2021-05-15 23:59:59 +02:00
|
|
|
S="${WORKDIR}/python-${PN}-${COMMIT_ID}"
|
2020-12-08 17:10:46 +01:00
|
|
|
fi
|
|
|
|
fi
|
2021-08-05 14:22:51 +02:00
|
|
|
KEYWORDS="~amd64 ~x86"
|
2020-12-08 17:10:46 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
"
|
|
|
|
|
2022-11-22 22:38:13 +01:00
|
|
|
distutils_enable_tests pytest
|