Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/master-pdf-editor/
Date: Mon, 29 Nov 2021 07:42:53
Message-Id: 1638171763.773704c138b6a6522fc7183187239f36e6a4b3d2.juippis@gentoo
1 commit: 773704c138b6a6522fc7183187239f36e6a4b3d2
2 Author: Joao Santos <joaompssantos <AT> gmail <DOT> com>
3 AuthorDate: Mon Nov 22 19:10:59 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 29 07:42:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=773704c1
7
8 app-text/master-pdf-editor: bump to version 5.8.20
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: João Santos <joaompssantos <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/23042
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-text/master-pdf-editor/Manifest | 1 +
16 .../master-pdf-editor-5.8.20.ebuild | 42 ++++++++++++++++++++++
17 2 files changed, 43 insertions(+)
18
19 diff --git a/app-text/master-pdf-editor/Manifest b/app-text/master-pdf-editor/Manifest
20 index edff18e5dfa2..e096d223a55c 100644
21 --- a/app-text/master-pdf-editor/Manifest
22 +++ b/app-text/master-pdf-editor/Manifest
23 @@ -1,2 +1,3 @@
24 DIST master-pdf-editor-5.7.90-qt5.x86_64.tar.gz 15962243 BLAKE2B 4331a5d17ed9a0ff7a70c353907a4c0d5e99db447760f6103d412eabe0064b1e4ac59ca85bb0cab2bffc5867c8ccde96f68e7ceee227b7b319d93b70482f233d SHA512 823c7212cd3d469bb972e7da66e6eada31149c0bab2a6c577e537ca203862d0fe862e8c9b0cbb479eca0557da4b69a91a88ae0c9215d3b5f105288a9c6c1f2bf
25 DIST master-pdf-editor-5.8.06-qt5.x86_64.tar.gz 15975595 BLAKE2B 627a4a1f551ffe13917f44768dc6b990d3582a5c2c7d6b7670c94fd880882dcec93c8ccca69240ecb568a7ab20d752180c2981870e5d5671d69c404a7b99c791 SHA512 dd079d11d570909faaf1129342d075550dca3095c5a76748f6f77e2e7df50ec4b46646c5edf40fd2d2f783baaa602fee292dd2fd54ac94fa723e3a40c454e7ad
26 +DIST master-pdf-editor-5.8.20-qt5.x86_64.tar.gz 16755926 BLAKE2B 7694b825ca846767a0bf776fdd637595d4bd9fe8a9525c2212be7cd186aa230fe6446e157dabdf0a6c2314b49f2a987d2a0b62ac377bec1e3f3e58302668c05d SHA512 006478e65f55e2e24afd9f9581cd3f3ea8cc38c156a7e5c62410fa5bbb94482b627ca4645cbb91d3fdcdda1a779ccda6825107ba65b60b8d50d034b409eabd61
27
28 diff --git a/app-text/master-pdf-editor/master-pdf-editor-5.8.20.ebuild b/app-text/master-pdf-editor/master-pdf-editor-5.8.20.ebuild
29 new file mode 100644
30 index 000000000000..b6b616512c5b
31 --- /dev/null
32 +++ b/app-text/master-pdf-editor/master-pdf-editor-5.8.20.ebuild
33 @@ -0,0 +1,42 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +inherit desktop xdg
40 +
41 +DESCRIPTION="A complete solution for viewing and editing PDF files"
42 +HOMEPAGE="https://code-industry.net/free-pdf-editor/"
43 +SRC_URI="https://code-industry.net/public/${P}-qt5.x86_64.tar.gz"
44 +S="${WORKDIR}/${PN}-${PV%%.*}"
45 +
46 +LICENSE="master-pdf-editor"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +RESTRICT="mirror"
50 +
51 +RDEPEND="
52 + dev-libs/nss
53 + >=dev-qt/qtcore-5.12.9:5
54 + >=dev-qt/qtgui-5.12.9:5
55 + >=dev-qt/qtnetwork-5.12.9:5
56 + >=dev-qt/qtprintsupport-5.12.9:5
57 + >=dev-qt/qtsvg-5.12.9:5
58 + >=media-gfx/sane-backends-1.0
59 +"
60 +
61 +QA_PREBUILT="opt/${PN}/masterpdfeditor5"
62 +
63 +src_install() {
64 + insinto /opt/${PN}
65 + doins -r fonts lang stamps templates masterpdfeditor5.png
66 +
67 + exeinto /opt/${PN}
68 + doexe masterpdfeditor5
69 + dosym ../${PN}/masterpdfeditor5 /opt/bin/masterpdfeditor5
70 +
71 + make_desktop_entry "masterpdfeditor5 %f" \
72 + "Master PDF Editor ${PV}" /opt/${PN}/masterpdfeditor5.png \
73 + "Office;Graphics;Viewer" \
74 + "MimeType=application/pdf;application/x-bzpdf;application/x-gzpdf;\nTerminal=false"
75 +}