Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/frescobaldi/
Date: Sat, 07 May 2022 07:27:32
Message-Id: 1651908439.6bc7fd3ff8c46d84b6025c00403a20c4052f9b32.fordfrog@gentoo
1 commit: 6bc7fd3ff8c46d84b6025c00403a20c4052f9b32
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 7 07:27:19 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat May 7 07:27:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bc7fd3f
7
8 media-sound/frescobaldi: bump to 3.2
9
10 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
11
12 media-sound/frescobaldi/Manifest | 1 +
13 media-sound/frescobaldi/frescobaldi-3.2.ebuild | 31 ++++++++++++++++++++++++++
14 2 files changed, 32 insertions(+)
15
16 diff --git a/media-sound/frescobaldi/Manifest b/media-sound/frescobaldi/Manifest
17 index 1f87cd3dde60..f94e88e995ed 100644
18 --- a/media-sound/frescobaldi/Manifest
19 +++ b/media-sound/frescobaldi/Manifest
20 @@ -1 +1,2 @@
21 DIST frescobaldi-3.1.3.tar.gz 6691789 BLAKE2B 88a08240997aad11d9bf31c57a844a42e341e7641649f5cfb52571beb63fa4c29382136eae7758e5fff1cc6a4f8eb2942ca9b09b8217d7243c699041c951081d SHA512 595c4628df1923dffa44987ba858827a50d5415e9a01b45c87def2a6625d22c8b9b2e988c49dec20bba750cfc1ff4512e6f67875c3a2b23e440ef7231856c159
22 +DIST frescobaldi-3.2.tar.gz 6696111 BLAKE2B e74a8c3a59c6dc5187538785bc5971dd996cf897c6428ff510775bad58aa4c04dd69b91f3821b9c868a3e7f13b6cae6f76814188de2620542959039e768c9be0 SHA512 403ae6cfe145595fef0ffe06ce4fd595a0417201b19e5f2315944b45cdcec50592296424f2bf2c7e3eccbe3dbeb9ff5bfc4aa7813241d8168bc057e7bf5539b3
23
24 diff --git a/media-sound/frescobaldi/frescobaldi-3.2.ebuild b/media-sound/frescobaldi/frescobaldi-3.2.ebuild
25 new file mode 100644
26 index 000000000000..1b7def16a0ee
27 --- /dev/null
28 +++ b/media-sound/frescobaldi/frescobaldi-3.2.ebuild
29 @@ -0,0 +1,31 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..9} )
36 +inherit distutils-r1 xdg
37 +
38 +DESCRIPTION="A LilyPond sheet music text editor"
39 +HOMEPAGE="https://www.frescobaldi.org/"
40 +SRC_URI="https://github.com/wbsoft/${PN}/releases/download/v${PV}/${P}.tar.gz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND="
48 + dev-python/PyQt5[gui,network,printsupport,svg,widgets,${PYTHON_USEDEP}]
49 + dev-python/PyQtWebEngine[${PYTHON_USEDEP}]
50 + dev-python/python-ly[${PYTHON_USEDEP}]
51 + dev-python/python-poppler-qt5[${PYTHON_USEDEP}]
52 + media-sound/lilypond"
53 +RDEPEND="${DEPEND}
54 + x11-themes/tango-icon-theme
55 +"
56 +
57 +python_prepare_all() {
58 + rm -r frescobaldi_app/icons/Tango || die "failed to remove tango icon theme"
59 + distutils-r1_python_prepare_all
60 +}