diff mbox series

[bug#66443] gnu: gnuplot: Update to 5.4.9.

Message ID 19e4c7dd72cf1d2a2c3a50af8b3bb27442775423.1696947617.git.paul@apatience.com
State New
Headers show
Series [bug#66443] gnu: gnuplot: Update to 5.4.9. | expand

Commit Message

Paul A. Patience Oct. 10, 2023, 2:20 p.m. UTC
* gnu/packages/maths.scm (gnuplot): Update to 5.4.9.
[arguments]<#:configure-flags>: Add --with-qt=no.
---
 gnu/packages/maths.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)


base-commit: f4e8baf3806e79d7111d2943859865ae4ee0b59d

Comments

Mathieu Othacehe Oct. 25, 2023, 9:57 a.m. UTC | #1
> * gnu/packages/maths.scm (gnuplot): Update to 5.4.9.
> [arguments]<#:configure-flags>: Add --with-qt=no.

Applied, thanks,

Mathieu
diff mbox series

Patch

diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 928e169e95..b6164fc466 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1300,14 +1300,14 @@  (define-public giza
 (define-public gnuplot
   (package
     (name "gnuplot")
-    (version "5.4.8")
+    (version "5.4.9")
     (source (origin
               (method url-fetch)
               (uri (string-append "mirror://sourceforge/gnuplot/gnuplot/"
                                   version "/gnuplot-"
                                   version ".tar.gz"))
        (sha256
-        (base32 "1kzmj4yyxvlxqzqbrw6sx6dnvhj1zzqnciyb8ryzy6mdrb3pj4lk"))))
+        (base32 "15vabi30s4ln4vi82csx4nvfms3ik8704rk0prcm9h1xylhs0a53"))))
     (build-system gnu-build-system)
     (native-inputs
      (list pkg-config (texlive-updmap.cfg)))
@@ -1315,7 +1315,8 @@  (define-public gnuplot
      (list cairo gd lua pango readline))
     (arguments
      (list #:configure-flags
-           #~(list (string-append "--with-texdir=" #$output
+           #~(list "--with-qt=no"
+                   (string-append "--with-texdir=" #$output
                                   "/texmf-local/tex/latex/gnuplot"))
            ;; Plot on a dumb terminal during tests.
            #:make-flags #~'("GNUTERM=dumb")))