From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/sfwbar/
Date: Wed, 29 Mar 2023 06:56:22 +0000 (UTC) [thread overview]
Message-ID: <1679843931.ea04a57aa5676bdec90a82a99e8f93d114fb0961.flow@gentoo> (raw)
commit: ea04a57aa5676bdec90a82a99e8f93d114fb0961
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Mar 26 15:18:51 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 15:18:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea04a57a
gui-apps/sfwbar: fix deps & use
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
gui-apps/sfwbar/metadata.xml | 21 +++++++------
gui-apps/sfwbar/sfwbar-1.0_beta10-r1.ebuild | 44 ++++++++++++++++++++++++++
gui-apps/sfwbar/sfwbar-1.0_beta10.ebuild | 49 -----------------------------
3 files changed, 56 insertions(+), 58 deletions(-)
diff --git a/gui-apps/sfwbar/metadata.xml b/gui-apps/sfwbar/metadata.xml
index b80b6d90d..08fb0fd94 100644
--- a/gui-apps/sfwbar/metadata.xml
+++ b/gui-apps/sfwbar/metadata.xml
@@ -1,13 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>harley@hosers.org</email>
- <name>Lev Babiev</name>
- </maintainer>
- <upstream>
- <remote-id type="github">LBCrion/sfwbar</remote-id>
- <bugs-to>https://github.com/LBCrion/sfwbar/issues</bugs-to>
- <changelog>https://github.com/LBCrion/sfwbar/releases</changelog>
- </upstream>
+ <maintainer type="person">
+ <email>harley@hosers.org</email>
+ <name>Lev Babiev</name>
+ </maintainer>
+ <use>
+ <flag name="mpd">Add support for Music Player Daemon</flag>
+ </use>
+ <upstream>
+ <remote-id type="github">LBCrion/sfwbar</remote-id>
+ <bugs-to>https://github.com/LBCrion/sfwbar/issues</bugs-to>
+ <changelog>https://github.com/LBCrion/sfwbar/releases</changelog>
+ </upstream>
</pkgmetadata>
diff --git a/gui-apps/sfwbar/sfwbar-1.0_beta10-r1.ebuild b/gui-apps/sfwbar/sfwbar-1.0_beta10-r1.ebuild
new file mode 100644
index 000000000..3caa9228b
--- /dev/null
+++ b/gui-apps/sfwbar/sfwbar-1.0_beta10-r1.ebuild
@@ -0,0 +1,44 @@
+# 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"
+
+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] )
+"
+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
+ )
+
+ meson_src_configure
+}
diff --git a/gui-apps/sfwbar/sfwbar-1.0_beta10.ebuild b/gui-apps/sfwbar/sfwbar-1.0_beta10.ebuild
deleted file mode 100644
index fec47b4de..000000000
--- a/gui-apps/sfwbar/sfwbar-1.0_beta10.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson xdg-utils
-
-DESCRIPTION="S* Floating Window Bar"
-HOMEPAGE="https://github.com/LBCrion/sfwbar"
-SRC_URI="https://github.com/LBCrion/sfwbar/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+mpd +pulse +net +xkb"
-
-DEPEND="
- mpd? ( media-libs/libmpdclient )
- pulse? ( media-libs/libpulse )
- xkb? ( x11-libs/libxkbcommon )
- >=x11-libs/gtk+-3.22.0:3[introspection,wayland]
- gui-libs/gtk-layer-shell
- dev-libs/json-c
- dev-util/wayland-scanner
- virtual/freedesktop-icon-theme
- >=dev-libs/wayland-protocols-1.17
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
- virtual/pkgconfig
-"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature mpd)
- $(meson_feature pulse)
- $(meson_feature net network)
- )
-
- meson_src_configure
-}
-
-pkg_postinst() {
- xdg_icon_cache_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
-}
next reply other threads:[~2023-03-29 6:56 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-29 6:56 Florian Schmaus [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-09 0:53 [gentoo-commits] repo/proj/guru:master commit in: gui-apps/sfwbar/ David Roman
2024-06-25 9:52 David Roman
2024-06-25 9:52 David Roman
2024-05-02 15:42 David Roman
2023-10-03 9:34 David Roman
2023-10-03 9:34 David Roman
2023-08-12 16:31 David Roman
2023-05-12 10:07 Viorel Munteanu
2023-03-29 6:56 Florian Schmaus
2023-03-16 8:41 Florian Schmaus
2023-03-14 6:00 Viorel Munteanu
2022-08-07 9:13 Haelwenn Monnier
2022-02-07 20:35 Arthur Zamarin
2022-02-07 20:35 Arthur Zamarin
2022-01-23 8:17 Florian Schmaus
2022-01-23 8:17 Florian Schmaus
2021-09-20 9:17 Andrew Ammerlaan
2021-09-20 9:17 Andrew Ammerlaan
2021-08-24 19:24 Andrew Ammerlaan
2021-05-25 23:07 Haelwenn Monnier
2021-05-17 19:11 Andrew Ammerlaan
2021-03-25 14:08 Andrew Ammerlaan
2021-01-23 11:49 Michał Górny
2021-01-23 11:49 Michał Górny
2021-01-23 11:49 Michał Górny
2021-01-02 12:13 Andrew Ammerlaan
2021-01-02 12:13 [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-01-02 12:13 ` [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-01-01 13:14 Andrew Ammerlaan
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=1679843931.ea04a57aa5676bdec90a82a99e8f93d114fb0961.flow@gentoo \
--to=flow@gentoo.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