Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-policykit/
Date: Fri, 21 Jan 2022 19:07:21
Message-Id: 1642792006.06ab3e0dbf833271551004bb4cef10a38c9cc880.sam@gentoo
1 commit: 06ab3e0dbf833271551004bb4cef10a38c9cc880
2 Author: Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
3 AuthorDate: Sat Nov 6 12:52:24 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 21 19:06:46 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06ab3e0d
7
8 lxqt-base/lxqt-policykit: version bump to 1.0.0
9
10 Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 lxqt-base/lxqt-policykit/Manifest | 1 +
14 .../lxqt-policykit/lxqt-policykit-1.0.0.ebuild | 43 ++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/lxqt-base/lxqt-policykit/Manifest b/lxqt-base/lxqt-policykit/Manifest
18 index 0b491ac755d8..a2524c4a0df3 100644
19 --- a/lxqt-base/lxqt-policykit/Manifest
20 +++ b/lxqt-base/lxqt-policykit/Manifest
21 @@ -1 +1,2 @@
22 DIST lxqt-policykit-0.17.0.tar.xz 38272 BLAKE2B e141d0ff7a583b22ddddcde3875cf82a5215cef0c6270774b3b31e21608f16bc78dd45b3b36b8ba1fde3bbeda30b2f638a47ecf7dee1797da151cb701fecc866 SHA512 1cfd4b2d21840704e4b15ae71098e9c6f3d51031293f1fdf6e134ffee867fe4e845caaf24fbd2c107317372b90b6d415a76854977fa8f6b703e708bd09120328
23 +DIST lxqt-policykit-1.0.0.tar.xz 39040 BLAKE2B 0bbf68cd6ad4edf9c2553332855099317a852174baa7ef42e47c50d8a37eb8f87caa8f7698a84de9ed14d8c6afda3be93cef5113ec7019583345acdfcd82e5ad SHA512 c0d7c5ff8a5e95e74eefd094625d71603026e9d30c033e224fc4e62eba63f1bfe76ddf666eb1875a14c2c1bea3d21e4ac6d191e90bc2442f7e4e62845a63a3f0
24
25 diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-1.0.0.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-1.0.0.ebuild
26 new file mode 100644
27 index 000000000000..35cd8f8ee90a
28 --- /dev/null
29 +++ b/lxqt-base/lxqt-policykit/lxqt-policykit-1.0.0.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit cmake
37 +
38 +DESCRIPTION="LXQt PolKit authentication agent"
39 +HOMEPAGE="https://lxqt.github.io/"
40 +
41 +MY_PV="$(ver_cut 1-2)"
42 +
43 +if [[ ${PV} = *9999* ]]; then
44 + inherit git-r3
45 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
46 +else
47 + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
48 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
49 +fi
50 +
51 +LICENSE="LGPL-2.1 LGPL-2.1+"
52 +SLOT="0"
53 +
54 +BDEPEND="
55 + >=dev-qt/linguist-tools-5.15:5
56 + >=dev-util/lxqt-build-tools-0.10.0
57 + virtual/pkgconfig
58 +"
59 +DEPEND="
60 + dev-libs/glib:2
61 + >=dev-libs/libqtxdg-3.3.1
62 + >=dev-qt/qtcore-5.15:5
63 + >=dev-qt/qtgui-5.15:5
64 + >=dev-qt/qtwidgets-5.15:5
65 + =lxqt-base/liblxqt-${MY_PV}*
66 + >=sys-auth/polkit-qt-0.113.0
67 +"
68 +RDEPEND="${DEPEND}"
69 +
70 +src_install() {
71 + cmake_src_install
72 + doman man/*.1
73 +}