[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/72: build: glib-or-gtk-build-system: Add gtk 4.0 support.
From: |
guix-commits |
Subject: |
16/72: build: glib-or-gtk-build-system: Add gtk 4.0 support. |
Date: |
Sun, 26 Sep 2021 16:34:15 -0400 (EDT) |
mothacehe pushed a commit to branch wip-gnome40
in repository guix.
commit 2d22108bd3ba9bed611e0e870a268dcea76bc667
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Fri Sep 24 15:26:05 2021 +0000
build: glib-or-gtk-build-system: Add gtk 4.0 support.
* guix/build/glib-or-gtk-build-system.scm (gtk-module-directories): Add gtk
4.0 support.
---
guix/build/glib-or-gtk-build-system.scm | 24 ++++++++++++++++++------
1 file changed, 18 insertions(+), 6 deletions(-)
diff --git a/guix/build/glib-or-gtk-build-system.scm
b/guix/build/glib-or-gtk-build-system.scm
index 8d3c368..9f4cc09 100644
--- a/guix/build/glib-or-gtk-build-system.scm
+++ b/guix/build/glib-or-gtk-build-system.scm
@@ -51,12 +51,24 @@
"Check for the existence of \"libdir/gtk-v.0\" in INPUTS. Return a list
with all found directories."
(let* ((version
- (if (string-match "gtk\\+-3"
- (or (assoc-ref inputs "gtk+")
- (assoc-ref inputs "source")
- "gtk+-3")) ; we default to version 3
- "3.0"
- "2.0"))
+ (cond
+ ((string-match "gtk-4"
+ (or (assoc-ref inputs "gtk")
+ (assoc-ref inputs "source")
+ ""))
+ "4.0")
+ ((string-match "gtk\\+-3"
+ (or (assoc-ref inputs "gtk+")
+ (assoc-ref inputs "source")
+ ""))
+ "3.0")
+ ((string-match "gtk\\+-2"
+ (or (assoc-ref inputs "gtk+")
+ (assoc-ref inputs "source")
+ ""))
+ "2.0")
+ (else
+ "4.0"))) ; We default to version 4.0.
(gtk-module
(lambda (input prev)
(let* ((in (match input
- 03/72: gnu: Update gtkmm to 4.2.0, add gtkmm@3, and adjust gtkmm@2., (continued)
- 03/72: gnu: Update gtkmm to 4.2.0, add gtkmm@3, and adjust gtkmm@2., guix-commits, 2021/09/26
- 02/72: gnu: Add gtk., guix-commits, 2021/09/26
- 04/72: gnu: gnome-backgrounds: Update to 40.1., guix-commits, 2021/09/26
- 05/72: gnu: gnome-screenshot: Update to 40.0., guix-commits, 2021/09/26
- 06/72: gnu: gnote: Update to 40.2., guix-commits, 2021/09/26
- 10/72: gnu: gnome-desktop: Update to 40.4., guix-commits, 2021/09/26
- 12/72: gnu: gnome-font-viewer: Update to 40.0., guix-commits, 2021/09/26
- 13/72: gnu: libportal: Update to 0.4., guix-commits, 2021/09/26
- 14/72: gnu: Add libadwaita., guix-commits, 2021/09/26
- 15/72: gnu: gnome-todo: Update to 40.1., guix-commits, 2021/09/26
- 16/72: build: glib-or-gtk-build-system: Add gtk 4.0 support.,
guix-commits <=
- 17/72: gnu: gnome-system-monitor: Update to 40.1., guix-commits, 2021/09/26
- 18/72: gnu: gnome-calculator: Update to 40.1., guix-commits, 2021/09/26
- 08/72: gnu: gnome-menus: Update to 3.36.0., guix-commits, 2021/09/26
- 09/72: gnu: gnome-user-docs: Update to 40.5., guix-commits, 2021/09/26
- 11/72: gnu: gnome-disk-utility: Update to 40.2., guix-commits, 2021/09/26
- 19/72: gnu: libgweather: Update to 40.0., guix-commits, 2021/09/26
- 20/72: gnu: gnome-calendar: Update to 40.2., guix-commits, 2021/09/26
- 38/72: gnu: vte: Update to 0.64.2., guix-commits, 2021/09/26
- 25/72: gnu: gnome-latex: Update to 3.38.0., guix-commits, 2021/09/26
- 31/72: gnu: orca: Update to 40.0., guix-commits, 2021/09/26