Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/lxqt-policykit/
Date: Sun, 18 Apr 2021 05:09:24
Message-Id: 1618722034.bc0351282bba587d90b8fe5811033aceef4ef502.juippis@gentoo
1 commit: bc0351282bba587d90b8fe5811033aceef4ef502
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 16 16:44:18 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 18 05:00:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc035128
7
8 lxqt-base/lxqt-policykit: add version 0.17.0
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 lxqt-base/lxqt-policykit/Manifest | 1 +
15 .../lxqt-policykit/lxqt-policykit-0.17.0.ebuild | 41 ++++++++++++++++++++++
16 2 files changed, 42 insertions(+)
17
18 diff --git a/lxqt-base/lxqt-policykit/Manifest b/lxqt-base/lxqt-policykit/Manifest
19 index faf5cadef81..a4652047369 100644
20 --- a/lxqt-base/lxqt-policykit/Manifest
21 +++ b/lxqt-base/lxqt-policykit/Manifest
22 @@ -1 +1,2 @@
23 DIST lxqt-policykit-0.16.0.tar.xz 38016 BLAKE2B dd077f1a25b9bb5ee56f7ad08f24254936f3b5f1b6ab4c9148ebce160867b8535341353339470d4363fbb52eead522133ed702f7d98b78cc08df58eeb5d6467b SHA512 f6eae925cbf25064addf5d89999d16a7397ddb0d8c616f75a3b81df57a42a70e52da599fdad6b8589a1e951cf46cd541e9a23e352a0d2ee309116b6e0238cfa9
24 +DIST lxqt-policykit-0.17.0.tar.xz 38272 BLAKE2B e141d0ff7a583b22ddddcde3875cf82a5215cef0c6270774b3b31e21608f16bc78dd45b3b36b8ba1fde3bbeda30b2f638a47ecf7dee1797da151cb701fecc866 SHA512 1cfd4b2d21840704e4b15ae71098e9c6f3d51031293f1fdf6e134ffee867fe4e845caaf24fbd2c107317372b90b6d415a76854977fa8f6b703e708bd09120328
25
26 diff --git a/lxqt-base/lxqt-policykit/lxqt-policykit-0.17.0.ebuild b/lxqt-base/lxqt-policykit/lxqt-policykit-0.17.0.ebuild
27 new file mode 100644
28 index 00000000000..58cf474ee82
29 --- /dev/null
30 +++ b/lxqt-base/lxqt-policykit/lxqt-policykit-0.17.0.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2021 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.9.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 +
69 +src_install() {
70 + cmake_src_install
71 + doman man/*.1
72 +}