Gentoo Archives: gentoo-commits

From: Alexys Jacob <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/i3status/
Date: Mon, 22 Nov 2021 14:01:12
Message-Id: 1637589666.f062f0d8502c37741d04fb2b6167c787b73a9412.ultrabug@gentoo
1 commit: f062f0d8502c37741d04fb2b6167c787b73a9412
2 Author: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 22 14:00:55 2021 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 22 14:01:06 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f062f0d8
7
8 x11-misc/i3status: version bump using meson
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
12
13 x11-misc/i3status/Manifest | 1 +
14 x11-misc/i3status/i3status-2.14.ebuild | 49 ++++++++++++++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/x11-misc/i3status/Manifest b/x11-misc/i3status/Manifest
18 index ab1c2b4c1da3..56f072db9c04 100644
19 --- a/x11-misc/i3status/Manifest
20 +++ b/x11-misc/i3status/Manifest
21 @@ -1 +1,2 @@
22 DIST i3status-2.13.tar.bz2 201409 BLAKE2B e087d69e2df3ae9348cb55739023b2164dfa3543551d173b138c72e574714069d8397716b95e92c4315aa538ea31b33aa73532d6d0f75bbc38d7db54e1f665bc SHA512 6dadff19e53499d169ba4f491e1f821014b4f92fc3c93d7947c85cbbbdeaba538d02bd8ab98fe266a8f80756a287fd5803ec77a8cd874d50082b5cad309875c2
23 +DIST i3status-2.14.tar.xz 68900 BLAKE2B e85019c2a95d50b6bd4adc6bc9dafb85c3a3d8cdaa93602a9c2af54e6818a4e58ad26f47e2c85b38744c12c08f52c4b5c1216e6f3215f8ee2f4152b42a547905 SHA512 10a1235cc314f5fc4dde4e1369a30f49118c95271f636c5803caa52d94d99ad8565b89fcd602d0c8aa7c830a79d3a3bb08e5ac8123cf07cfddc8ef0126b10f80
24
25 diff --git a/x11-misc/i3status/i3status-2.14.ebuild b/x11-misc/i3status/i3status-2.14.ebuild
26 new file mode 100644
27 index 000000000000..a79b79410fec
28 --- /dev/null
29 +++ b/x11-misc/i3status/i3status-2.14.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit fcaps autotools meson
36 +
37 +DESCRIPTION="generates a status bar for dzen2, xmobar or similar"
38 +HOMEPAGE="https://i3wm.org/i3status/"
39 +SRC_URI="https://i3wm.org/${PN}/${P}.tar.xz"
40 +
41 +LICENSE="BSD"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~arm ~riscv ~x86"
44 +IUSE="pulseaudio"
45 +
46 +BDEPEND="virtual/pkgconfig"
47 +RDEPEND="
48 + >=dev-libs/yajl-2.0.2
49 + dev-libs/confuse:=
50 + dev-libs/libnl:3
51 + media-libs/alsa-lib
52 + pulseaudio? ( || ( media-sound/pulseaudio media-sound/apulse[sdk] ) )
53 +"
54 +
55 +DEPEND="
56 + ${RDEPEND}
57 + app-text/asciidoc
58 + app-text/xmlto
59 +"
60 +
61 +PATCHES=(
62 +)
63 +
64 +src_configure() {
65 + local emesonargs=(
66 + $(meson_use pulseaudio pulseaudio)
67 + )
68 + meson_src_configure
69 +}
70 +
71 +pkg_postinst() {
72 + fcaps cap_net_admin usr/bin/${PN}
73 +
74 + elog "${PN} can be used with any of the following programs:"
75 + elog " i3bar (x11-wm/i3)"
76 + elog " x11-misc/xmobar"
77 + elog " x11-misc/dzen"
78 + elog "Please refer to manual: man ${PN}"
79 +}