Gentoo Archives: gentoo-commits

From: "Leonardo H. Neumann" <leonardohn@××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/yambar/
Date: Sat, 05 Feb 2022 22:31:53
Message-Id: 1644100284.b180e00024bcc2a4852f9b5ca16d862b23cc3ebc.leonardohn@gentoo
1 commit: b180e00024bcc2a4852f9b5ca16d862b23cc3ebc
2 Author: Leonardo Neumann <leonardo <AT> neumann <DOT> dev <DOT> br>
3 AuthorDate: Sat Feb 5 22:31:24 2022 +0000
4 Commit: Leonardo H. Neumann <leonardohn <AT> null <DOT> net>
5 CommitDate: Sat Feb 5 22:31:24 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b180e000
7
8 gui-apps/yambar: add 1.8.0
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Leonardo Neumann <leonardo <AT> neumann.dev.br>
12
13 gui-apps/yambar/Manifest | 1 +
14 gui-apps/yambar/yambar-1.8.0.ebuild | 64 +++++++++++++++++++++++++++++++++++++
15 2 files changed, 65 insertions(+)
16
17 diff --git a/gui-apps/yambar/Manifest b/gui-apps/yambar/Manifest
18 index 96659f8ce..6b53d51c9 100644
19 --- a/gui-apps/yambar/Manifest
20 +++ b/gui-apps/yambar/Manifest
21 @@ -1,2 +1,3 @@
22 DIST yambar-1.6.2.tar.gz 135455 BLAKE2B 71d5b584bf04a7212ac84d8e0d8cb71c1abd7c7548c5ec998aff480d76afbd09825b059fe642edd4dd2537af6a5b811bd333a45bfa53f6a3a814a2be95eb58b4 SHA512 64a5e983be6dc99feb2f39d06fe265163c3b8f3f23f33a58c386891b63a9c915816cbde22d031473e700e839522c86c53b06f0cce1a57ebdab8ed6aeebe627e1
23 DIST yambar-1.7.0.tar.gz 148762 BLAKE2B a394b588bb1a8c64e149f8f39d6a8056d139cb3518fc15c87db0da7ead9c96ce5d7b9d764a617c4626d9fa574edbda2c0e1e2b11b07741241188c5cd282d5643 SHA512 e34cc808533cf76ff0b95d18346b796b4758271b0a61151e80b33eaa0ce34c2d5a9f1c6671d28f377d1563a7979c5784782b9f2f87a3cb615efb129e89865ad3
24 +DIST yambar-1.8.0.tar.gz 157936 BLAKE2B d9fc01d71c89550c59b470f9bd3de27e44cc5d64f2103f8803c9c2b25c51b5240f54c41041c126df2b606ae011d9fca974723cafb45670eae70ef20bb3f765b6 SHA512 db2c3669162923b4ca2b1f13f50d203de2a0eb6963e6d2bfe8b03e41c7cb4ad9acf6607eef08b6da837c901374c89affb915aa44f2bc2e0eb4694ad91ae66a67
25
26 diff --git a/gui-apps/yambar/yambar-1.8.0.ebuild b/gui-apps/yambar/yambar-1.8.0.ebuild
27 new file mode 100644
28 index 000000000..b624cdc48
29 --- /dev/null
30 +++ b/gui-apps/yambar/yambar-1.8.0.ebuild
31 @@ -0,0 +1,64 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit meson
38 +
39 +if [[ ${PV} != *9999* ]]; then
40 + SRC_URI="https://codeberg.org/dnkl/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 + KEYWORDS="~amd64"
42 + S="${WORKDIR}/${PN}"
43 +else
44 + inherit git-r3
45 + EGIT_REPO_URI="https://codeberg.org/dnkl/${PN}.git"
46 +fi
47 +
48 +DESCRIPTION="Simplistic and highly configurable status panel for X and Wayland"
49 +HOMEPAGE="https://codeberg.org/dnkl/yambar"
50 +LICENSE="MIT"
51 +SLOT="0"
52 +IUSE="wayland X"
53 +REQUIRED_USE="|| ( wayland X )"
54 +
55 +RDEPEND="
56 + =media-libs/fcft-3.0*
57 + dev-libs/json-c
58 + dev-libs/libyaml
59 + media-libs/alsa-lib
60 + media-libs/libmpdclient
61 + virtual/libudev:=
62 + x11-libs/pixman
63 + wayland? ( dev-libs/wayland )
64 + X? (
65 + x11-libs/libxcb:0=[xkb]
66 + x11-libs/xcb-util
67 + x11-libs/xcb-util-cursor
68 + x11-libs/xcb-util-wm
69 + )
70 +"
71 +DEPEND="${RDEPEND}"
72 +BDEPEND="
73 + app-text/scdoc
74 + >=dev-libs/tllist-1.0.1
75 + >=dev-util/meson-0.53.0
76 + virtual/pkgconfig
77 + wayland? (
78 + dev-libs/wayland-protocols
79 + dev-util/wayland-scanner
80 + )
81 +"
82 +
83 +src_configure() {
84 + local emesonargs=(
85 + $(meson_feature wayland backend-wayland)
86 + $(meson_feature X backend-x11)
87 + -Dwerror=false
88 + )
89 + meson_src_configure
90 +}
91 +
92 +src_install() {
93 + meson_src_install
94 + rm -rf "${D}/usr/share/doc/${PN}"
95 +}