diff options
author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-23 11:47:15 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim@guixotic.coop> | 2025-07-23 11:49:16 +0900 |
commit | f06eecec996b4af593fe6ee14fbb2e2ffe0829c1 (patch) | |
tree | 8bff74d0af7b4ed290a4e0001bc471fc456229bb | |
parent | b156b0436485cad0ee004c7007e6e7c0a21e9652 (diff) |
gnu: dia: Update to 0.97.3-6.c99c6e2, reinstating tests.
* gnu/packages/gnome.scm (dia): Update to 0.97.3-6.c99c6e2.
[#:tests?]: Delete.
Change-Id: Ia38098505521eab9efda462299fbd9131978d102
-rw-r--r-- | gnu/packages/gnome.scm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 8e9ec6f1b3..3a02945f11 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -39,7 +39,7 @@ ;;; Copyright © 2019, 2024, 2025 Giacomo Leidi <goodoldpaul@autistici.org> ;;; Copyright © 2019 Jelle Licht <jlicht@fsfe.org> ;;; Copyright © 2019 Jonathan Frederickson <jonathan@terracrypt.net> -;;; Copyright © 2019-2025 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2019-2025 Maxim Cournoyer <maxim@guixotic.coop> ;;; Copyright © 2019, 2020 Martin Becze <mjbecze@riseup.net> ;;; Copyright © 2019 David Wilson <david@daviwil.com> ;;; Copyright © 2019, 2020 Raghav Gururajan <raghavgururajan@disroot.org> @@ -2036,8 +2036,8 @@ and system administrators.") (define-public dia ;; There are no recent releases; use the latest commit from the master ;; branch. - (let ((commit "ac4954a1f5ab5bfbde77534daa05cf4495c0b5e6") - (revision "5")) + (let ((commit "c99c6e2c85ce28e82a89384a83800d6efb91dfb1") + (revision "6")) (package (name "dia") (version (git-version "0.97.3" revision commit)) @@ -2049,13 +2049,10 @@ and system administrators.") (commit commit))) (file-name (git-file-name name version)) (sha256 - (base32 "0n2sp0nkgwvwc7va85qqlamlgvkqfbybc29svj4mibaz9qn8hvhm")))) + (base32 "11ak07pw1d9bgrkmpzlk287aphqscdnh4l36vc821v0srkas9335")))) (build-system meson-build-system) (arguments (list - ;; FIXME: 1/5 tests currently fail, possible due to - ;; <https://gitlab.gnome.org/GNOME/dia/-/issues/569>. - #:tests? #f #:phases #~(modify-phases %standard-phases (add-after 'unpack 'disable-gtk-update-icon-cache |