public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lev Babiev" <harley@hosers.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/sfwbar/
Date: Tue,  2 Jan 2024 07:58:37 +0000 (UTC)	[thread overview]
Message-ID: <1704182304.a729196640fe47d881065d8cfd373b06433fa230.LBCrion@gentoo> (raw)

commit:     a729196640fe47d881065d8cfd373b06433fa230
Author:     Lev Babiev <harley <AT> hosers <DOT> org>
AuthorDate: Tue Jan  2 07:58:24 2024 +0000
Commit:     Lev Babiev <harley <AT> hosers <DOT> org>
CommitDate: Tue Jan  2 07:58:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a7291966

gui-apps/sfwbar: version bump

Signed-off-by: Lev Babiev <harley <AT> hosers.org>

 gui-apps/sfwbar/Manifest                 |  1 +
 gui-apps/sfwbar/metadata.xml             |  3 ++
 gui-apps/sfwbar/sfwbar-1.0_beta14.ebuild | 50 ++++++++++++++++++++++++++++++++
 3 files changed, 54 insertions(+)

diff --git a/gui-apps/sfwbar/Manifest b/gui-apps/sfwbar/Manifest
index 908d32d725..2cf1107980 100644
--- a/gui-apps/sfwbar/Manifest
+++ b/gui-apps/sfwbar/Manifest
@@ -1,2 +1,3 @@
 DIST sfwbar-1.0_beta12.tar.gz 362373 BLAKE2B b1adda8a85c90d9459c4716c10eac501062476c4a039be7c8a8ebbcbfe63bb984a6869ed43157d24c02103e996d38e0d55e0d4b0df447f6e838a82bb7b725fc8 SHA512 b817ae0a0a77f13c6347ce50308b716ab30d7fc1e7920bf365ef34b332e07736bb4c08ec260195166b3cdc9cbafccabfd656afa7679f539a0a035d12ad519832
 DIST sfwbar-1.0_beta13.tar.gz 370717 BLAKE2B 1728c823b8f077ed3ddf952138cb7a15c70628df60b9dcdc43abffd7e7b7b39ddee785063b2b144889dbd265cc4851fe953bf31aa0393297b7cf3029019f9224 SHA512 e838374bfabea6cdbb71ee2e8f0e8ea814cb874ecf617b250959aec81da3a18dd178e3257ead06bf41be55a0d1492312979eab11318cbc7da913a0881e247d67
+DIST sfwbar-1.0_beta14.tar.gz 386347 BLAKE2B 1b0549f43fa06578d9fd981c1480040b22f4670c9ed82c04e2b16bdb288468febecc50a7de0688ba8b017b3073c792eea5fadbf051b63d7cf86b659bf4745d83 SHA512 e1a1c9d0a8b3c80c3ef043c6f22bb2b915cdf1f36da6ce306f66754af2a68c2077f4e473bd998d6d6282db5fc0652b7b7bbbe333a39390e7e38129163a398055

diff --git a/gui-apps/sfwbar/metadata.xml b/gui-apps/sfwbar/metadata.xml
index 08fb0fd946..2bf294c4df 100644
--- a/gui-apps/sfwbar/metadata.xml
+++ b/gui-apps/sfwbar/metadata.xml
@@ -7,6 +7,9 @@
 	</maintainer>
 	<use>
 		<flag name="mpd">Add support for Music Player Daemon</flag>
+		<flag name="pulse">Add support for Pulse Audio</flag>
+		<flag name="alsa">Add support for ALSA sound server</flag>
+		<flag name="X">Add support for xkb maps</flag>
 	</use>
 	<upstream>
 		<remote-id type="github">LBCrion/sfwbar</remote-id>

diff --git a/gui-apps/sfwbar/sfwbar-1.0_beta14.ebuild b/gui-apps/sfwbar/sfwbar-1.0_beta14.ebuild
new file mode 100644
index 0000000000..18edd91f0e
--- /dev/null
+++ b/gui-apps/sfwbar/sfwbar-1.0_beta14.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="S* Floating Window Bar"
+HOMEPAGE="https://github.com/LBCrion/sfwbar"
+SRC_URI="https://github.com/LBCrion/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="X mpd pulseaudio alsa"
+
+COMMON_DEPEND="
+	dev-libs/glib:2
+	dev-libs/json-c:=
+	dev-libs/wayland
+	gui-libs/gtk-layer-shell
+	>=x11-libs/gtk+-3.22.0:3[introspection,wayland]
+	X? ( x11-libs/libxkbcommon )
+	mpd? ( media-libs/libmpdclient )
+	pulseaudio? ( media-libs/libpulse[glib] )
+	alsa? ( media-libs/alsa-lib )
+"
+RDEPEND="${COMMON_DEPEND}
+	virtual/freedesktop-icon-theme
+"
+DEPEND="${COMMON_DEPEND}
+	>=dev-libs/wayland-protocols-1.17
+"
+BDEPEND="dev-util/wayland-scanner"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature alsa)
+		$(meson_feature mpd)
+		$(meson_feature pulseaudio pulse)
+		$(meson_feature X xkb)
+		-Dnetwork=enabled
+		-Didleinhibit=enabled
+		-Dbluez=enabled
+		-Dbsdctl=disabled
+		-Diwd=enabled
+	)
+
+	meson_src_configure
+}


             reply	other threads:[~2024-01-02  7:58 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-02  7:58 Lev Babiev [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-06-23  8:19 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/sfwbar/ Lev Babiev
2024-06-22 18:18 Lev Babiev
2024-05-01 15:51 Lucio Sauer
2023-10-02 20:51 Lev Babiev
2023-10-02 19:58 Lev Babiev
2023-08-11 18:50 Lev Babiev
2023-05-11 18:09 Lev Babiev
2023-03-26 15:19 Anna Vyalkova
2023-03-26 15:19 Anna Vyalkova
2023-03-14 18:21 Lev Babiev
2023-03-13 18:32 Lev Babiev
2022-11-18 18:44 Lev Babiev
2022-08-03  7:17 Lev Babiev
2022-04-14 20:18 Lev Babiev
2022-04-14 19:43 Lev Babiev
2022-02-06 19:45 Lev Babiev
2022-02-06 16:52 Lev Babiev
2022-01-22 18:33 Lev Babiev
2022-01-22 16:09 Lev Babiev
2021-12-23 19:25 Lev Babiev
2021-12-18 15:02 Lev Babiev
2021-09-19 18:28 Lev Babiev
2021-09-19 12:04 Lev Babiev
2021-08-24 18:16 Lev Babiev
2021-08-21 16:46 Lev Babiev
2021-05-25  8:10 Anna Vyalkova
2021-05-17 17:22 Lev Babiev
2021-03-24 22:22 Lev Babiev
2021-01-23 10:51 Andrew Ammerlaan
2021-01-23  9:34 Lev Babiev
2021-01-22 17:11 Lev Babiev
2021-01-02 12:13 Andrew Ammerlaan
2021-01-01 15:38 Lev Babiev
2020-12-30 20:50 Lev Babiev

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1704182304.a729196640fe47d881065d8cfd373b06433fa230.LBCrion@gentoo \
    --to=harley@hosers.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox