media-sound/picard: drop 3.0_pre20251117

Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Andreas Sturmlechner 2025-12-19 21:49:23 +01:00
parent aeba5a31b4
commit bbf91712ce
No known key found for this signature in database
GPG Key ID: AE591BBC73E4DD5E
2 changed files with 0 additions and 71 deletions

View File

@ -1,3 +1,2 @@
DIST picard-2.13.3.tar.gz 6089477 BLAKE2B 0d62188feec6595b9b5439ffd394d406b85fb2941ed3c14d40451c31113168c58f2bb146f4de5d5f3c355fdb6a0ab494dc9fe3ca712c6a0c61a3b29f661a8605 SHA512 c4698b1dae844328b6b636063871c6f5ddb306270d6520d43df7c38269c432e9eb36fab9e1a3cf8e54a7570bf9f5b8ba48f85b3bb1b28c8b8fe0ec516f084934
DIST picard-3.0_pre20251117-f30ca9ed.tar.gz 8248765 BLAKE2B 043f9b6a0ff152e03c3adaa207666152c5c798d0040686b39503634d1f16ba059d958dc987d5d2a04caffdf43e749ae5843d2753922ccf234da8f8a29928b037 SHA512 e028c94bb90207f86cd3ffa550d19c811626b53379fa4c4e7ffd4e44f4ca91d7adf7b79a2f8cc6a17ba644c25d317f84d86c312a4ad587d6c12213864ded4919
DIST picard-3.0_pre20251219-43da6b65.tar.gz 8552756 BLAKE2B a301c35212c4f9fb7b3c64e55ed564c4430b21b433dd21e4e1924bc5caa74740f2bf349533b66a122c1181834079c28162121b6257a020517552d63520164dac SHA512 4220f91c8c7f3511a3cbcb1656ac9f440768db54105877a837f5cfd86fe23f2e531e5832ae7febd9e82254c27fada8b345be049aca2d7cde8ea079d55380bd14

View File

@ -1,70 +0,0 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
DISTUTILS_USE_PEP517=setuptools
DISTUTILS_SINGLE_IMPL=1
DISTUTILS_EXT=1
inherit distutils-r1 xdg
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/metabrainz/picard"
inherit git-r3
else
if [[ ${PV} == *_p* ]]; then
COMMIT="f30ca9edcf82f8010517445246f12d0e40271402"
SRC_URI="https://github.com/metabrainz/${PN}/archive/${COMMIT}.tar.gz -> ${P}-${COMMIT:0:8}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
else
SRC_URI="https://data.musicbrainz.org/pub/musicbrainz/${PN}/${P}.tar.gz"
fi
KEYWORDS="~amd64 ~arm64 ~x86"
fi
DESCRIPTION="Cross-platform music tagger"
HOMEPAGE="https://picard.musicbrainz.org"
LICENSE="GPL-2+"
SLOT="0"
IUSE="discid fingerprints nls"
RDEPEND="
$(python_gen_cond_dep '
dev-python/fasteners[${PYTHON_USEDEP}]
dev-python/pyjwt[${PYTHON_USEDEP}]
dev-python/pyqt6[gui,network,qml,widgets,${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
media-libs/mutagen[${PYTHON_USEDEP}]
discid? ( dev-python/discid[${PYTHON_USEDEP}] )
')
fingerprints? ( media-libs/chromaprint[tools] )
"
DEPEND="test? ( $(python_gen_cond_dep 'dev-python/pyqt6[testlib,${PYTHON_USEDEP}]') )"
BDEPEND="nls? ( dev-qt/qttools:6[linguist] )"
distutils_enable_tests pytest
python_compile() {
local build_args=(
--disable-autoupdate
)
if ! use nls; then
build_args+=( --disable-locales )
fi
distutils-r1_python_compile ${build_args[@]}
}
python_install() {
local install_args=(
--disable-autoupdate
--skip-build
)
if ! use nls; then
install_args+=( --disable-locales )
fi
distutils-r1_python_install ${install_args[@]}
}