Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/simsu/
Date: Thu, 21 May 2020 19:21:49
Message-Id: 1590088891.7cad416af6279d27f13c83a5ff3a2f069115cba1.asturm@gentoo
1 commit: 7cad416af6279d27f13c83a5ff3a2f069115cba1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 19:16:34 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 19:21:31 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cad416a
7
8 games-board/simsu: 1.3.9 version bump
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 games-board/simsu/Manifest | 1 +
14 games-board/simsu/simsu-1.3.9.ebuild | 46 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 47 insertions(+)
16
17 diff --git a/games-board/simsu/Manifest b/games-board/simsu/Manifest
18 index b5bf182fdda..15e0e512f46 100644
19 --- a/games-board/simsu/Manifest
20 +++ b/games-board/simsu/Manifest
21 @@ -1 +1,2 @@
22 DIST simsu-1.3.6-src.tar.bz2 597982 BLAKE2B acf13fe4e3e228cecc76a16352a4df06f14cf58307008f5679b63f1209b4cf191b28544ed3b002375afdf0de8cd92ce179f3cb367f9a5201099da99a806d60c5 SHA512 04e60ccab8345002078b7dbd253bc2a9701f9b8edbbdd9a01ac3ddffd9a5f3ccd32399216b9e497b309b6718646db11a55717e5bd201bfd2aaa80ad9b171cb94
23 +DIST simsu-1.3.9-src.tar.bz2 594107 BLAKE2B ac347f46bc80dd5045124e7a69668191f4996ac17e64b6da897f0bcdb66f10683944e8bc90a7c98a2000a9275b1925710938ef9ebc384a5b633de5e6c999b79c SHA512 04f46850628c113bca9c44085e073966ecf10aa727112a630894821e378ce35c14502264560c27a85df02c0ea5761e3835501f4869625cd98f50bb0a5e7afeae
24
25 diff --git a/games-board/simsu/simsu-1.3.9.ebuild b/games-board/simsu/simsu-1.3.9.ebuild
26 new file mode 100644
27 index 00000000000..788697df6d4
28 --- /dev/null
29 +++ b/games-board/simsu/simsu-1.3.9.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit desktop qmake-utils xdg-utils
37 +
38 +DESCRIPTION="Basic sudoku game"
39 +HOMEPAGE="https://gottcode.org/simsu/"
40 +SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
41 +
42 +LICENSE="GPL-3"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +BDEPEND="
48 + dev-qt/linguist-tools:5
49 +"
50 +RDEPEND="
51 + dev-qt/qtcore:5
52 + dev-qt/qtgui:5
53 + dev-qt/qtwidgets:5
54 +"
55 +DEPEND="${RDEPEND}"
56 +
57 +src_configure() {
58 + eqmake5
59 +}
60 +
61 +src_install() {
62 + dobin ${PN}
63 + insinto /usr/share/${PN}/translations
64 + doins translations/*qm
65 + dodoc ChangeLog
66 + doicon -s scalable icons/hicolor/scalable/apps/${PN}.svg
67 + domenu icons/${PN}.desktop
68 +}
69 +
70 +pkg_postinst() {
71 + xdg_icon_cache_update
72 +}
73 +
74 +pkg_postrm() {
75 + xdg_icon_cache_update
76 +}