all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#33472] [PATCH 0/2] Update wayland and wayland-protocols to 1.16.
@ 2018-11-23  7:33 Stefan Stefanović
  2018-11-23  7:37 ` [bug#33472] [PATCH 1/2] Update wayland " Stefan Stefanović
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Stefan Stefanović @ 2018-11-23  7:33 UTC (permalink / raw)
  To: 33472

Hello,
Guix.

This is a small patch series meant to update
wayland and wayland-protocols to 1.16.

Stefan.

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

* [bug#33472] [PATCH 1/2] Update wayland to 1.16.
  2018-11-23  7:33 [bug#33472] [PATCH 0/2] Update wayland and wayland-protocols to 1.16 Stefan Stefanović
@ 2018-11-23  7:37 ` Stefan Stefanović
  2018-11-23  7:39 ` [bug#33472] [PATCH 2/2] Update wayland-protocols " Stefan Stefanović
  2018-11-23 18:09 ` bug#33472: [PATCH 0/2] Update wayland and " Marius Bakke
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Stefanović @ 2018-11-23  7:37 UTC (permalink / raw)
  To: 33472

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

Update wayland to 1.16.

[-- Attachment #2: 0001-gnu-wayland-Update-to-1.16.patch --]
[-- Type: text/x-patch, Size: 1188 bytes --]

From b889daa9b98e8d2b2352a190a0187ad81021b2d1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Stefanovi=C4=87?= <stefanx2ovic@gmail.com>
Date: Fri, 23 Nov 2018 08:26:10 +0100
Subject: [PATCH 1/2] gnu: wayland: Update to 1.16.

* gnu/packages/freedesktop.scm (wayland): Update to 1.16.
---
 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 14980b2ed..c294663fb 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -445,14 +445,14 @@ Python.")
 (define-public wayland
   (package
     (name "wayland")
-    (version "1.15.0")
+    (version "1.16.0")
     (source (origin
               (method url-fetch)
               (uri (string-append "https://wayland.freedesktop.org/releases/"
                                   name "-" version ".tar.xz"))
               (sha256
                (base32
-                "1c5fnys8hi71cnzjv5k7j0r8gx80p0yyqlrpmn06mmarhnxvwgzb"))))
+                "1xajhxad43izq9f7sbww1hlg42nayijy8xnp21kgpk09c6sw4wjf"))))
     (build-system gnu-build-system)
     (arguments
      `(#:parallel-tests? #f))
-- 
2.19.2


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

* [bug#33472] [PATCH 2/2] Update wayland-protocols to 1.16.
  2018-11-23  7:33 [bug#33472] [PATCH 0/2] Update wayland and wayland-protocols to 1.16 Stefan Stefanović
  2018-11-23  7:37 ` [bug#33472] [PATCH 1/2] Update wayland " Stefan Stefanović
@ 2018-11-23  7:39 ` Stefan Stefanović
  2018-11-23 18:09 ` bug#33472: [PATCH 0/2] Update wayland and " Marius Bakke
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Stefanović @ 2018-11-23  7:39 UTC (permalink / raw)
  To: 33472

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

Update wayland-protocols.

[-- Attachment #2: 0002-gnu-wayland-protocols-Update-to-1.16.patch --]
[-- Type: text/x-patch, Size: 1337 bytes --]

From 0089f85d86b3ded06e49b2aaea74504cc73ebe48 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Stefanovi=C4=87?= <stefanx2ovic@gmail.com>
Date: Fri, 23 Nov 2018 08:27:41 +0100
Subject: [PATCH 2/2] gnu: wayland-protocols: Update to 1.16.

* gnu/packages/freedesktop.scm (wayland-protocols): Update to 1.16.
---
 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 c294663fb..1d9a5920a 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -481,7 +481,7 @@ applications, X servers (rootless or fullscreen) or other display servers.")
 (define-public wayland-protocols
   (package
     (name "wayland-protocols")
-    (version "1.15")
+    (version "1.16")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -489,7 +489,7 @@ applications, X servers (rootless or fullscreen) or other display servers.")
                     "wayland-protocols-" version ".tar.xz"))
               (sha256
                (base32
-                "1qlyf9cllr2p339xxplznh023qcwj5iisp02ikx7ps349dx75fys"))))
+                "1icqikvhgv9kcf8lcqml3w9fb8q3igr4c3471jb6mlyw3yaqa53b"))))
     (build-system gnu-build-system)
     (inputs
      `(("wayland" ,wayland)))
-- 
2.19.2


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

* bug#33472: [PATCH 0/2] Update wayland and wayland-protocols to 1.16.
  2018-11-23  7:33 [bug#33472] [PATCH 0/2] Update wayland and wayland-protocols to 1.16 Stefan Stefanović
  2018-11-23  7:37 ` [bug#33472] [PATCH 1/2] Update wayland " Stefan Stefanović
  2018-11-23  7:39 ` [bug#33472] [PATCH 2/2] Update wayland-protocols " Stefan Stefanović
@ 2018-11-23 18:09 ` Marius Bakke
  2 siblings, 0 replies; 4+ messages in thread
From: Marius Bakke @ 2018-11-23 18:09 UTC (permalink / raw)
  To: Stefan Stefanović, 33472-done

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

Stefan Stefanović <stefanx2ovic@gmail.com> writes:

> Hello,
> Guix.
>
> This is a small patch series meant to update
> wayland and wayland-protocols to 1.16.

Pushed to the 'staging' branch, thank you!

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

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

end of thread, other threads:[~2018-11-23 18:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-23  7:33 [bug#33472] [PATCH 0/2] Update wayland and wayland-protocols to 1.16 Stefan Stefanović
2018-11-23  7:37 ` [bug#33472] [PATCH 1/2] Update wayland " Stefan Stefanović
2018-11-23  7:39 ` [bug#33472] [PATCH 2/2] Update wayland-protocols " Stefan Stefanović
2018-11-23 18:09 ` bug#33472: [PATCH 0/2] Update wayland and " Marius Bakke

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.