unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#52937] [PATCH] Update wlr-randr, swayidle, mako
@ 2022-01-01 21:12 kiasoc5--- via Guix-patches via
  2022-01-02  5:49 ` Leo Famulari
  0 siblings, 1 reply; 2+ messages in thread
From: kiasoc5--- via Guix-patches via @ 2022-01-01 21:12 UTC (permalink / raw)
  To: 52937

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

First time contributing, hope this works.

[-- Attachment #2: 0001-gnu-wlr-randr-Update-to-0.2.0.patch --]
[-- Type: text/x-patch, Size: 1536 bytes --]

From 64d9a59b27c99e6272a912fe0d8e0abcac0e18dd Mon Sep 17 00:00:00 2001
From: kiasoc5 <kiasoc5@tutanota.com>
Date: Tue, 28 Dec 2021 16:12:50 -0500
Subject: [PATCH 1/3] gnu: wlr-randr: Update to 0.2.0

---
 gnu/packages/wm.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index c6881154fe..59e00eca80 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1720,20 +1720,20 @@ (define-public waybar
 (define-public wlr-randr
   (package
     (name "wlr-randr")
-    (version "0.1.0")
+    (version "0.2.0")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/emersion/wlr-randr")
+             (url "https://git.sr.ht/~emersion/wlr-randr")
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "10c8zzp78s5bw34vvjhilipa28bsdx3jbyhnxgp8f8kawh3cvgsc"))))
+        (base32 "0d44r4schknfc3g09y0kjbhl62zkynv6hi1z4zqc9ic5fhav3r15"))))
     (build-system meson-build-system)
     (inputs (list wayland))
     (native-inputs (list pkg-config))
-    (home-page "https://github.com/emersion/wlr-randr")
+    (home-page "https://sr.ht/~emersion/wlr-randr")
     (synopsis "Utility to manage Wayland compositor outputs")
     (description "wlr-randr is a utility to manage outputs of a Wayland compositor.")
     (license license:expat))) ; MIT license

base-commit: 2c451db39aabc69bdbf186f412ee6e0b4e180ccb
-- 
2.34.1


[-- Attachment #3: 0002-gnu-mako-Update-to-1.6.patch --]
[-- Type: text/x-patch, Size: 1103 bytes --]

From d1248fa2ca5b992494598c5b95900def924ee098 Mon Sep 17 00:00:00 2001
From: kiasoc5 <kiasoc5@tutanota.com>
Date: Tue, 28 Dec 2021 16:37:04 -0500
Subject: [PATCH 2/3] gnu: mako: Update to 1.6

---
 gnu/packages/wm.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 59e00eca80..cd4c6dfa95 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1741,7 +1741,7 @@ (define-public wlr-randr
 (define-public mako
   (package
     (name "mako")
-    (version "1.4.1")
+    (version "1.6")
     (source
      (origin
        (method git-fetch)
@@ -1750,7 +1750,7 @@ (define-public mako
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0hwvibpnrximb628w9dsfjpi30b5jy7nfkm4d94z5vhp78p43vxh"))))
+        (base32 "0vbx2r01rq3r9zc6kflah44ms1fzf4z857zmq3qxnfsyjdkz1hs5"))))
     (build-system meson-build-system)
     (inputs (list cairo elogind gdk-pixbuf pango wayland))
     (native-inputs (list pkg-config scdoc wayland-protocols))
-- 
2.34.1


[-- Attachment #4: 0003-gnu-swayidle-Update-to-1.7.patch --]
[-- Type: text/x-patch, Size: 1044 bytes --]

From 24aaa93332d97135842471bdc7dc69a8c28a12a5 Mon Sep 17 00:00:00 2001
From: kiasoc5 <kiasoc5@tutanota.com>
Date: Tue, 28 Dec 2021 16:42:00 -0500
Subject: [PATCH 3/3] gnu: swayidle: Update to 1.7

---
 gnu/packages/wm.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index cd4c6dfa95..d4abbc6824 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1586,7 +1586,7 @@ (define-public sway
 (define-public swayidle
   (package
     (name "swayidle")
-    (version "1.6")
+    (version "1.7")
     (source
      (origin
        (method git-fetch)
@@ -1595,7 +1595,7 @@ (define-public swayidle
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1nd3v8r9549lykdwh4krldfl59lzaspmmai5k1icy7dvi6kkr18r"))))
+        (base32 "0ziya8d5pvvxg16jhy4i04pvq11bdvj68gz5q654ar4dldil17nn"))))
     (build-system meson-build-system)
     (arguments
      `(#:configure-flags '("-Dlogind-provider=elogind")))
-- 
2.34.1


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

end of thread, other threads:[~2022-01-02  5:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-01 21:12 [bug#52937] [PATCH] Update wlr-randr, swayidle, mako kiasoc5--- via Guix-patches via
2022-01-02  5:49 ` Leo Famulari

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).