blob: c32af9e20d089077476983a74fc059a38d7c85c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 optfeature
DESCRIPTION="A module for Audio/Acoustic Activity Detection"
HOMEPAGE="https://github.com/amsehili/auditok/"
SRC_URI="https://github.com/amsehili/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="
test? (
dev-python/pydub[${PYTHON_USEDEP}]
dev-python/genty[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
)
"
distutils_enable_tests unittest
python_prepare_all() {
distutils-r1_python_prepare_all
# these tests appear to be broken
rm "${S}"/tests/test_plotting.py || die
}
python_test() {
eunittest tests/
}
pkg_postinst() {
optfeature "reading audio files in popular audio formats (ogg, mp3, etc.) or extracting audio from a video file" dev-python/pydub
optfeature "reading audio data from the microphone and playing audio back" dev-python/pyaudio
optfeature "showing progress bar while playing audio clips" dev-python/tqdm
optfeature "plotting audio signal and detections" dev-python/matplotlib
optfeature "matplotlib. Also used for some math operations instead of standard python if available" dev-python/numpy
}
|