mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 15:37:58 +02:00
Upstream commit 3845de8a64f059e8f294d00725dd9d9c253db0ce Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
64 lines
1.5 KiB
Bash
64 lines
1.5 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
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
|
|
SRC_URI="https://data.musicbrainz.org/pub/musicbrainz/${PN}/${P}.tar.gz"
|
|
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[@]}
|
|
}
|