Diff pyacoustid-1.2.2-r1 with a pyacoustid-1.3.0
/usr/portage/dev-python/pyacoustid/pyacoustid-1.3.0.ebuild 2023-10-09 14:52:30.332368371 +0300 | ||
---|---|---|
4 | 4 |
EAPI=8 |
5 | 5 | |
6 | 6 |
DISTUTILS_USE_PEP517=setuptools |
7 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
7 |
PYTHON_COMPAT=( python3_{10..11} ) |
|
8 | ||
8 | 9 |
inherit distutils-r1 pypi |
9 | 10 | |
10 | 11 |
DESCRIPTION="Python bindings for Chromaprint and the AcoustID web service" |
11 |
HOMEPAGE="https://pypi.org/project/pyacoustid/" |
|
12 |
HOMEPAGE=" |
|
13 |
https://github.com/beetbox/pyacoustid/ |
|
14 |
https://pypi.org/project/pyacoustid/ |
|
15 |
" |
|
12 | 16 |
SRC_URI+=" |
13 | 17 |
test? ( |
14 | 18 |
https://s3.wasabisys.com/blocsonic/releases/maxblocs/bsmx0198/01-Follow_192kb.mp3 |
... | ... | |
16 | 20 |
) |
17 | 21 |
" |
18 | 22 | |
19 |
LICENSE="MIT test? ( CC-BY-SA-4.0 )" |
|
23 |
LICENSE="MIT" |
|
20 | 24 |
SLOT="0" |
21 |
KEYWORDS="amd64 ~x86" |
|
25 |
KEYWORDS="~amd64 ~x86" |
|
22 | 26 |
IUSE="examples test" |
23 | ||
24 | 27 |
# Tests fail with network-sandbox, since they need to connect to acoustid.org |
25 | 28 |
PROPERTIES="test_network" |
26 | 29 |
RESTRICT="test" |
... | ... | |
33 | 36 | |
34 | 37 |
python_test() { |
35 | 38 |
# Working test will print the top metadata match from Acoustid's database. |
36 |
"${EPYTHON}" aidmatch.py "${DISTDIR}/${PN}-test.mp3" || die "Test failed with ${EPYTHON}" |
|
39 |
"${EPYTHON}" aidmatch.py "${DISTDIR}/${PN}-test.mp3" || |
|
40 |
die "Test failed with ${EPYTHON}" |
|
37 | 41 |
} |
38 | 42 | |
39 | 43 |
src_install() { |