[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
78/181: gnu: gnome-terminal: Update to 3.44.1.
From: |
guix-commits |
Subject: |
78/181: gnu: gnome-terminal: Update to 3.44.1. |
Date: |
Tue, 13 Sep 2022 02:25:50 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 4f9913513165e8e1c5615686db2f7724d941126a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Mon Sep 5 21:43:13 2022 -0400
gnu: gnome-terminal: Update to 3.44.1.
* gnu/packages/gnome.scm (gnome-terminal): Update to 3.44.1.
[build-system]: Use meson-build-system.
[configure-flags]: Remove argument.
[glib-or-gtk?]: New argument.
[phases]{patch-/bin/true}: Delete phase.
{patch-build-system}: New phase.
[native-inputs]: Delete labels and sort. Replace intltool with
gettext-minimal. Add python.
[inputs]: Sort. Add gnome-shell and nautilus.
---
gnu/packages/gnome.scm | 55 ++++++++++++++++++++++++++++++--------------------
1 file changed, 33 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4509d4e15b..cc8faf7159 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5314,7 +5314,7 @@ more fun.")
(define-public gnome-terminal
(package
(name "gnome-terminal")
- (version "3.40.3")
+ (version "3.44.1")
(source
(origin
(method url-fetch)
@@ -5323,35 +5323,46 @@ more fun.")
name "-" version ".tar.xz"))
(sha256
(base32
- "08hsic7sn32xw12i3j0ard2bhfhp8gmzqm0pa8xzl5l1jhzsmsfb"))))
- (build-system glib-or-gtk-build-system)
+ "0yykb64yi1h0g65q890jf5awjr2sdvfda4xbxnmajcgj3zp20vzv"))))
+ (build-system meson-build-system)
(arguments
- '(#:configure-flags
- (list "--disable-migration" "--disable-search-provider"
- "--without-nautilus-extension")
- #:phases
- (modify-phases %standard-phases
- (add-before 'configure 'patch-/bin/true
- (lambda _
- (substitute* "configure"
- (("/bin/true") (which "true"))))))))
+ (list
+ #:glib-or-gtk? #t
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-build-system
+ ;; The build system looks for a dbus file from gnome-shell in the
+ ;; installation tree of teh package it is configuring...
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "src/meson.build"
+ (("gt_prefix.*'org.gnome.ShellSearchProvider2.xml'")
+ (format #f "'~a'" (search-input-file
+ inputs "share/dbus-1/interfaces/\
+org.gnome.ShellSearchProvider2.xml"))))))
+ (add-before 'install 'disable-gtk-update-icon-cache
+ (lambda _
+ (setenv "DESTDIR" "/"))))))
(native-inputs
- `(("docbook-xsl" ,docbook-xsl)
- ("pkg-config" ,pkg-config)
- ("desktop-file-utils" ,desktop-file-utils)
- ("intltool" ,intltool)
- ("itstool" ,itstool)
- ("libxslt" ,libxslt)
- ("xmllint" ,libxml2)))
+ (list desktop-file-utils
+ docbook-xsl
+ gettext-minimal
+ `(,glib "bin")
+ itstool
+ libxml2
+ libxslt
+ pkg-config
+ python))
(propagated-inputs
(list dconf))
(inputs
- (list gtk+
- vte
+ (list gnome-shell
gnutls
gsettings-desktop-schemas
+ gtk+
+ nautilus ;for extension
`(,util-linux "lib")
- vala))
+ vala
+ vte))
(home-page "https://wiki.gnome.org/Apps/Terminal")
(synopsis "Terminal emulator")
(description
- 53/181: gnu: Add rest-next., (continued)
- 53/181: gnu: Add rest-next., guix-commits, 2022/09/13
- 51/181: gnu: Add gobject-introspection-next., guix-commits, 2022/09/13
- 56/181: gnu: gnome-shell: Update to 42.4., guix-commits, 2022/09/13
- 57/181: gnu: colord-gtk: Update to 0.3.0., guix-commits, 2022/09/13
- 59/181: gnu: gnome-control-center: Update to 42.3., guix-commits, 2022/09/13
- 62/181: gnu: gnome-calendar: Update to 42.2., guix-commits, 2022/09/13
- 63/181: gnu: gnome-initial-setup: Update to 42.2., guix-commits, 2022/09/13
- 71/181: gnu: gnome-contacts: Update to 42.0., guix-commits, 2022/09/13
- 81/181: gnu: tepl: Update to 6.1.2 and enable tests., guix-commits, 2022/09/13
- 82/181: gnu: gedit: Update to 42.2., guix-commits, 2022/09/13
- 78/181: gnu: gnome-terminal: Update to 3.44.1.,
guix-commits <=
- 89/181: gnu: libgda: Update to 6.0.0., guix-commits, 2022/09/13
- 87/181: gnu: gnome-latex: Update to 3.41.2., guix-commits, 2022/09/13
- 92/181: gnu: gnome-shell-extensions: Update to 42.3., guix-commits, 2022/09/13
- 99/181: gnu: cambalache: Update to 0.10.3., guix-commits, 2022/09/13
- 107/181: gnu: rygel: Update to 0.41.2., guix-commits, 2022/09/13
- 105/181: gnu: gupnp-dlna: Update to 0.12.0., guix-commits, 2022/09/13
- 102/181: gnu: gtg: Update to 0.6., guix-commits, 2022/09/13
- 112/181: gnu: vte: Update to 0.69.99., guix-commits, 2022/09/13
- 116/181: gnu: gom: Update to 0.4., guix-commits, 2022/09/13
- 118/181: gnu: gnome-klotski: Update to 3.38.2., guix-commits, 2022/09/13