diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-01 13:56:31 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-06 14:53:17 +0100 |
| commit | a2dc026afbc36b432e3134ff1a2d80481a9c71ef (patch) | |
| tree | 228c72520ced751effe231a07e51f7272102f7e8 /gnu | |
| parent | d3c8ba1bd451f2b4ff04b637f38a4ab4a08ca588 (diff) | |
gnu: gtranslator: Update to 49.0.
* gnu/packages/gnome.scm (gtranslator): Update to 49.0.
[#:phases]<sskip-gtk-update-icon-cache>: Also disable
“update_desktop_database”.
[inputs]: Remove libgda. Replace libhandy with libadwaita.
[propagated-inputs]: Replace gtksourceview-4 with gtksourceview.
[description]: Update.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnome.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 05f0884b723..fb78ff97ee8 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -13404,7 +13404,7 @@ your data.") (define-public gtranslator (package (name "gtranslator") - (version "42.0") + (version "49.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -13412,7 +13412,7 @@ your data.") name "-" version ".tar.xz")) (sha256 (base32 - "0fzi48s3wz9mf6c1ndpkby83bgshgn2116nqjq31n1j3wszvqrra")))) + "1rn1vkf71vkfp2sifdza3v1rs8hv522c37r18b0jfp4xjhh5da7a")))) (build-system meson-build-system) (arguments (list #:build-type "release" ;otherwise it tries to fetch stuff via git @@ -13421,8 +13421,11 @@ your data.") #~(modify-phases %standard-phases (add-after 'unpack 'skip-gtk-update-icon-cache (lambda _ - (substitute* "build-aux/meson/meson_post_install.py" - (("gtk-update-icon-cache") (which "true")))))))) + (substitute* "meson.build" + (("gtk_update_icon_cache: true") + "gtk_update_icon_cache: false") + (("update_desktop_database: true") + "update_desktop_database: false"))))))) (native-inputs (list `(,glib "bin") gettext-minimal @@ -13435,22 +13438,19 @@ your data.") glib gsettings-desktop-schemas gspell - libgda - libhandy + libadwaita libsoup pango)) (propagated-inputs - (list gtksourceview-4)) ; required for source view + (list gtksourceview)) ; required for source view (home-page "https://wiki.gnome.org/Apps/Gtranslator") (synopsis "Translation making program") (description - "gtranslator is a quite comfortable gettext po/po.gz/(g)mo files editor -for the GNOME 3.x platform with many features. It aims to be a very complete -editing environment for translation issues within the GNU gettext/GNOME desktop -world.") + "Gtranslator is a translation file editor for the GNOME desktop +environment. It handles various formats used by gettext and includes +useful to navigate and edit translation messages and comments.") (license license:gpl3+))) - (define-public ocrfeeder (package (name "ocrfeeder") |
