Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/qps/
Date: Tue, 11 Feb 2020 22:47:02
Message-Id: 1581461195.2b19e627a214e957f34c26481f75cdc5520daad0.asturm@gentoo
1 commit: 2b19e627a214e957f34c26481f75cdc5520daad0
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 11 19:51:06 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 11 22:46:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b19e627
7
8 x11-misc/qps: add version 2.0.0
9
10 Closes: https://bugs.gentoo.org/701356
11 Package-Manager: Portage-2.3.88, Repoman-2.3.20
12 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 x11-misc/qps/Manifest | 1 +
16 x11-misc/qps/qps-2.0.0.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
17 2 files changed, 39 insertions(+)
18
19 diff --git a/x11-misc/qps/Manifest b/x11-misc/qps/Manifest
20 index 100aa3ac56c..366df74b432 100644
21 --- a/x11-misc/qps/Manifest
22 +++ b/x11-misc/qps/Manifest
23 @@ -1 +1,2 @@
24 DIST qps-1.10.20.tar.xz 209588 BLAKE2B abf50904a97e9d2f5755bfc25509266de9c4b5a941a1010f93f475f02e8801b970ba112b01727e076c7b232cf23f50f6b8f7d2fe7acf2d8b273686f6a92404f3 SHA512 407130ac12f1e68da3e22543634d101c7a8353363ff1d9c6edbf98ce5d48f149aa5d937985f00109b40bd3cdb0b9a8e9745e845dd921be4aaf119022632bb9ef
25 +DIST qps-2.0.0.tar.xz 211452 BLAKE2B 9b8501f3e57939b33ea54daf58d84cf37b6b66a0c4a32d546691898a82f19b747eba4eef77db6f07ca917da83fabfbee0f7ad9cd146b92e160c886d5f1905a02 SHA512 b5c3d194e97ac61ede43e29f4f12e3775ee8afabb1c1c344d068ea0af85fc8a574667cb6c4b801af620e81da1648b0618e31df7c0d5701cf47625482e8528019
26
27 diff --git a/x11-misc/qps/qps-2.0.0.ebuild b/x11-misc/qps/qps-2.0.0.ebuild
28 new file mode 100644
29 index 00000000000..62d707ac4e1
30 --- /dev/null
31 +++ b/x11-misc/qps/qps-2.0.0.ebuild
32 @@ -0,0 +1,38 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit cmake xdg-utils
39 +
40 +DESCRIPTION="Visual process manager - Qt version of ps/top"
41 +HOMEPAGE="https://lxqt.org/"
42 +SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz"
43 +
44 +LICENSE="GPL-2+ LGPL-2.1+ QPL-1.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
47 +IUSE="debug"
48 +
49 +BDEPEND="
50 + dev-qt/linguist-tools:5
51 + >=dev-util/lxqt-build-tools-0.6.0
52 +"
53 +DEPEND="
54 + dev-qt/qtcore:5
55 + dev-qt/qtdbus:5
56 + dev-qt/qtgui:5
57 + dev-qt/qtwidgets:5
58 + dev-qt/qtx11extras:5
59 +"
60 +RDEPEND="${DEPEND}"
61 +
62 +pkg_postinst() {
63 + xdg_desktop_database_update
64 + xdg_icon_cache_update
65 +}
66 +
67 +pkg_postrm() {
68 + xdg_desktop_database_update
69 + xdg_icon_cache_update
70 +}