Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-cpp/qt-jdenticon/
Date: Tue, 21 Dec 2021 11:46:54
Message-Id: 1640087068.26e4f8b6dd47c686e10e0bd628bf1c6b669ddb47.tastytea@gentoo
1 commit: 26e4f8b6dd47c686e10e0bd628bf1c6b669ddb47
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Mon Dec 20 00:28:24 2021 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Tue Dec 21 11:44:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=26e4f8b6
7
8 dev-cpp/qt-jdenticon: Version bump 0.3.0
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 dev-cpp/qt-jdenticon/Manifest | 1 +
13 dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0.ebuild | 27 ++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-cpp/qt-jdenticon/Manifest b/dev-cpp/qt-jdenticon/Manifest
17 index bfeb60512..d9e190417 100644
18 --- a/dev-cpp/qt-jdenticon/Manifest
19 +++ b/dev-cpp/qt-jdenticon/Manifest
20 @@ -1 +1,2 @@
21 DIST qt-jdenticon-0.2.1.tar.gz 11590 BLAKE2B 0884fe3ab8f2e9f62c1592f96a311bec8992f6230bafe6a82f4fc67995fca4e2ac8677e22df3c69ecd9a9e3e35d6d0fb695d34aa69646c472cb78ec8c4cad4cc SHA512 22194dfbf4baf3cab4a4b51457a79538f9fdc62fc5a26c5492b76ce88c98b61c7cdd29dd42a3a886d9f755163ae9bd30f67cc5c3376e8c0a17e438e53b833740
22 +DIST qt-jdenticon-0.3.0.tar.gz 11021 BLAKE2B c4cbeba7848791b2386ac474ca7412b361ee949a126f10cdb523210a8415b436c365a3c056ca3fa9c196835f6bfc92b24a01f2906e62897b88af2e80a83d3bb3 SHA512 a3477ce8fd26de563c1397a07895dcd0ec8210c62fe82e808a8c322c298111c48570ce23df639d648d86a0627b455dc7d1772e985197351251d49abd461b8c23
23
24 diff --git a/dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0.ebuild b/dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0.ebuild
25 new file mode 100644
26 index 000000000..f7916f42f
27 --- /dev/null
28 +++ b/dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit qmake-utils
36 +
37 +DESCRIPTION="Qt5 / C++14 Port of Jdenticon"
38 +HOMEPAGE="https://github.com/Nheko-Reborn/qt-jdenticon"
39 +SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="MIT"
42 +SLOT="0"
43 +KEYWORDS="~amd64"
44 +
45 +RDEPEND="
46 + dev-qt/qtgui
47 +"
48 +DEPEND="${RDEPEND}"
49 +
50 +src_compile() {
51 + eqmake5
52 +}
53 +
54 +src_install() {
55 + emake INSTALL_ROOT="${D}" install
56 +}