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