[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/76: build: glib-or-gtk-build-system: Add gtk 4.0 support.
From: |
guix-commits |
Subject: |
16/76: build: glib-or-gtk-build-system: Add gtk 4.0 support. |
Date: |
Mon, 27 Sep 2021 10:29:55 -0400 (EDT) |
mothacehe pushed a commit to branch wip-gnome40
in repository guix.
commit a6c197f7578bd83abf136fb5ccbeadee3f8379db
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
- branch wip-gnome40 created (now d1b1f04), guix-commits, 2021/09/27
- 01/76: gnu: vulkan-loader: Fix include path location., guix-commits, 2021/09/27
- 02/76: gnu: Add gtk., guix-commits, 2021/09/27
- 04/76: gnu: gnome-backgrounds: Update to 40.1., guix-commits, 2021/09/27
- 06/76: gnu: gnote: Update to 40.2., guix-commits, 2021/09/27
- 08/76: gnu: gnome-menus: Update to 3.36.0., guix-commits, 2021/09/27
- 09/76: gnu: gnome-user-docs: Update to 40.5., guix-commits, 2021/09/27
- 07/76: gnu: gnome-shell-extensions: Update to 40.4., guix-commits, 2021/09/27
- 05/76: gnu: gnome-screenshot: Update to 40.0., guix-commits, 2021/09/27
- 11/76: gnu: gnome-disk-utility: Update to 40.2., guix-commits, 2021/09/27
- 16/76: build: glib-or-gtk-build-system: Add gtk 4.0 support.,
guix-commits <=
- 03/76: gnu: Update gtkmm to 4.2.0, add gtkmm@3, and adjust gtkmm@2., guix-commits, 2021/09/27
- 10/76: gnu: gnome-desktop: Update to 40.4., guix-commits, 2021/09/27
- 17/76: gnu: gnome-system-monitor: Update to 40.1., guix-commits, 2021/09/27
- 18/76: gnu: gnome-calculator: Update to 40.1., guix-commits, 2021/09/27
- 14/76: gnu: Add libadwaita., guix-commits, 2021/09/27
- 15/76: gnu: gnome-todo: Update to 40.1., guix-commits, 2021/09/27
- 26/76: gnu: gnome-boxes: Update to 40.3., guix-commits, 2021/09/27
- 20/76: gnu: gnome-calendar: Update to 40.2., guix-commits, 2021/09/27
- 22/76: gnu: gedit: Update to 40.1., guix-commits, 2021/09/27
- 24/76: gnu: amtk: Update to 5.3.1., guix-commits, 2021/09/27