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/peg-e/
Date: Thu, 21 May 2020 19:21:49
Message-Id: 1590088891.87eca01a019c71627d031f61a5257c4a5c3a6cee.asturm@gentoo
1 commit: 87eca01a019c71627d031f61a5257c4a5c3a6cee
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 19:20:50 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=87eca01a
7
8 games-board/peg-e: 1.2.8 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/peg-e/Manifest | 1 +
14 games-board/peg-e/peg-e-1.2.8.ebuild | 44 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 45 insertions(+)
16
17 diff --git a/games-board/peg-e/Manifest b/games-board/peg-e/Manifest
18 index 3e5d21f3c5f..6b221b9f363 100644
19 --- a/games-board/peg-e/Manifest
20 +++ b/games-board/peg-e/Manifest
21 @@ -1 +1,2 @@
22 DIST peg-e-1.2.5-src.tar.bz2 598322 BLAKE2B f717d3e378fe69e087631abd8f0cbe3cc3bf2479ab86a608c256100778bc94baa40752463a4cb511c4ffd431ce38333318803a1dc289be4bd7d3aad595cd76d1 SHA512 cfd15e2c8cba678d64c9289ab2aa3803af48aebb3e4e545439c247d622dd914dac0735a0fd786cdba1678b448c22a9e40f48a9a1db6391fa6532e3d918c0ca10
23 +DIST peg-e-1.2.8-src.tar.bz2 592285 BLAKE2B 67c996978702ace0b249b83c3ea7159583496386114e0548b5570cb0e29ddf0d58375654b00e112228be812296ad28ad199d59f329fcda34cca8951229e35f5d SHA512 063bfb091b95f0613475e7ff9b5762ac563ede3e3a22e420e14cf098d2f6d9801bb8aaa677bddf693bdc4050b4e4be3292c1072429a294e633e2ca734d88ffa0
24
25 diff --git a/games-board/peg-e/peg-e-1.2.8.ebuild b/games-board/peg-e/peg-e-1.2.8.ebuild
26 new file mode 100644
27 index 00000000000..40086cd07d1
28 --- /dev/null
29 +++ b/games-board/peg-e/peg-e-1.2.8.ebuild
30 @@ -0,0 +1,44 @@
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="A peg solitaire game"
39 +HOMEPAGE="https://gottcode.org/peg-e/"
40 +SRC_URI="https://gottcode.org/peg-e/${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 +PATCHES=( "${FILESDIR}"/${PN}-1.2.5-gentoo.patch )
58 +
59 +src_configure() {
60 + eqmake5
61 +}
62 +
63 +src_install() {
64 + emake INSTALL_ROOT="${D}" install
65 + einstalldocs
66 +}
67 +
68 +pkg_postinst() {
69 + xdg_icon_cache_update
70 +}
71 +
72 +pkg_postrm() {
73 + xdg_icon_cache_update
74 +}