Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-apps/qjournalctl/
Date: Mon, 03 Aug 2020 15:08:10
Message-Id: 1596452653.71c9571977827e6d5a52171edc82f883795fbdc5.andrewammerlaan@gentoo
1 commit: 71c9571977827e6d5a52171edc82f883795fbdc5
2 Author: Henrik Pihl <ahvenas <AT> gmail <DOT> com>
3 AuthorDate: Mon Aug 3 11:04:13 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Mon Aug 3 11:04:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71c95719
7
8 sys-apps/qjournalctl: new package
9
10 GUI for journalctl.
11
12 Package-Manager: Portage-3.0.1, Repoman-2.3.23
13 Signed-off-by: Henrik Pihl <ahvenas <AT> gmail.com>
14
15 sys-apps/qjournalctl/Manifest | 1 +
16 sys-apps/qjournalctl/metadata.xml | 12 ++++++++++
17 sys-apps/qjournalctl/qjournalctl-0.6.2.ebuild | 34 +++++++++++++++++++++++++++
18 3 files changed, 47 insertions(+)
19
20 diff --git a/sys-apps/qjournalctl/Manifest b/sys-apps/qjournalctl/Manifest
21 new file mode 100644
22 index 0000000..35cf133
23 --- /dev/null
24 +++ b/sys-apps/qjournalctl/Manifest
25 @@ -0,0 +1 @@
26 +DIST v0.6.2.tar.gz 43669 BLAKE2B e93c8d3db61cfc7e51cad876752ad7b5154d333cbc023c0f8793018ec518dd7e48fc8698f23e642df6c37a4d99f3b083b48ec8903826aebc50e1f9ec7c2ef762 SHA512 573e6de8348954a6687eb347d36d6c30b7ee7c2088b62bd4b22fae12ecf1dc563308ce2d7228a71c2747b6cb22081e3adf50dfae6a36c1fd9966f6f40492f2f0
27
28 diff --git a/sys-apps/qjournalctl/metadata.xml b/sys-apps/qjournalctl/metadata.xml
29 new file mode 100644
30 index 0000000..ddd17d3
31 --- /dev/null
32 +++ b/sys-apps/qjournalctl/metadata.xml
33 @@ -0,0 +1,12 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <email>ahvenas@×××××.com</email>
39 + <name>Henrik Pihl</name>
40 + </maintainer>
41 + <longdescription>
42 + A graphical user interface which displays the systemd's journal and
43 + lets the user filter the output without the command line.
44 + </longdescription>
45 +</pkgmetadata>
46
47 diff --git a/sys-apps/qjournalctl/qjournalctl-0.6.2.ebuild b/sys-apps/qjournalctl/qjournalctl-0.6.2.ebuild
48 new file mode 100644
49 index 0000000..a566492
50 --- /dev/null
51 +++ b/sys-apps/qjournalctl/qjournalctl-0.6.2.ebuild
52 @@ -0,0 +1,34 @@
53 +# Copyright 2020 Gentoo Authors
54 +# Distributed under the terms of the GNU General Public License v2
55 +
56 +EAPI=7
57 +
58 +inherit qmake-utils
59 +
60 +DESCRIPTION="Qt-based GUI for systemd's journalctl command"
61 +HOMEPAGE="https://github.com/pentix/qjournalctl"
62 +SRC_URI="https://github.com/pentix/${PN}/archive/v${PV}.tar.gz"
63 +#MY_P="${PN}-v${PV}"
64 +
65 +LICENSE="GPL-3"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~x86"
68 +IUSE=""
69 +DOCS=( "CHANGELOG.md" "README.md" )
70 +
71 +DEPEND="dev-qt/qtcore
72 + dev-qt/qtgui
73 + dev-qt/qtwidgets
74 + net-libs/libssh"
75 +RDEPEND="${DEPEND}"
76 +BDEPEND=""
77 +
78 +src_prepare() {
79 + default
80 + eqmake5
81 +}
82 +
83 +src_install() {
84 + emake INSTALL_ROOT="${D}" install
85 + einstalldocs
86 +}