GNU bug report logs - #65279
[PATCH] gnu: waybar: Update to 0.9.20.

Previous Next

Package: guix-patches;

Reported by: dan <i <at> dan.games>

Date: Mon, 14 Aug 2023 02:10:02 UTC

Severity: normal

Tags: patch

Done: Christopher Baines <mail <at> cbaines.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 65279 in the body.
You can then email your comments to 65279 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#65279; Package guix-patches. (Mon, 14 Aug 2023 02:10:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to dan <i <at> dan.games>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 14 Aug 2023 02:10:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: dan <i <at> dan.games>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: waybar: Update to 0.9.20.
Date: Mon, 14 Aug 2023 10:09:16 +0800
* gnu/packages/wm.scm (waybar): Update to 0.9.20.
[arguments]<:configure-flags>: Disable download missing dependencies.
[inputs]: Add libevdev, pipewire and wireplumber.
* gnu/packages/wm.scm (waybar-experimental)
[arguments]<:configure-flags>: Disable download missing dependencies.
---
 gnu/packages/wm.scm | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index ae571965e6..3709c7c7b8 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1894,7 +1894,7 @@ (define-public swaynotificationcenter
 (define-public waybar
   (package
     (name "waybar")
-    (version "0.9.18")
+    (version "0.9.20")
     (source
      (origin
        (method git-fetch)
@@ -1903,22 +1903,27 @@ (define-public waybar
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "11yia2fs5a05jlbrdhxm26c2sgmbj3iwsk3bsqcvjvv3mlsrhxkf"))))
+        (base32 "07h5l7h7wmzqgg7fbp98khrxg2sq2s4ncp4fiiz1yg62r752idy4"))))
     (build-system meson-build-system)
+    (arguments
+     (list #:configure-flags #~(list "--wrap-mode=nodownload")))
     (inputs (list date
                   fmt
                   gtk-layer-shell
                   gtkmm-3
                   jsoncpp
                   libdbusmenu
+                  libevdev
                   libinput-minimal
                   libmpdclient
                   libnl
                   libxml2
+                  pipewire
                   playerctl
                   pulseaudio
                   spdlog
-                  wayland))
+                  wayland
+                  wireplumber))
     (native-inputs
      (list `(,glib "bin") pkg-config scdoc wayland-protocols))
     (home-page "https://github.com/Alexays/Waybar")
@@ -1960,7 +1965,8 @@ (define-public waybar-experimental
     (package/inherit base
       (name "waybar-experimental")
       (arguments
-       (list #:configure-flags #~(list "-Dexperimental=true")))
+       (list #:configure-flags #~(list "-Dexperimental=true"
+                                       "--wrap-mode=nodownload")))
       (synopsis "Waybar with experimental features"))))
 
 (define-public wlr-randr
@@ -3437,3 +3443,4 @@ (define-public velox
       (description "velox is a simple window manager for Wayland based on swc.
 It is inspired by dwm and xmonad.")
       (license license:expat))))
+waybar

base-commit: e7b8edc74490ebd345ca3b518418a59d1d00abe2
-- 
2.41.0





Reply sent to Christopher Baines <mail <at> cbaines.net>:
You have taken responsibility. (Tue, 29 Aug 2023 13:04:02 GMT) Full text and rfc822 format available.

Notification sent to dan <i <at> dan.games>:
bug acknowledged by developer. (Tue, 29 Aug 2023 13:04:02 GMT) Full text and rfc822 format available.

Message #10 received at 65279-done <at> debbugs.gnu.org (full text, mbox):

From: Christopher Baines <mail <at> cbaines.net>
To: dan <i <at> dan.games>
Cc: 65279-done <at> debbugs.gnu.org
Subject: Re: [bug#65279] [PATCH] gnu: waybar: Update to 0.9.20.
Date: Tue, 29 Aug 2023 14:01:04 +0100
[Message part 1 (text/plain, inline)]
dan <i <at> dan.games> writes:

> * gnu/packages/wm.scm (waybar): Update to 0.9.20.
> [arguments]<:configure-flags>: Disable download missing dependencies.
> [inputs]: Add libevdev, pipewire and wireplumber.
> * gnu/packages/wm.scm (waybar-experimental)
> [arguments]<:configure-flags>: Disable download missing dependencies.
> ---
>  gnu/packages/wm.scm | 15 +++++++++++----
>  1 file changed, 11 insertions(+), 4 deletions(-)

...

> @@ -1960,7 +1965,8 @@ (define-public waybar-experimental
>      (package/inherit base
>        (name "waybar-experimental")
>        (arguments
> -       (list #:configure-flags #~(list "-Dexperimental=true")))
> +       (list #:configure-flags #~(list "-Dexperimental=true"
> +                                       "--wrap-mode=nodownload")))
>        (synopsis "Waybar with experimental features"))))

Here I've changed this to the following:

+       (substitute-keyword-arguments (package-arguments base)
+         ((#:configure-flags flags '())
+          #~(cons "-Dexperimental=true"
+                  #$flags))))

So now waybar-experimental will automatically inherit the configure
flags of waybar.

> @@ -3437,3 +3443,4 @@ (define-public velox
>        (description "velox is a simple window manager for Wayland based on swc.
>  It is inspired by dwm and xmonad.")
>        (license license:expat))))
> +waybar

I've removed this line and pushed to master as
005da27028ebab8998ce54c88683d809b3ceaf62.

Thanks,

Chris
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Wed, 27 Sep 2023 11:24:14 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 226 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.