diff options
Diffstat (limited to 'dev-python/pyacoustid')
| -rw-r--r-- | dev-python/pyacoustid/Manifest | 4 | ||||
| -rw-r--r-- | dev-python/pyacoustid/metadata.xml | 13 | ||||
| -rw-r--r-- | dev-python/pyacoustid/pyacoustid-1.3.0-r1.ebuild | 51 | ||||
| -rw-r--r-- | dev-python/pyacoustid/pyacoustid-1.3.1.ebuild | 52 |
4 files changed, 0 insertions, 120 deletions
diff --git a/dev-python/pyacoustid/Manifest b/dev-python/pyacoustid/Manifest deleted file mode 100644 index cdf5c75e2712..000000000000 --- a/dev-python/pyacoustid/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST pyacoustid-1.3.0.tar.gz 17369 BLAKE2B 93f949943d792b4c1f4b2b99ae37821c1ffa5c7a2bbeda7aed276e6ad4f9ad35e5fc4c6e590667bee552710eec483cf2a16f58a7f34a1f02c94b4cb84ec45cf4 SHA512 3b38e580b2deda30df683fe749b338929be0ca23fb3ff462a5df9b98f140db4bde682d74254e7f3a157e394e824ecb6929171392b5e6c9bd92ca05fb6f71ed0a -DIST pyacoustid-1.3.1.tar.gz 16424 BLAKE2B 6db721d8e43e8d8bab6b41485abc721cef89ce023f4d0ea899e363c33ef3ab1f4623957c42589f2fb08c70e478bee9b7c6fbef09a61f92f227f2d5727ae7dec1 SHA512 a924c431e5a03be091573ebc5c189be3b4e69cc7a6009e247b7750289be2304206aead779e383faab3a12e4ce71405a2436304e0151434def0a78f66f2ac2eaa -DIST pyacoustid-1.3.1.tar.gz.provenance 9518 BLAKE2B 8419c483d53147623dc19ef52b8bbf76570ccf287f7140b26d731d4e3ea01c9dcb5bb86259fb076fb3a426d8cd224558480bc985c8a1634faa3e5ed8c38bc8cc SHA512 64fc74bf4f1888c232eb480a690cc6e6b6d225d788576b9d559487458fcc738ba0ec08139ccc4ec9e0b17beb0edf9e1e3095b312128dae87869574911d8278d5 -DIST pyacoustid-test.mp3 4507187 BLAKE2B 54494d9f23481f9d1ee77b136ac3e1790e9fb78c782159ad1793dbebf18f694e13f6413a8259bae84c789f73ea8241e590dbd7e30ccb7377b2afa946335da19b SHA512 faa582640e759322d4bd58d85f4aa7d3ef88fd90aa3c67c1390ba6d4c3213278c11fb60c8d6c87a25e82dffcc54986caa4f0e463acfbcd90993166577e5226d8 diff --git a/dev-python/pyacoustid/metadata.xml b/dev-python/pyacoustid/metadata.xml deleted file mode 100644 index 773173d307b0..000000000000 --- a/dev-python/pyacoustid/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - Chromaprint and its associated Acoustid Web service make up a high-quality, open-source acoustic fingerprinting system. This package provides Python bindings for both the fingerprinting algorithm library, which is written in C but portable, and the Web service, which provides fingerprint lookups. - </longdescription> - <upstream> - <remote-id type="pypi">pyacoustid</remote-id> - <remote-id type="github">beetbox/pyacoustid</remote-id> - <bugs-to>https://github.com/beetbox/pyacoustid/issues</bugs-to> - </upstream> -</pkgmetadata> diff --git a/dev-python/pyacoustid/pyacoustid-1.3.0-r1.ebuild b/dev-python/pyacoustid/pyacoustid-1.3.0-r1.ebuild deleted file mode 100644 index f3ed316fd90c..000000000000 --- a/dev-python/pyacoustid/pyacoustid-1.3.0-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Python bindings for Chromaprint and the AcoustID web service" -HOMEPAGE=" - https://github.com/beetbox/pyacoustid/ - https://pypi.org/project/pyacoustid/ -" -SRC_URI+=" - test? ( - https://s3.wasabisys.com/blocsonic/releases/maxblocs/bsmx0198/01-Follow_192kb.mp3 - -> ${PN}-test.mp3 - ) -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="examples test" -# Tests fail with network-sandbox, since they need to connect to acoustid.org -PROPERTIES="test_network" -RESTRICT="test" - -RDEPEND=" - dev-python/audioread[${PYTHON_USEDEP},ffmpeg] - dev-python/requests[${PYTHON_USEDEP}] - media-libs/chromaprint -" - -python_test() { - # Working test will print the top metadata match from Acoustid's database. - "${EPYTHON}" aidmatch.py "${DISTDIR}/${PN}-test.mp3" || - die "Test failed with ${EPYTHON}" -} - -src_install() { - distutils-r1_src_install - - if use examples ; then - docinto examples - dodoc aidmatch.py fpcalc.py - docompress -x /usr/share/doc/${PF}/examples/ - fi -} diff --git a/dev-python/pyacoustid/pyacoustid-1.3.1.ebuild b/dev-python/pyacoustid/pyacoustid-1.3.1.ebuild deleted file mode 100644 index 2ce9f82ecfcd..000000000000 --- a/dev-python/pyacoustid/pyacoustid-1.3.1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=poetry -PYPI_VERIFY_REPO=https://github.com/beetbox/pyacoustid -PYTHON_COMPAT=( python3_{13..14} ) - -inherit distutils-r1 pypi - -DESCRIPTION="Python bindings for Chromaprint and the AcoustID web service" -HOMEPAGE=" - https://github.com/beetbox/pyacoustid/ - https://pypi.org/project/pyacoustid/ -" -SRC_URI+=" - test? ( - https://s3.wasabisys.com/blocsonic/releases/maxblocs/bsmx0198/01-Follow_192kb.mp3 - -> ${PN}-test.mp3 - ) -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~x86" -IUSE="examples test" -# Tests fail with network-sandbox, since they need to connect to acoustid.org -PROPERTIES="test_network" -RESTRICT="test" - -RDEPEND=" - dev-python/audioread[${PYTHON_USEDEP},ffmpeg] - dev-python/requests[${PYTHON_USEDEP}] - media-libs/chromaprint -" - -python_test() { - # Working test will print the top metadata match from Acoustid's database. - "${EPYTHON}" aidmatch.py "${DISTDIR}/${PN}-test.mp3" || - die "Test failed with ${EPYTHON}" -} - -src_install() { - distutils-r1_src_install - - if use examples ; then - docinto examples - dodoc aidmatch.py fpcalc.py - docompress -x /usr/share/doc/${PF}/examples/ - fi -} |
