unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#62288] [PATCH] gnu: Update waybar to 0.9.17.
@ 2023-03-20  5:29 Breno Brandão
  2023-03-22 12:29 ` Maxim Cournoyer
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Breno Brandão @ 2023-03-20  5:29 UTC (permalink / raw)
  To: 62288; +Cc: Breno Brandão

* gnu/packages/wm.scm (waybar): Update to 0.9.17.
---
 gnu/packages/wm.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index b55525b580..741175ffa8 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -131,6 +131,7 @@ (define-module (gnu packages wm)
   #:use-module (gnu packages man)
   #:use-module (gnu packages maths)
   #:use-module (gnu packages mpd)
+  #:use-module (gnu packages music)
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
@@ -1777,7 +1778,7 @@ (define-public swaynotificationcenter
 (define-public waybar
   (package
     (name "waybar")
-    (version "0.9.16")
+    (version "0.9.17")
     (source
      (origin
        (method git-fetch)
@@ -1786,7 +1787,7 @@ (define-public waybar
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "06vwsax8z6vvvav4c1d40nfiljc7h1cla57r43nv8dw86n539ic5"))))
+        (base32 "1709ck7931804mhirnki03cvx60c4dxg668fyz6jpzy8djg5xlxi"))))
     (build-system meson-build-system)
     (inputs (list date
                   fmt
@@ -1798,6 +1799,7 @@ (define-public waybar
                   libmpdclient
                   libnl
                   libxml2
+                  playerctl
                   pulseaudio
                   spdlog
                   wayland))

base-commit: 80d31a7478fa736802c106765662e0b33e2f472e
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#62288] [PATCH] gnu: Update waybar to 0.9.17.
  2023-03-20  5:29 [bug#62288] [PATCH] gnu: Update waybar to 0.9.17 Breno Brandão
@ 2023-03-22 12:29 ` Maxim Cournoyer
  2023-03-23  2:42 ` [bug#62288] [PATCH v2] " Breno Brandão
  2023-03-23  2:42 ` Breno Brandão
  2 siblings, 0 replies; 5+ messages in thread
From: Maxim Cournoyer @ 2023-03-22 12:29 UTC (permalink / raw)
  To: Breno Brandão; +Cc: 62288

Hello!

Breno Brandão <lrabbt@gmail.com> writes:

> * gnu/packages/wm.scm (waybar): Update to 0.9.17.

Thanks!  It seems you forgot to add the "[inputs]: Add playerctl." below
the first line of your change log.  Could you do so and send a v2?

Thanks!

> ---
>  gnu/packages/wm.scm | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
> index b55525b580..741175ffa8 100644
> --- a/gnu/packages/wm.scm
> +++ b/gnu/packages/wm.scm
> @@ -131,6 +131,7 @@ (define-module (gnu packages wm)
>    #:use-module (gnu packages man)
>    #:use-module (gnu packages maths)
>    #:use-module (gnu packages mpd)
> +  #:use-module (gnu packages music)
>    #:use-module (gnu packages pcre)
>    #:use-module (gnu packages perl)
>    #:use-module (gnu packages pkg-config)
> @@ -1777,7 +1778,7 @@ (define-public swaynotificationcenter
>  (define-public waybar
>    (package
>      (name "waybar")
> -    (version "0.9.16")
> +    (version "0.9.17")
>      (source
>       (origin
>         (method git-fetch)
> @@ -1786,7 +1787,7 @@ (define-public waybar
>               (commit version)))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "06vwsax8z6vvvav4c1d40nfiljc7h1cla57r43nv8dw86n539ic5"))))
> +        (base32 "1709ck7931804mhirnki03cvx60c4dxg668fyz6jpzy8djg5xlxi"))))
>      (build-system meson-build-system)
>      (inputs (list date
>                    fmt
> @@ -1798,6 +1799,7 @@ (define-public waybar
>                    libmpdclient
>                    libnl
>                    libxml2
> +                  playerctl
>                    pulseaudio
>                    spdlog
>                    wayland))
>
> base-commit: 80d31a7478fa736802c106765662e0b33e2f472e

-- 
Maxim




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#62288] [PATCH v2] gnu: Update waybar to 0.9.17.
  2023-03-20  5:29 [bug#62288] [PATCH] gnu: Update waybar to 0.9.17 Breno Brandão
  2023-03-22 12:29 ` Maxim Cournoyer
@ 2023-03-23  2:42 ` Breno Brandão
  2023-03-23  2:42 ` Breno Brandão
  2 siblings, 0 replies; 5+ messages in thread
From: Breno Brandão @ 2023-03-23  2:42 UTC (permalink / raw)
  To: 62288

Hi!

Thanks for the heads up, I'm sendind a revised patch.

-- 
Breno




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#62288] [PATCH v2] gnu: Update waybar to 0.9.17.
  2023-03-20  5:29 [bug#62288] [PATCH] gnu: Update waybar to 0.9.17 Breno Brandão
  2023-03-22 12:29 ` Maxim Cournoyer
  2023-03-23  2:42 ` [bug#62288] [PATCH v2] " Breno Brandão
@ 2023-03-23  2:42 ` Breno Brandão
  2023-03-27 15:57   ` Christopher Baines
  2 siblings, 1 reply; 5+ messages in thread
From: Breno Brandão @ 2023-03-23  2:42 UTC (permalink / raw)
  To: 62288; +Cc: Breno Brandão

* gnu/packages/wm.scm (waybar): Update to 0.9.17.
[inputs]: Add playerctl.
---
 gnu/packages/wm.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index e6f593ec27..5c9d49394c 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -131,6 +131,7 @@ (define-module (gnu packages wm)
   #:use-module (gnu packages man)
   #:use-module (gnu packages maths)
   #:use-module (gnu packages mpd)
+  #:use-module (gnu packages music)
   #:use-module (gnu packages pcre)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
@@ -1777,7 +1778,7 @@ (define-public swaynotificationcenter
 (define-public waybar
   (package
     (name "waybar")
-    (version "0.9.16")
+    (version "0.9.17")
     (source
      (origin
        (method git-fetch)
@@ -1786,7 +1787,7 @@ (define-public waybar
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "06vwsax8z6vvvav4c1d40nfiljc7h1cla57r43nv8dw86n539ic5"))))
+        (base32 "1709ck7931804mhirnki03cvx60c4dxg668fyz6jpzy8djg5xlxi"))))
     (build-system meson-build-system)
     (inputs (list date
                   fmt
@@ -1798,6 +1799,7 @@ (define-public waybar
                   libmpdclient
                   libnl
                   libxml2
+                  playerctl
                   pulseaudio
                   spdlog
                   wayland))

base-commit: 5174820753be045ba4fc7cc93da33f4e0b730bc3
-- 
2.39.2





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#62288] [PATCH v2] gnu: Update waybar to 0.9.17.
  2023-03-23  2:42 ` Breno Brandão
@ 2023-03-27 15:57   ` Christopher Baines
  0 siblings, 0 replies; 5+ messages in thread
From: Christopher Baines @ 2023-03-27 15:57 UTC (permalink / raw)
  To: Breno Brandão; +Cc: 62288, 62288-done

[-- Attachment #1: Type: text/plain, Size: 331 bytes --]


Breno Brandão <lrabbt@gmail.com> writes:

> * gnu/packages/wm.scm (waybar): Update to 0.9.17.
> [inputs]: Add playerctl.
> ---
>  gnu/packages/wm.scm | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)

Thanks both, I've pushed this to the master branch as
56bea0f6b88bb70705845711e2d65edfce543110.

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-03-27 15:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-20  5:29 [bug#62288] [PATCH] gnu: Update waybar to 0.9.17 Breno Brandão
2023-03-22 12:29 ` Maxim Cournoyer
2023-03-23  2:42 ` [bug#62288] [PATCH v2] " Breno Brandão
2023-03-23  2:42 ` Breno Brandão
2023-03-27 15:57   ` Christopher Baines

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).