unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Andy Tai <atai@atai.org>
To: 61130@debbugs.gnu.org
Cc: Andy Tai <atai@atai.org>
Subject: [bug#61130] [PATCH v2 2/2] gnu: wxmaxima: Update to 22.12.0
Date: Wed,  1 Feb 2023 22:39:56 -0800	[thread overview]
Message-ID: <20230202063956.398-1-atai@atai.org> (raw)
In-Reply-To: <20230129014243.25510-1-atai@atai.org>

* gnu/packages/maths.scm (wxmaxima): Update to 22.12.0
---
 gnu/packages/maths.scm | 102 +++++++++++++++++++++--------------------
 1 file changed, 52 insertions(+), 50 deletions(-)

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 4640237968..d8e6f0fb32 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -4551,59 +4551,61 @@ (define-public maxima
 (define-public wxmaxima
   (package
     (name "wxmaxima")
-    (version "22.05.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/wxMaxima-developers/wxmaxima")
-             (commit (string-append "Version-" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1va56v9dys97yln4m1z3fz3k90lpy8i3kvcq0v1cbg36689aghm5"))))
+    (version "22.12.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/wxMaxima-developers/wxmaxima")
+                    (commit (string-append "Version-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "12bjadmy2mf7d8v4iszmzckahfcwjzaba8wpbigksh4brvhb4gj5"))))
     (build-system cmake-build-system)
-    (native-inputs
-     `(("gettext" ,gettext-minimal)))
-    (inputs
-     (list wxwidgets
-           maxima
-           ;; Runtime support.
-           adwaita-icon-theme
-           gtk+
-           shared-mime-info))
+    (native-inputs `(("gettext" ,gettext-minimal)))
+    (inputs (list bash-minimal
+                  wxwidgets
+                  maxima
+                  ;; Runtime support.
+                  adwaita-icon-theme
+                  gtk+
+                  shared-mime-info))
     (arguments
-     `(#:tests? #f                      ; tests fail non-deterministically
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'patch-doc-path
-           (lambda _
-             ;; Don't look in share/doc/wxmaxima-xx.xx.x for the
-             ;; documentation.  Only licensing information is placed there by
-             ;; Guix.
-             (substitute* "src/Dirstructure.cpp"
-               (("/doc/wxmaxima-\\%s") "/doc/wxmaxima"))
-             #t))
-         (add-after 'install 'wrap-program
-           (lambda* (#:key inputs outputs #:allow-other-keys)
-             (wrap-program (string-append (assoc-ref outputs "out")
-                                          "/bin/wxmaxima")
-               `("PATH" ":" prefix
-                 (,(string-append (assoc-ref inputs "maxima")
-                                  "/bin")))
-               ;; For GtkFileChooserDialog.
-               `("GSETTINGS_SCHEMA_DIR" =
-                 (,(string-append (assoc-ref inputs "gtk+")
-                                  "/share/glib-2.0/schemas")))
-               `("XDG_DATA_DIRS" ":" prefix
-                 (;; Needed by gdk-pixbuf to know supported icon formats.
-                  ,(string-append
-                    (assoc-ref inputs "shared-mime-info") "/share")
-                  ;; The default icon theme of GTK+.
-                  ,(string-append
-                    (assoc-ref inputs "adwaita-icon-theme") "/share"))))
-             #t)))))
+     `(#:tests? #f ;tests fail non-deterministically
+       #:phases (modify-phases %standard-phases
+                  (add-after 'unpack 'patch-doc-path
+                    (lambda _
+                      ;; Don't look in share/doc/wxmaxima-xx.xx.x for the
+                      ;; documentation.  Only licensing information is placed there by
+                      ;; Guix.
+                      (substitute* "src/Dirstructure.cpp"
+                        (("/doc/wxmaxima-\\%s")
+                         "/doc/wxmaxima")) #t))
+                  (add-after 'install 'wrap-program
+                    (lambda* (#:key inputs outputs #:allow-other-keys)
+                      (wrap-program (string-append (assoc-ref outputs "out")
+                                                   "/bin/wxmaxima")
+                                    `("PATH" ":" prefix
+                                      (,(string-append (assoc-ref inputs
+                                                                  "maxima")
+                                                       "/bin")))
+                                    ;; For GtkFileChooserDialog.
+                                    `("GSETTINGS_SCHEMA_DIR" =
+                                      (,(string-append (assoc-ref inputs
+                                                                  "gtk+")
+                                         "/share/glib-2.0/schemas")))
+                                    `("XDG_DATA_DIRS" ":" prefix
+                                      ( ;Needed by gdk-pixbuf to know supported icon formats.
+                                        ,(string-append (assoc-ref inputs
+                                                         "shared-mime-info")
+                                                        "/share")
+                                       ;; The default icon theme of GTK+.
+                                       ,(string-append (assoc-ref inputs
+                                                        "adwaita-icon-theme")
+                                                       "/share")))) #t)))))
     (home-page "https://wxmaxima-developers.github.io/wxmaxima/")
-    (synopsis "Graphical user interface for the Maxima computer algebra system")
+    (synopsis
+     "Graphical user interface for the Maxima computer algebra system")
     (description
      "wxMaxima is a graphical user interface for the Maxima computer algebra
 system.  It eases the use of Maxima by making most of its commands available
-- 
2.39.1





  parent reply	other threads:[~2023-02-02  6:41 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-29  1:42 [bug#61130] [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0 Andy Tai
2023-01-29  1:44 ` [bug#61130] [PATCH 1/2] gnu: wxwidgets: Remove configure option Andy Tai
2023-02-02  6:39 ` [bug#61130] [PATCH v2 " Andy Tai
2023-02-02  6:39 ` Andy Tai [this message]
2023-02-08 16:12 ` bug#61130: [PATCH 2/2] gnu: wxmaxima: Update to 22.12.0 Guillaume Le Vaillant

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=20230202063956.398-1-atai@atai.org \
    --to=atai@atai.org \
    --cc=61130@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).