[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
115/181: gnu: devhelp: Update to 41.3.
From: |
guix-commits |
Subject: |
115/181: gnu: devhelp: Update to 41.3. |
Date: |
Tue, 13 Sep 2022 02:26:03 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 7ae62f9ddf725a32dc017a002705da286f1418a9
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Sep 9 07:41:19 2022 -0400
gnu: devhelp: Update to 41.3.
* gnu/packages/gnome.scm (devhelp): Update to 41.3.
[phases]{fix-devhelp-gir-inputs}: Delete phase.
[native-inputs]: Remove labels.
[inputs]: Remove gsettings-desktop-schemas.
(devhelp-with-libsoup2)[arguments]: Remove field.
[inputs]: Express via modify-inputs.
---
gnu/packages/gnome.scm | 39 ++++++++++++---------------------------
1 file changed, 12 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index ec372f8248..996ac37205 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5976,7 +5976,7 @@ both a traditional UI or a modern UI with a
GtkHeaderBar.")
(define-public devhelp
(package
(name "devhelp")
- (version "41.2")
+ (version "41.3")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/" name "/"
@@ -5984,7 +5984,7 @@ both a traditional UI or a modern UI with a
GtkHeaderBar.")
name "-" version ".tar.xz"))
(sha256
(base32
- "1lk0gycjvs6gibhy0zs3ffkrkzrkyl5nkp7n60hgpa6syjq91apc"))))
+ "1rxn6kciyfdhnjrcjyf02cn3rki2xgwb4wrg5plbzjvpqasq66ml"))))
(build-system meson-build-system)
(arguments
`(#:glib-or-gtk? #t
@@ -5994,22 +5994,18 @@ both a traditional UI or a modern UI with a
GtkHeaderBar.")
;; Don't create 'icon-theme.cache'.
(lambda _
(substitute* "build-aux/meson/meson_post_install.py"
- (("gtk-update-icon-cache") "true"))))
- (add-after 'unpack 'fix-devhelp-gir-inputs
- ;; It still mentions webkitgtk 4.0
- (lambda _
- (substitute* "devhelp/meson.build"
- (("'WebKit2-4.0'") "'WebKit2-4.1'")))))))
+ (("gtk-update-icon-cache") "true")))))))
(propagated-inputs
(list gsettings-desktop-schemas))
(native-inputs
- `(("intltool" ,intltool)
- ("itstool" ,itstool)
- ("gobject-introspection" ,gobject-introspection)
- ("glib:bin" ,glib "bin") ; for glib-mkmenus
- ("pkg-config" ,pkg-config)))
+ (list gettext-minimal
+ gobject-introspection
+ `(,glib "bin") ; for glib-mkmenus
+ itstool
+ pkg-config))
(inputs
- (list amtk gsettings-desktop-schemas webkitgtk))
+ (list amtk
+ webkitgtk))
(home-page "https://wiki.gnome.org/Apps/Devhelp")
(synopsis "API documentation browser for GNOME")
(description
@@ -6020,19 +6016,8 @@ throughout GNOME for API documentation).")
(define-public devhelp-with-libsoup2
(package/inherit devhelp
- (arguments
- (substitute-keyword-arguments (package-arguments devhelp)
- ((#:phases phases '%standard-phases)
- `(modify-phases %standard-phases
- (add-after 'unpack 'skip-gtk-update-icon-cache
- ;; Don't create 'icon-theme.cache'.
- (lambda _
- (substitute* "build-aux/meson/meson_post_install.py"
- (("gtk-update-icon-cache") "true"))))))))
- (inputs
- `(("amtk" ,amtk)
- ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)
- ("webkitgtk" ,webkitgtk-with-libsoup2)))))
+ (inputs (modify-inputs (package-inputs devhelp)
+ (replace "webkitgtk" webkitgtk-with-libsoup2)))))
(define-public cogl
(package
- 174/181: gnu: gnome-shell: Use libsoup 3 to fix tests., (continued)
- 174/181: gnu: gnome-shell: Use libsoup 3 to fix tests., guix-commits, 2022/09/13
- 181/181: gnu: gnome-screenshot: Remove meson patch., guix-commits, 2022/09/13
- 110/181: gnu: seahorse: Update to 42.0., guix-commits, 2022/09/13
- 155/181: gnu: setzer: Update to 0.4.8., guix-commits, 2022/09/13
- 153/181: gnu: gnote: Update to 42.1., guix-commits, 2022/09/13
- 167/181: gnu: gnucash: Update to 4.11 and use gexps., guix-commits, 2022/09/13
- 75/181: gnu: gnome-keyring: Update to 42.1 and enable tests., guix-commits, 2022/09/13
- 85/181: gnu: gnome-tweaks: Update to 40.10., guix-commits, 2022/09/13
- 54/181: gnu: libgweather4: Update to 4.1.1 and run tests., guix-commits, 2022/09/13
- 95/181: gnu: gssdp: Update to 1.5.2, guix-commits, 2022/09/13
- 115/181: gnu: devhelp: Update to 41.3.,
guix-commits <=
- 108/181: gnu: libwnck: Update to 40.1., guix-commits, 2022/09/13
- 158/181: gnu: jsonrpc-glib: Update to 3.42.0., guix-commits, 2022/09/13
- 170/181: gnu: Add folks-with-libsoup2., guix-commits, 2022/09/13
- 157/181: gnu: piper: Update to 0.7 and enable tests., guix-commits, 2022/09/13
- 169/181: gnu: libgweather: Use geocode-glib-with-libsoup2., guix-commits, 2022/09/13
- 164/181: gnu: evolution-data-server: Update to 3.45.3., guix-commits, 2022/09/13
- 165/181: gnu: evolution: Update to 3.45.3., guix-commits, 2022/09/13
- 172/181: gnu: chatty: Fix build., guix-commits, 2022/09/13
- 177/181: gnu: Add pkgconf., guix-commits, 2022/09/13
- 180/181: gnu: glade: Remove meson argument., guix-commits, 2022/09/13