commit: 362bd94298b1236471c1d60b7f36ffd2d6cef065 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org> AuthorDate: Sat Feb 25 11:15:58 2023 +0000 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org> CommitDate: Sat Feb 25 11:16:33 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=362bd942
media-sound/puddletag: Add python 3.11 support. Closes: https://bugs.gentoo.org/897038 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org> media-sound/puddletag/puddletag-2.2.0-r1.ebuild | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/media-sound/puddletag/puddletag-2.2.0-r1.ebuild b/media-sound/puddletag/puddletag-2.2.0-r1.ebuild new file mode 100644 index 000000000000..804e37ed485f --- /dev/null +++ b/media-sound/puddletag/puddletag-2.2.0-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9,10,11} ) + +inherit distutils-r1 xdg + +DESCRIPTION="Audio tag editor" +HOMEPAGE="http://docs.puddletag.net/" +SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2 GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="acoustid quodlibet" + +DEPEND="" +RDEPEND=" + >=dev-python/configobj-5.0.6[${PYTHON_USEDEP}] + >=dev-python/pyparsing-3.0.9[${PYTHON_USEDEP}] + >=dev-python/PyQt5-5.15.7[${PYTHON_USEDEP},svg] + >=media-libs/mutagen-1.45.1[${PYTHON_USEDEP}] + acoustid? ( >=dev-python/pyacoustid-1.2.2-r1[${PYTHON_USEDEP}] ) + quodlibet? ( >=media-sound/quodlibet-4.4.0[${PYTHON_USEDEP}] ) + >=dev-python/PyQt5-sip-12.11.0[${PYTHON_USEDEP}] + >=dev-python/lxml-4.9.1[${PYTHON_USEDEP}] + >=dev-python/Levenshtein-0.18.1[${PYTHON_USEDEP}] +" +DOCS=(changelog NEWS THANKS TODO)
