Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-policykit/
Date: Wed, 20 May 2020 23:28:58
Message-Id: 1590017310.8f3cad7da7f49d693229770f014432f2894c58c8.asturm@gentoo
1 commit: 8f3cad7da7f49d693229770f014432f2894c58c8
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 27 18:50:24 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 20 23:28:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f3cad7d
7
8 lxqt-base/lxqt-policykit: add version 0.15.0
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 lxqt-base/lxqt-policykit/Manifest | 1 +
15 .../lxqt-policykit/lxqt-policykit-0.15.0.ebuild | 43 ++++++++++++++++++++++
16 2 files changed, 44 insertions(+)
17
18 diff --git a/lxqt-base/lxqt-policykit/Manifest b/lxqt-base/lxqt-policykit/Manifest
19 index 8e21268f176..2838be29df7 100644
20 --- a/lxqt-base/lxqt-policykit/Manifest
21 +++ b/lxqt-base/lxqt-policykit/Manifest
22 @@ -1 +1,2 @@
23 DIST lxqt-policykit-0.14.1.tar.xz 37616 BLAKE2B 05175f99bd63fae795499eff02b224a589842e6f4ce0faa66dcb949d99625d8fcdd54600d80832b5211e297e9c0da3aa33ecd6e47b5dd7b0e544a1d301e4e483 SHA512 c3df41a45ef4d04eba9ce0c9f29d4c9b68a192302e85e192a26ae73617b87d0ad70ec64135f500485d4c10095754e36935bf9790ffd83d0197b1bb784971a940
24 +DIST lxqt-policykit-0.15.0.tar.xz 37712 BLAKE2B b9263234766dd9a2e89288f6668e8553e1f5deae0e306443fc3d15268f3fbbb4b9cfb81987d1e1f9c96ece4494ef700a6e40bf5e498eeb3d7377f3848d09b376 SHA512 2dbbe6d626ef5da816f080354caf564a1aa58270ae299483b9a4ce35d5f1bdb3c652dcb5f12d2668a0ea82556414b00320d2bd88fcadb37fbbdbf724a17e3c41
25
26 diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-0.15.0.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-0.15.0.ebuild
27 new file mode 100644
28 index 00000000000..daf686ddd39
29 --- /dev/null
30 +++ b/lxqt-base/lxqt-policykit/lxqt-policykit-0.15.0.ebuild
31 @@ -0,0 +1,43 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit cmake
38 +
39 +DESCRIPTION="LXQt PolKit authentication agent"
40 +HOMEPAGE="https://lxqt.github.io/"
41 +
42 +if [[ ${PV} = *9999* ]]; then
43 + inherit git-r3
44 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
45 +else
46 + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
47 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
48 +fi
49 +
50 +LICENSE="LGPL-2.1 LGPL-2.1+"
51 +SLOT="0"
52 +
53 +BDEPEND="
54 + dev-qt/linguist-tools:5
55 + >=dev-util/lxqt-build-tools-0.7.0
56 + virtual/pkgconfig
57 +"
58 +DEPEND="
59 + dev-libs/glib:2
60 + >=dev-libs/libqtxdg-3.3.1
61 + dev-qt/qtcore:5
62 + dev-qt/qtgui:5
63 + dev-qt/qtwidgets:5
64 + =lxqt-base/liblxqt-$(ver_cut 1-2)*
65 + sys-auth/polkit-qt[qt5(+)]
66 +"
67 +RDEPEND="${DEPEND}
68 + !lxqt-base/lxqt-l10n
69 +"
70 +
71 +src_install() {
72 + cmake_src_install
73 + doman man/*.1
74 +}