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-powermanagement/
Date: Sun, 29 Nov 2020 20:05:31
Message-Id: 1606680268.62c6525f666501e2861caa8db6235eb661ecf7d5.asturm@gentoo
1 commit: 62c6525f666501e2861caa8db6235eb661ecf7d5
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 23 18:13:46 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 20:04:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c6525f
7
8 lxqt-base/lxqt-powermanagement: add a missing dependency
9
10 Closes: https://bugs.gentoo.org/756193
11 Package-Manager: Portage-3.0.10, Repoman-3.0.2
12 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
13 Closes: https://github.com/gentoo/gentoo/pull/18377
14 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
15
16 .../lxqt-powermanagement-0.16.0-r1.ebuild | 45 ++++++++++++++++++++++
17 1 file changed, 45 insertions(+)
18
19 diff --git a/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.16.0-r1.ebuild b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.16.0-r1.ebuild
20 new file mode 100644
21 index 00000000000..38fcfd9ee98
22 --- /dev/null
23 +++ b/lxqt-base/lxqt-powermanagement/lxqt-powermanagement-0.16.0-r1.ebuild
24 @@ -0,0 +1,45 @@
25 +# Copyright 1999-2020 Gentoo Authors
26 +# Distributed under the terms of the GNU General Public License v2
27 +
28 +EAPI=7
29 +
30 +inherit cmake
31 +
32 +DESCRIPTION="LXQt daemon for power management and auto-suspend"
33 +HOMEPAGE="https://lxqt.github.io/"
34 +
35 +LXQTPV="$(ver_cut 1-2)*"
36 +
37 +if [[ ${PV} = *9999* ]]; then
38 + inherit git-r3
39 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
40 +else
41 + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
42 + KEYWORDS="~amd64 ~arm ~arm64 ~x86"
43 +fi
44 +
45 +LICENSE="LGPL-2.1 LGPL-2.1+"
46 +SLOT="0"
47 +
48 +BDEPEND="
49 + dev-qt/linguist-tools:5
50 + >=dev-util/lxqt-build-tools-0.8.0
51 + virtual/pkgconfig
52 +"
53 +DEPEND="
54 + >=dev-libs/libqtxdg-3.3.1
55 + dev-qt/qtcore:5
56 + dev-qt/qtdbus:5
57 + dev-qt/qtgui:5
58 + dev-qt/qtsvg:5
59 + dev-qt/qtwidgets:5
60 + dev-qt/qtx11extras:5
61 + kde-frameworks/kidletime:5
62 + kde-frameworks/solid:5
63 + =lxqt-base/liblxqt-${LXQTPV}
64 + =lxqt-base/lxqt-globalkeys-${LXQTPV}
65 + sys-power/upower
66 +"
67 +RDEPEND="${DEPEND}
68 + !lxqt-base/lxqt-l10n
69 +"