Gentoo Archives: gentoo-commits

From: Daniel Pielmeier <billie@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/puddletag/
Date: Sat, 17 Apr 2021 17:35:42
Message-Id: 1618680915.96d7bf53b7d4c4987df5f372f7eebb8b0fe0a914.billie@gentoo
1 commit: 96d7bf53b7d4c4987df5f372f7eebb8b0fe0a914
2 Author: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 17 17:35:15 2021 +0000
4 Commit: Daniel Pielmeier <billie <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 17 17:35:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96d7bf53
7
8 media-sound/puddletag: Add support for python 3.9.
9
10 Closes: https://bugs.gentoo.org/776955
11 Package-Manager: Portage-3.0.17, Repoman-3.0.2
12 Signed-off-by: Daniel Pielmeier <billie <AT> gentoo.org>
13
14 media-sound/puddletag/puddletag-2.0.1-r1.ebuild | 37 +++++++++++++++++++++++++
15 1 file changed, 37 insertions(+)
16
17 diff --git a/media-sound/puddletag/puddletag-2.0.1-r1.ebuild b/media-sound/puddletag/puddletag-2.0.1-r1.ebuild
18 new file mode 100644
19 index 00000000000..8f7ebe2388f
20 --- /dev/null
21 +++ b/media-sound/puddletag/puddletag-2.0.1-r1.ebuild
22 @@ -0,0 +1,37 @@
23 +# Copyright 1999-2021 Gentoo Authors
24 +# Distributed under the terms of the GNU General Public License v2
25 +
26 +EAPI=7
27 +
28 +PYTHON_COMPAT=( python3_{7,8,9} )
29 +
30 +inherit distutils-r1 xdg
31 +
32 +DESCRIPTION="Audio tag editor"
33 +HOMEPAGE="http://docs.puddletag.net/"
34 +SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.gz"
35 +
36 +LICENSE="GPL-2 GPL-3"
37 +SLOT="0"
38 +KEYWORDS="~amd64 ~x86"
39 +IUSE="acoustid quodlibet"
40 +
41 +DEPEND=""
42 +RDEPEND="
43 + >=dev-python/configobj-5.0[${PYTHON_USEDEP}]
44 + >=dev-python/pyparsing-2.4.7[${PYTHON_USEDEP}]
45 + >=dev-python/PyQt5-5.15.2[${PYTHON_USEDEP},svg]
46 + >=media-libs/mutagen-1.45.1[${PYTHON_USEDEP}]
47 + acoustid? ( >=media-libs/chromaprint-1.4.3 )
48 + quodlibet? ( >=media-sound/quodlibet-4.4.0[${PYTHON_USEDEP}] )
49 + >=dev-python/sip-4.19.22:0[${PYTHON_USEDEP}]
50 + >=dev-python/lxml-4.5.2[${PYTHON_USEDEP}]
51 +"
52 +# docs
53 +# >=dev-python/wheel-0.35.1[${PYTHON_USEDEP}]
54 +# >=dev-python/markdown-3.1.1[${PYTHON_USEDEP}]
55 +# >=dev-python/sphinx-1.4.8[${PYTHON_USEDEP}]
56 +# >=dev-python/sphinx-bootstrap-theme-0.4.13[${PYTHON_USEDEP}]
57 +# >=dev-python/PyRSS2Gen-1.1[${PYTHON_USEDEP}]
58 +
59 +DOCS=(changelog NEWS THANKS TODO)