unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7
@ 2022-03-04  9:55 Yovan Naumovski via Guix-patches via
  2022-03-04 10:01 ` [bug#54243] [PATCH core-updates 1/5] gnu: libdrm: Update to 2.4.110 Yovan Naumovski via Guix-patches via
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Yovan Naumovski via Guix-patches via @ 2022-03-04  9:55 UTC (permalink / raw)
  To: 54243

Hi,

Here's a series of patches to update sway and some of its required
dependencies to the latest version (1.7). I'm submitting the patches
for the core-updates branch because of the very large number of
packages depending on wayland.

Best regards,
Yovan.




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

* [bug#54243] [PATCH core-updates 1/5] gnu: libdrm: Update to 2.4.110
  2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
@ 2022-03-04 10:01 ` Yovan Naumovski via Guix-patches via
  2022-03-04 10:03 ` [bug#54243] [PATCH core-updates 2/5] gnu: wayland: Update to 1.20.0 Yovan Naumovski via Guix-patches via
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Yovan Naumovski via Guix-patches via @ 2022-03-04 10:01 UTC (permalink / raw)
  To: 54243

---
 gnu/packages/xdisorg.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index ec995c3496..8df1ee1d80 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -53,6 +53,7 @@
 ;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
 ;;; Copyright © 2021 jgart <jgart@dismail.de>
 ;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
+;;; Copyright © 2022 Yovan Naumovski <yovan@gorski.stream>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -622,7 +623,7 @@ (define-public pixman
 (define-public libdrm
   (package
     (name "libdrm")
-    (version "2.4.107")
+    (version "2.4.110")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -630,7 +631,7 @@ (define-public libdrm
                     version ".tar.xz"))
               (sha256
                (base32
-
"127qf1rzhaf13vdd75a58v5q34617hvangjlfnlkcdh37gqcwm65"))))
+
"0dwpry9m5l27dlhq48j4bsiqwm0247cxdqwv3b7ddmkynk2f9kpf"))))
(build-system meson-build-system) (arguments
      `(#:configure-flags
-- 
2.34.0




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

* [bug#54243] [PATCH core-updates 2/5] gnu: wayland: Update to 1.20.0
  2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
  2022-03-04 10:01 ` [bug#54243] [PATCH core-updates 1/5] gnu: libdrm: Update to 2.4.110 Yovan Naumovski via Guix-patches via
@ 2022-03-04 10:03 ` Yovan Naumovski via Guix-patches via
  2022-03-04 10:06 ` [bug#54243] [PATCH core-updates 3/5] gnu: wayland-protocols: Update to 1.25 Yovan Naumovski via Guix-patches via
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Yovan Naumovski via Guix-patches via @ 2022-03-04 10:03 UTC (permalink / raw)
  To: 54243

---
 gnu/packages/freedesktop.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 818d9966dd..9ea66b6ef6 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -29,6 +29,7 @@
 ;;; Copyright © 2021 John Kehayias <john.kehayias@protonmail.com>
 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
 ;;; Copyright © 2022 Daniel Meißner
<daniel.meissner-i4k@ruhr-uni-bochum.de> +;;; Copyright © 2022 Yovan
Naumovski <yovan@gorski.stream> ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -956,14 +957,14 @@ (define-public python2-pyxdg
 (define-public wayland
   (package
     (name "wayland")
-    (version "1.19.0")
+    (version "1.20.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
"https://wayland.freedesktop.org/releases/" name "-" version ".tar.xz"))
               (sha256
                (base32
-
"05bd2vphyx8qwa1mhsj1zdaiv4m4v94wrlssrn0lad8d601dkk5s"))))
+
"09c7rpbwavjg4y16mrfa57gk5ix6rnzpvlnv1wp7fnbh9hak985q"))))
(build-system meson-build-system) (outputs '("out" "doc"))
     (arguments
-- 
2.34.0




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

* [bug#54243] [PATCH core-updates 3/5] gnu: wayland-protocols: Update to 1.25
  2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
  2022-03-04 10:01 ` [bug#54243] [PATCH core-updates 1/5] gnu: libdrm: Update to 2.4.110 Yovan Naumovski via Guix-patches via
  2022-03-04 10:03 ` [bug#54243] [PATCH core-updates 2/5] gnu: wayland: Update to 1.20.0 Yovan Naumovski via Guix-patches via
@ 2022-03-04 10:06 ` Yovan Naumovski via Guix-patches via
  2022-03-04 10:08 ` [bug#54243] [PATCH core-updates 4/5] gnu: wlroots: Update to 0.15.1 Yovan Naumovski via Guix-patches via
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Yovan Naumovski via Guix-patches via @ 2022-03-04 10:06 UTC (permalink / raw)
  To: 54243

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

diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 9ea66b6ef6..ab345448c8 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -1022,7 +1022,7 @@ (define-public wayland
 (define-public wayland-protocols
   (package
     (name "wayland-protocols")
-    (version "1.23")
+    (version "1.25")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -1030,7 +1030,7 @@ (define-public wayland-protocols
                     "wayland-protocols-" version ".tar.xz"))
               (sha256
                (base32
-
"0xizccackgwszjhlq7jjiv2z2gwppljx0w32ga91bxlnby8z22kc"))))
+
"0q0laxdvf8p8b7ks2cbpqf6q0rwrjycqrp8pf8rxm86hk5qhzzzi"))))
(build-system meson-build-system) (inputs
      (list wayland))
-- 
2.34.0




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

* [bug#54243] [PATCH core-updates 4/5] gnu: wlroots: Update to 0.15.1
  2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
                   ` (2 preceding siblings ...)
  2022-03-04 10:06 ` [bug#54243] [PATCH core-updates 3/5] gnu: wayland-protocols: Update to 1.25 Yovan Naumovski via Guix-patches via
@ 2022-03-04 10:08 ` Yovan Naumovski via Guix-patches via
  2022-03-04 10:10 ` [bug#54243] [PATCH core-updates 5/5] gnu: sway: Update to 1.7 Yovan Naumovski via Guix-patches via
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Yovan Naumovski via Guix-patches via @ 2022-03-04 10:08 UTC (permalink / raw)
  To: 54243

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

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 9549b073cf..6eabd2e2c0 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -49,6 +49,7 @@
 ;;; Copyright © 2021 jgart <jgart@dismail.de>
 ;;; Copyright © 2021 Disseminate Dissent
<disseminatedissent@protonmail.com> ;;; Copyright © 2022 John Kehayias
<john.kehayias@protonmail.com> +;;; Copyright © 2022 Yovan Naumovski
<yovan@gorski.stream> ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1529,16 +1530,16 @@ (define-public polybar
 (define-public wlroots
   (package
     (name "wlroots")
-    (version "0.14.1")
+    (version "0.15.1")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/swaywm/wlroots")
+             (url "https://gitlab.freedesktop.org/wlroots/wlroots")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32
"1sshp3lvlkl1i670kxhwsb4xzxl8raz6769kqvgmxzcb63ns9ay1"))))
+        (base32
"00s73nhi3sc48l426jdlqwpclg41kx1hv0yk4yxhbzw19gqpfm1h"))))
(build-system meson-build-system) (arguments
      `(#:phases
-- 
2.34.0




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

* [bug#54243] [PATCH core-updates 5/5] gnu: sway: Update to 1.7
  2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
                   ` (3 preceding siblings ...)
  2022-03-04 10:08 ` [bug#54243] [PATCH core-updates 4/5] gnu: wlroots: Update to 0.15.1 Yovan Naumovski via Guix-patches via
@ 2022-03-04 10:10 ` Yovan Naumovski via Guix-patches via
  2022-03-07  9:51 ` [bug#54243] Possible duplicate of 53581 phodina via Guix-patches via
  2022-08-03  6:30 ` [bug#54243] Closing 54243 kiasoc5 via Guix-patches via
  6 siblings, 0 replies; 9+ messages in thread
From: Yovan Naumovski via Guix-patches via @ 2022-03-04 10:10 UTC (permalink / raw)
  To: 54243

---
 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 6eabd2e2c0..ce51ff3e92 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1576,7 +1576,7 @@ (define-public wlroots
 (define-public sway
   (package
     (name "sway")
-    (version "1.6.1")
+    (version "1.7")
     (source
      (origin
        (method git-fetch)
@@ -1585,7 +1585,7 @@ (define-public sway
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32
"0j4sdbsrlvky1agacc0pcz9bwmaxjmrapjnzscbd2i0cria2fc5j"))))
+        (base32
"0ss3l258blyf2d0lwd7pi7ga1fxfj8pxhag058k7cmjhs3y30y5l"))))
(build-system meson-build-system) (arguments
      `(#:phases
-- 
2.34.0




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

* [bug#54243] Possible duplicate of 53581
  2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
                   ` (4 preceding siblings ...)
  2022-03-04 10:10 ` [bug#54243] [PATCH core-updates 5/5] gnu: sway: Update to 1.7 Yovan Naumovski via Guix-patches via
@ 2022-03-07  9:51 ` phodina via Guix-patches via
  2022-08-03  6:30 ` [bug#54243] Closing 54243 kiasoc5 via Guix-patches via
  6 siblings, 0 replies; 9+ messages in thread
From: phodina via Guix-patches via @ 2022-03-07  9:51 UTC (permalink / raw)
  To: 54243@debbugs.gnu.org

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

Hi Yovan,

I've noticed you submitted similar set of patches as I did about 1+month ago.

-----
Petr

[-- Attachment #2: Type: text/html, Size: 192 bytes --]

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

* [bug#54243] Closing 54243
  2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
                   ` (5 preceding siblings ...)
  2022-03-07  9:51 ` [bug#54243] Possible duplicate of 53581 phodina via Guix-patches via
@ 2022-08-03  6:30 ` kiasoc5 via Guix-patches via
  2022-08-03  9:32   ` Maxime Devos
  6 siblings, 1 reply; 9+ messages in thread
From: kiasoc5 via Guix-patches via @ 2022-08-03  6:30 UTC (permalink / raw)
  To: 54243

close 54243

superseded by https://issues.guix.gnu.org/53581 which has been pushed
to core-updates




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

* [bug#54243] Closing 54243
  2022-08-03  6:30 ` [bug#54243] Closing 54243 kiasoc5 via Guix-patches via
@ 2022-08-03  9:32   ` Maxime Devos
  0 siblings, 0 replies; 9+ messages in thread
From: Maxime Devos @ 2022-08-03  9:32 UTC (permalink / raw)
  To: kiasoc5, 54243, control


[-- Attachment #1.1.1: Type: text/plain, Size: 286 bytes --]

close 54243
thanks

On 03-08-2022 08:30, kiasoc5 via Guix-patches via wrote:
> close 54243
>
> superseded by https://issues.guix.gnu.org/53581 which has been pushed
> to core-updates

You need to send the mail to control@debbugs.gnu.org to do that. (-:.

Closed,
Maxime.


[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 929 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]

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

end of thread, other threads:[~2022-08-03  9:36 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-04  9:55 [bug#54243] [PATCH core-updates 0/5] sway: Update to 1.7 Yovan Naumovski via Guix-patches via
2022-03-04 10:01 ` [bug#54243] [PATCH core-updates 1/5] gnu: libdrm: Update to 2.4.110 Yovan Naumovski via Guix-patches via
2022-03-04 10:03 ` [bug#54243] [PATCH core-updates 2/5] gnu: wayland: Update to 1.20.0 Yovan Naumovski via Guix-patches via
2022-03-04 10:06 ` [bug#54243] [PATCH core-updates 3/5] gnu: wayland-protocols: Update to 1.25 Yovan Naumovski via Guix-patches via
2022-03-04 10:08 ` [bug#54243] [PATCH core-updates 4/5] gnu: wlroots: Update to 0.15.1 Yovan Naumovski via Guix-patches via
2022-03-04 10:10 ` [bug#54243] [PATCH core-updates 5/5] gnu: sway: Update to 1.7 Yovan Naumovski via Guix-patches via
2022-03-07  9:51 ` [bug#54243] Possible duplicate of 53581 phodina via Guix-patches via
2022-08-03  6:30 ` [bug#54243] Closing 54243 kiasoc5 via Guix-patches via
2022-08-03  9:32   ` Maxime Devos

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