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: Sat, 22 Jun 2024 18:18:00 +0000 (UTC) [thread overview]
Message-ID: <1719080269.dcb10b1c0bae93b30a905ee530e6b9ddc7678c82.LBCrion@gentoo> (raw)
commit: dcb10b1c0bae93b30a905ee530e6b9ddc7678c82
Author: Lev Babiev <harley <AT> hosers <DOT> org>
AuthorDate: Sat Jun 22 18:17:49 2024 +0000
Commit: Lev Babiev <harley <AT> hosers <DOT> org>
CommitDate: Sat Jun 22 18:17:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dcb10b1c
gui-apps/sfwbar: version bump to 1.0_beta15
Signed-off-by: Lev Babiev <harley <AT> hosers.org>
gui-apps/sfwbar/Manifest | 3 +-
gui-apps/sfwbar/metadata.xml | 1 +
gui-apps/sfwbar/sfwbar-1.0_beta12.ebuild | 46 ----------------------
...-1.0_beta13.ebuild => sfwbar-1.0_beta15.ebuild} | 4 +-
4 files changed, 4 insertions(+), 50 deletions(-)
diff --git a/gui-apps/sfwbar/Manifest b/gui-apps/sfwbar/Manifest
index 2cf110798..50735b837 100644
--- a/gui-apps/sfwbar/Manifest
+++ b/gui-apps/sfwbar/Manifest
@@ -1,3 +1,2 @@
-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
+DIST sfwbar-1.0_beta15.tar.gz 405881 BLAKE2B 01f8009bf5cc4d731749389d550347289ee346a1bd2a943e12845194fccc3133eff6a7418c6164b873f9fc291a9e8a19d144efaa9771c8a1738479aed62c26a9 SHA512 69828e9859c0dda88889195bc0d7932b37f9c09d9ff0f61ba3399821fe6002b6758d28a1231cf14de5e6460777eb5b1ce2871d8d7dc8655c0a38967bb017e8c5
diff --git a/gui-apps/sfwbar/metadata.xml b/gui-apps/sfwbar/metadata.xml
index b4680d837..2bb3793bb 100644
--- a/gui-apps/sfwbar/metadata.xml
+++ b/gui-apps/sfwbar/metadata.xml
@@ -7,6 +7,7 @@
</maintainer>
<use>
<flag name="mpd">Add support for Music Player Daemon</flag>
+ <flag name="pulseaudio">Add support for Pulse Audio sound server</flag>
<flag name="alsa">Add support for ALSA sound server</flag>
<flag name="X">Add support for xkb maps</flag>
</use>
diff --git a/gui-apps/sfwbar/sfwbar-1.0_beta12.ebuild b/gui-apps/sfwbar/sfwbar-1.0_beta12.ebuild
deleted file mode 100644
index cbcc01884..000000000
--- a/gui-apps/sfwbar/sfwbar-1.0_beta12.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# 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"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-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 mpd)
- $(meson_feature pulseaudio pulse)
- $(meson_feature X xkb)
- -Dnetwork=enabled
- -Dbsdctl=disabled
- )
-
- meson_src_configure
-}
diff --git a/gui-apps/sfwbar/sfwbar-1.0_beta13.ebuild b/gui-apps/sfwbar/sfwbar-1.0_beta15.ebuild
similarity index 98%
rename from gui-apps/sfwbar/sfwbar-1.0_beta13.ebuild
rename to gui-apps/sfwbar/sfwbar-1.0_beta15.ebuild
index ba881b495..18edd91f0 100644
--- a/gui-apps/sfwbar/sfwbar-1.0_beta13.ebuild
+++ b/gui-apps/sfwbar/sfwbar-1.0_beta15.ebuild
@@ -8,11 +8,10 @@ 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"
-KEYWORDS="~amd64"
-
IUSE="X mpd pulseaudio alsa"
COMMON_DEPEND="
@@ -44,6 +43,7 @@ src_configure() {
-Didleinhibit=enabled
-Dbluez=enabled
-Dbsdctl=disabled
+ -Diwd=enabled
)
meson_src_configure
next reply other threads:[~2024-06-22 18:18 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-22 18:18 Lev Babiev [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-08 22:07 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/sfwbar/ Lev Babiev
2024-06-23 8:19 Lev Babiev
2024-05-01 15:51 Lucio Sauer
2024-01-02 7:58 Lev Babiev
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=1719080269.dcb10b1c0bae93b30a905ee530e6b9ddc7678c82.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