unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Felix Gruber <felgru@posteo.net>
To: 69411@debbugs.gnu.org
Cc: Felix Gruber <felgru@posteo.net>
Subject: [bug#69411] [PATCH v2] gnu: zeal: Update to 0.7.1.
Date: Sun,  9 Jun 2024 15:02:30 +0000	[thread overview]
Message-ID: <a59c6acb691fb38dfbd0cb1c2a100b1e80c32870.1717945350.git.felgru@posteo.net> (raw)
In-Reply-To: <0517714c696bf3d32f66d84d6c8ff3ba41b791d9.1708963090.git.felgru@posteo.net>

* gnu/packages/documentation.scm (zeal): Update to 0.7.1.
  [arguments]: Convert to gexp.
  [inputs]: Use new label-less style.

Change-Id: I9d2851ee303f2e8ebed80b4a1e463aa290bea111
---
 gnu/packages/documentation.scm | 84 +++++++++++++++++-----------------
 1 file changed, 41 insertions(+), 43 deletions(-)

diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm
index 12fbaf1d0c..2a047ba790 100644
--- a/gnu/packages/documentation.scm
+++ b/gnu/packages/documentation.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2021, 2022 Marius Bakke <marius@gnu.org>
 ;;; Copyright © 2022 Maxim Cournoyer <maxim.counoyer@gmail.com>
 ;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2024 Felix Gruber <felgru@posteo.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -410,52 +411,49 @@ (define-public scrollkeeper
     (license license:lgpl2.1+)))
 
 (define-public zeal
-  (let ((commit "1cfa7c637f745be9d98777f06b4f8dec90892bf2")
-        (revision "1"))
-    (package
-      (name "zeal")
-      (version (git-version "0.6.1" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/zealdocs/zeal")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "1m7pp3cwc21x03718vhwfd9j2n8md3hv5dp10s234vcsd755s7a3"))))
-      (build-system qt-build-system)
-      (arguments
-       `(#:tests? #f                    ;no tests
-         #:phases
-         (modify-phases %standard-phases
+  (package
+    (name "zeal")
+    (version "0.7.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/zealdocs/zeal")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1yz9zz18rh1d67w40ib4pna70vqkwa9i9nyj423rjysv5rdj2pzp"))))
+    (build-system qt-build-system)
+    (arguments
+      (list
+       #:tests? #f                    ;no tests
+       #:phases
+       #~(modify-phases %standard-phases
            (add-after 'wrap 'wrap-qt-process-path
-             (lambda* (#:key inputs outputs #:allow-other-keys)
-               (let* ((out (assoc-ref outputs "out"))
-                      (bin (string-append out "/bin/zeal"))
-                      (qt-process-path (string-append
-                                        (assoc-ref inputs "qtwebengine-5")
-                                        "/lib/qt5/libexec/QtWebEngineProcess")))
+             (lambda* (#:key inputs #:allow-other-keys)
+               (let* ((bin (string-append #$output "/bin/zeal"))
+                      (qt-process-path
+                        (search-input-file inputs
+                          "/lib/qt5/libexec/QtWebEngineProcess")))
                  (wrap-program bin
-                   `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))
-                 #t))))))
-      (native-inputs
-       (list extra-cmake-modules pkg-config))
-      (inputs
-       `(("libarchive" ,libarchive)
-         ("sqlite" ,sqlite)
-         ("qtbase" ,qtbase-5)
-         ("qtdeclarative-5" ,qtdeclarative-5)
-         ("qtwebchannel-5" ,qtwebchannel-5)
-         ("qtwebengine-5" ,qtwebengine-5)
-         ("qtquickcontrols-5" ,qtquickcontrols-5)
-         ("qtx11extras" ,qtx11extras)
-         ("xcb-util-keyms" ,xcb-util-keysyms)))
-      (home-page "https://zealdocs.org/")
-      (synopsis "Offline documentation browser inspired by Dash")
-      (description "Zeal is a simple offline documentation browser
+                   `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))))))))
+    (native-inputs
+     (list extra-cmake-modules pkg-config))
+    (inputs
+     (list libarchive
+           sqlite
+           qtbase-5
+           qtdeclarative-5
+           qtwebchannel-5
+           qtwebengine-5
+           qtquickcontrols-5
+           qtx11extras
+           xcb-util-keysyms))
+    (home-page "https://zealdocs.org/")
+    (synopsis "Offline documentation browser inspired by Dash")
+    (description "Zeal is a simple offline documentation browser
 inspired by Dash.")
-      (license license:gpl3+))))
+    (license license:gpl3+)))
 
 (define-public markdeep
   (package

base-commit: bc8a41f4a8d9f1f0525d7bc97c67ed3c8aea3111
-- 
2.43.0





  reply	other threads:[~2024-06-09 15:04 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-26 15:58 [bug#69411] [PATCH] gnu: zeal: Update to 0.7.0 Felix Gruber
2024-06-09 15:02 ` Felix Gruber [this message]
2024-07-06 17:50 ` bug#69411: Close Andreas Enge

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=a59c6acb691fb38dfbd0cb1c2a100b1e80c32870.1717945350.git.felgru@posteo.net \
    --to=felgru@posteo.net \
    --cc=69411@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).