[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/19: gnu: baobab: Update to 44.0.
From: |
guix-commits |
Subject: |
04/19: gnu: baobab: Update to 44.0. |
Date: |
Thu, 7 Sep 2023 14:33:58 -0400 (EDT) |
lilyp pushed a commit to branch gnome-team
in repository guix.
commit f29be169fbd994b5e8a5f62e942e09e2847af745
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Sun Aug 20 09:01:21 2023 +0200
gnu: baobab: Update to 44.0.
* gnu/packages/gnome.scm (baobab): Update to 44.0.
[arguments]: Add ‘skip-gtk-update-icon-cache’ phase.
[native-inputs]: Remove gtk+:bin.
[inputs]: Remove libhandy.
---
gnu/packages/gnome.scm | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 90946716b3..557a22cad2 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -9693,7 +9693,7 @@ files.")
(define-public baobab
(package
(name "baobab")
- (version "42.0")
+ (version "44.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -9702,24 +9702,28 @@ files.")
name "-" version ".tar.xz"))
(sha256
(base32
- "1p2hg8qxbvdfax9z4qjhdsxia93zrsdq58krx8zjnn5ipbkan6jb"))))
+ "1h5zl7pvpp8yryi7j0cjzy1k89vlphdmfv0jr1l4bmr3j6xn6nw4"))))
(build-system meson-build-system)
(arguments
- '(#:glib-or-gtk? #t))
+ '(#:glib-or-gtk? #t
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'skip-gtk-update-icon-cache
+ ;; Don't create 'icon-theme.cache'.
+ (lambda _
+ (substitute* "meson.build"
+ (("gtk_update_icon_cache: true")
+ "gtk_update_icon_cache: false")))))))
(native-inputs
(list desktop-file-utils ;for update-desktop-database
gettext-minimal
`(,glib "bin")
- `(,gtk+ "bin") ;for gtk-update-icon-cache
itstool
libxml2
pkg-config
python
vala))
- (inputs
- (list gtk
- libadwaita
- libhandy))
+ (inputs (list gtk libadwaita))
(synopsis "Disk usage analyzer for GNOME")
(description
"Baobab (Disk Usage Analyzer) is a graphical application to analyse disk
- branch gnome-team updated (baf5b07454 -> 965e2d6eb9), guix-commits, 2023/09/07
- 01/19: gnu: gcr: Update to 4.0.0., guix-commits, 2023/09/07
- 04/19: gnu: baobab: Update to 44.0.,
guix-commits <=
- 05/19: gnu: gnome-desktop: Update to 44.0., guix-commits, 2023/09/07
- 06/19: gnu: gnome-session: Update to 44.0., guix-commits, 2023/09/07
- 03/19: gnu: mutter: Update to 44.3., guix-commits, 2023/09/07
- 07/19: gnu: gnome-settings-daemon: Update to 44.1., guix-commits, 2023/09/07
- 10/19: gnu: gnome-clocks: Update to 44.0., guix-commits, 2023/09/07
- 13/19: gnu: gnome-autoar: Update to 0.4.4., guix-commits, 2023/09/07
- 11/19: gnu: gnome-calendar: Update to 44.1., guix-commits, 2023/09/07
- 08/19: gnu: gdm: Update to 44.1., guix-commits, 2023/09/07
- 14/19: gnu: tracker: Update to 3.5.3., guix-commits, 2023/09/07
- 19/19: gnu: gnome-console: Update to 44.4., guix-commits, 2023/09/07