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-runner/
Date: Wed, 20 May 2020 23:29:00
Message-Id: 1590017311.0a02905352de861f4106d7cf1a9480d6da7745b1.asturm@gentoo
1 commit: 0a02905352de861f4106d7cf1a9480d6da7745b1
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 27 19:06:27 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed May 20 23:28:31 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a029053
7
8 lxqt-base/lxqt-runner: 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-runner/Manifest | 1 +
15 lxqt-base/lxqt-runner/lxqt-runner-0.15.0.ebuild | 47 +++++++++++++++++++++++++
16 2 files changed, 48 insertions(+)
17
18 diff --git a/lxqt-base/lxqt-runner/Manifest b/lxqt-base/lxqt-runner/Manifest
19 index 90f276fbb41..4bde3482ef8 100644
20 --- a/lxqt-base/lxqt-runner/Manifest
21 +++ b/lxqt-base/lxqt-runner/Manifest
22 @@ -1 +1,2 @@
23 DIST lxqt-runner-0.14.1.tar.xz 223628 BLAKE2B c9f5879bc4c58d0a9cbc19e6efef7fc26bd479e14b7e7109458501372e9b3e251bf87889a1913e6bbc99b68b96b450e71ca57c764aac52afedd35e9904aedd40 SHA512 62d196d37e87bc9154fa2cd9abcb8671277bffdb8673a6531bcb93161944cb8a31298587f8323d79a290292fc73765ea15990106828335879b87029ff1aba28c
24 +DIST lxqt-runner-0.15.0.tar.xz 223996 BLAKE2B 90e078d4a2cb93bfc9f964cf4cdcee73e4d5a390ec1383f623b96f15646dec7cff630d95dcd3613427063213c951325826c69d5bff6ee8b9b3024133ed01166c SHA512 559a5ef627f311ee4894891445a7f1bf70349d7f89ec3eb1d5550f8e87486d695d03fb70a8ec936b074e83c82c29ff26c07ee3edeebbbf8dade2d9a5f4dacdba
25
26 diff --git a/lxqt-base/lxqt-runner/lxqt-runner-0.15.0.ebuild b/lxqt-base/lxqt-runner/lxqt-runner-0.15.0.ebuild
27 new file mode 100644
28 index 00000000000..2d89c16b0f7
29 --- /dev/null
30 +++ b/lxqt-base/lxqt-runner/lxqt-runner-0.15.0.ebuild
31 @@ -0,0 +1,47 @@
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 quick launcher"
40 +HOMEPAGE="https://lxqt.github.io/"
41 +
42 +MY_PV="$(ver_cut 1-2)*"
43 +
44 +if [[ ${PV} = *9999* ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git"
47 +else
48 + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz"
49 + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
50 +fi
51 +
52 +LICENSE="LGPL-2.1 LGPL-2.1+"
53 +SLOT="0"
54 +
55 +BDEPEND="
56 + dev-qt/linguist-tools:5
57 + >=dev-util/lxqt-build-tools-0.7.0
58 + virtual/pkgconfig
59 +"
60 +DEPEND="
61 + >=dev-cpp/muParser-2.2.3:=
62 + >=dev-libs/libqtxdg-3.3.1
63 + dev-qt/qtcore:5
64 + dev-qt/qtgui:5
65 + dev-qt/qtwidgets:5
66 + dev-qt/qtxml:5
67 + kde-frameworks/kwindowsystem:5
68 + =lxqt-base/liblxqt-${MY_PV}
69 + =lxqt-base/lxqt-globalkeys-${MY_PV}
70 +"
71 +RDEPEND="${DEPEND}
72 + !lxqt-base/lxqt-l10n
73 +"
74 +
75 +src_install() {
76 + cmake_src_install
77 + doman man/*.1
78 +}