* [bug#75155] [PATCH 0/3] Update labwc to 0.8.2 and some related changes
@ 2024-12-28 6:00 Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 1/3] gnu: wlroots: Update to 0.18.2 Ahmad Draidi via Guix-patches via
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2024-12-28 6:00 UTC (permalink / raw)
To: 75155; +Cc: Ahmad Draidi
Hello Guix,
Labwc 0.8.2 mandates wlroots 0.18.1, so we update to latest. We also add
libsfdo, which is a new dependency.
Ahmad Draidi (3):
gnu: wlroots: Update to 0.18.2.
gnu: Add libsfdo.
gnu: labwc: Update to 0.8.2.
gnu/packages/freedesktop.scm | 20 ++++++++++++++++++++
gnu/packages/wm.scm | 12 +++++++-----
2 files changed, 27 insertions(+), 5 deletions(-)
base-commit: 3a8c20408f0078a580d27f74bc69b5a1069a003b
--
2.47.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#75155] [PATCH 1/3] gnu: wlroots: Update to 0.18.2.
2024-12-28 6:00 [bug#75155] [PATCH 0/3] Update labwc to 0.8.2 and some related changes Ahmad Draidi via Guix-patches via
@ 2024-12-28 6:06 ` Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 2/3] gnu: Add libsfdo Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 3/3] gnu: labwc: Update to 0.8.2 Ahmad Draidi via Guix-patches via
2 siblings, 0 replies; 4+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2024-12-28 6:06 UTC (permalink / raw)
To: 75155; +Cc: Ahmad Draidi
* gnu/packages/wm.scm (wlroots): Update to 0.18.2.
Change-Id: I3383c6be410e3a18b0a4ac18abd9e9d8210520f2
---
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 580b33f4be..8da82e6411 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -1858,7 +1858,7 @@ (define-public polybar
(define-public wlroots
(package
(name "wlroots")
- (version "0.18.0")
+ (version "0.18.2")
(source
(origin
(method git-fetch)
@@ -1867,7 +1867,7 @@ (define-public wlroots
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "13avi2805wrfkghgc7ar273p61svmm85k3g3hg9bf2gaxsz6f91f"))))
+ (base32 "1l1c4m8m1h8rl00y9yi6qjma5m3lhai9hqv5578q69yg2dcwraxw"))))
(build-system meson-build-system)
(arguments
`(#:phases
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#75155] [PATCH 2/3] gnu: Add libsfdo.
2024-12-28 6:00 [bug#75155] [PATCH 0/3] Update labwc to 0.8.2 and some related changes Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 1/3] gnu: wlroots: Update to 0.18.2 Ahmad Draidi via Guix-patches via
@ 2024-12-28 6:06 ` Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 3/3] gnu: labwc: Update to 0.8.2 Ahmad Draidi via Guix-patches via
2 siblings, 0 replies; 4+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2024-12-28 6:06 UTC (permalink / raw)
To: 75155; +Cc: Ahmad Draidi
* gnu/packages/freedesktop.scm (libsfdo): New variable.
Change-Id: I458dc579294326cf9e867b8d9e8f307212ae358e
---
gnu/packages/freedesktop.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index 721a0d4c38..1ee9f3cc6d 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -361,6 +361,26 @@ (define-public libglib-testing
(home-page "https://gitlab.gnome.org/pwithnall/libglib-testing")
(license license:lgpl2.1+)))
+(define-public libsfdo
+ (package
+ (name "libsfdo")
+ (version "0.1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.freedesktop.org/vyivel/libsfdo")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1fi9hlg9ms8sszb0ylx4v0q49265vbsix455x64nkvklh049yc7n"))))
+ (build-system meson-build-system)
+ (home-page "https://gitlab.freedesktop.org/vyivel/libsfdo")
+ (synopsis "Implementation of some of the freedesktop.org specifications")
+ (description "libsfdo is a collection of libraries which implement
+some of the freedesktop.org specifications.")
+ (license license:bsd-2)))
+
(define-public libliftoff
(package
(name "libliftoff")
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#75155] [PATCH 3/3] gnu: labwc: Update to 0.8.2.
2024-12-28 6:00 [bug#75155] [PATCH 0/3] Update labwc to 0.8.2 and some related changes Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 1/3] gnu: wlroots: Update to 0.18.2 Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 2/3] gnu: Add libsfdo Ahmad Draidi via Guix-patches via
@ 2024-12-28 6:06 ` Ahmad Draidi via Guix-patches via
2 siblings, 0 replies; 4+ messages in thread
From: Ahmad Draidi via Guix-patches via @ 2024-12-28 6:06 UTC (permalink / raw)
To: 75155; +Cc: Ahmad Draidi
* gnu/packages/wm.scm (labwc): Update to 0.8.2.
[inputs]: Replace wlroots-0.17 with wlroots, add libliftoff and libsfdo.
Change-Id: I72905d5a9e4252dc709ae0f0bcacdb129d754840
---
gnu/packages/wm.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 8da82e6411..9814b4e2c7 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -3456,7 +3456,7 @@ (define-public libucl
(define-public labwc
(package
(name "labwc")
- (version "0.7.4")
+ (version "0.8.2")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -3465,7 +3465,7 @@ (define-public labwc
(file-name (git-file-name name version))
(sha256
(base32
- "0xwgbqv0ablcjaq77c98m4rpgfylr1mja081ay9lccpjqycgbhgc"))))
+ "1j2fv64yz77rfa003b89q0gfri7pbqvjp27wg8ri7x3hfkxrbxvn"))))
(build-system meson-build-system)
(native-inputs
(list pkg-config gettext-minimal scdoc))
@@ -3473,10 +3473,12 @@ (define-public labwc
(list cairo
glib
(librsvg-for-system)
+ libliftoff
+ libsfdo
libxcb
libxml2
pango
- wlroots-0.17))
+ wlroots))
(home-page "https://labwc.github.io")
(synopsis "Window-stacking compositor for Wayland")
(description
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-28 6:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-28 6:00 [bug#75155] [PATCH 0/3] Update labwc to 0.8.2 and some related changes Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 1/3] gnu: wlroots: Update to 0.18.2 Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 2/3] gnu: Add libsfdo Ahmad Draidi via Guix-patches via
2024-12-28 6:06 ` [bug#75155] [PATCH 3/3] gnu: labwc: Update to 0.8.2 Ahmad Draidi via Guix-patches via
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.