* [bug#56645] [PATCH 0/3] gnu: gnuplot: Update package style and bump version to 5.4.4.
@ 2022-07-19 16:32 Paul A. Patience
2022-07-19 16:34 ` [bug#56645] [PATCH 1/3] gnu: gnuplot: Remove input labels Paul A. Patience
2022-08-02 18:11 ` bug#56645: [PATCH 0/3] gnu: gnuplot: Update package style and bump version " Efraim Flashner
0 siblings, 2 replies; 5+ messages in thread
From: Paul A. Patience @ 2022-07-19 16:32 UTC (permalink / raw)
To: 56645; +Cc: Paul A. Patience
Paul A. Patience (3):
gnu: gnuplot: Remove input labels.
gnu: gnuplot: Use G-expressions.
gnu: gnuplot: Update to 5.4.4.
gnu/packages/maths.scm | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
--
2.37.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#56645] [PATCH 1/3] gnu: gnuplot: Remove input labels.
2022-07-19 16:32 [bug#56645] [PATCH 0/3] gnu: gnuplot: Update package style and bump version to 5.4.4 Paul A. Patience
@ 2022-07-19 16:34 ` Paul A. Patience
2022-07-19 16:35 ` [bug#56645] [PATCH 2/3] gnu: gnuplot: Use G-expressions Paul A. Patience
2022-07-19 16:35 ` [bug#56645] [PATCH 3/3] gnu: gnuplot: Update to 5.4.4 Paul A. Patience
2022-08-02 18:11 ` bug#56645: [PATCH 0/3] gnu: gnuplot: Update package style and bump version " Efraim Flashner
1 sibling, 2 replies; 5+ messages in thread
From: Paul A. Patience @ 2022-07-19 16:34 UTC (permalink / raw)
To: 56645; +Cc: Paul A. Patience
* gnu/packages/maths.scm (gnuplot)[inputs]: Move below native-inputs and
sort.
[native-inputs]: Remove labels.
---
gnu/packages/maths.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 6a84f47468..8bbc0df077 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1130,10 +1130,10 @@ (define-public gnuplot
(sha256
(base32 "112dplskbkdbaqi935m2xlk1xsw8s5l568wm7xad75hgp6x9py2i"))))
(build-system gnu-build-system)
- (inputs (list readline cairo pango gd lua))
(native-inputs
- `(("pkg-config" ,pkg-config)
- ("texlive" ,texlive-tiny)))
+ (list pkg-config texlive-tiny))
+ (inputs
+ (list cairo gd lua pango readline))
(arguments `(#:configure-flags (list (string-append
"--with-texdir=" %output
"/texmf-local/tex/latex/gnuplot"))
--
2.37.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#56645] [PATCH 2/3] gnu: gnuplot: Use G-expressions.
2022-07-19 16:34 ` [bug#56645] [PATCH 1/3] gnu: gnuplot: Remove input labels Paul A. Patience
@ 2022-07-19 16:35 ` Paul A. Patience
2022-07-19 16:35 ` [bug#56645] [PATCH 3/3] gnu: gnuplot: Update to 5.4.4 Paul A. Patience
1 sibling, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2022-07-19 16:35 UTC (permalink / raw)
To: 56645; +Cc: Paul A. Patience
* gnu/packages/maths.scm (gnuplot)[arguments]: Use G-expressions.
---
gnu/packages/maths.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 8bbc0df077..1409fd9cb0 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1134,11 +1134,12 @@ (define-public gnuplot
(list pkg-config texlive-tiny))
(inputs
(list cairo gd lua pango readline))
- (arguments `(#:configure-flags (list (string-append
- "--with-texdir=" %output
- "/texmf-local/tex/latex/gnuplot"))
- ;; Plot on a dumb terminal during tests.
- #:make-flags '("GNUTERM=dumb")))
+ (arguments
+ (list #:configure-flags
+ #~(list (string-append "--with-texdir=" #$output
+ "/texmf-local/tex/latex/gnuplot"))
+ ;; Plot on a dumb terminal during tests.
+ #:make-flags #~'("GNUTERM=dumb")))
(home-page "http://www.gnuplot.info")
(synopsis "Command-line driven graphing utility")
(description "Gnuplot is a portable command-line driven graphing
--
2.37.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#56645] [PATCH 3/3] gnu: gnuplot: Update to 5.4.4.
2022-07-19 16:34 ` [bug#56645] [PATCH 1/3] gnu: gnuplot: Remove input labels Paul A. Patience
2022-07-19 16:35 ` [bug#56645] [PATCH 2/3] gnu: gnuplot: Use G-expressions Paul A. Patience
@ 2022-07-19 16:35 ` Paul A. Patience
1 sibling, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2022-07-19 16:35 UTC (permalink / raw)
To: 56645; +Cc: Paul A. Patience
* gnu/packages/maths.scm (gnuplot): Update to 5.4.4.
---
gnu/packages/maths.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 1409fd9cb0..93f21b4d80 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1121,14 +1121,14 @@ (define-public giza
(define-public gnuplot
(package
(name "gnuplot")
- (version "5.4.3")
+ (version "5.4.4")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/gnuplot/gnuplot/"
version "/gnuplot-"
version ".tar.gz"))
(sha256
- (base32 "112dplskbkdbaqi935m2xlk1xsw8s5l568wm7xad75hgp6x9py2i"))))
+ (base32 "00h97y8njhvfjbdvc0njw0znxbrlfynd1iazn8w3anvzhsvh08rp"))))
(build-system gnu-build-system)
(native-inputs
(list pkg-config texlive-tiny))
--
2.37.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#56645: [PATCH 0/3] gnu: gnuplot: Update package style and bump version to 5.4.4.
2022-07-19 16:32 [bug#56645] [PATCH 0/3] gnu: gnuplot: Update package style and bump version to 5.4.4 Paul A. Patience
2022-07-19 16:34 ` [bug#56645] [PATCH 1/3] gnu: gnuplot: Remove input labels Paul A. Patience
@ 2022-08-02 18:11 ` Efraim Flashner
1 sibling, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2022-08-02 18:11 UTC (permalink / raw)
To: Paul A. Patience; +Cc: 56645-done
[-- Attachment #1: Type: text/plain, Size: 238 bytes --]
Thanks. Patches pushed!
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-08-02 18:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-19 16:32 [bug#56645] [PATCH 0/3] gnu: gnuplot: Update package style and bump version to 5.4.4 Paul A. Patience
2022-07-19 16:34 ` [bug#56645] [PATCH 1/3] gnu: gnuplot: Remove input labels Paul A. Patience
2022-07-19 16:35 ` [bug#56645] [PATCH 2/3] gnu: gnuplot: Use G-expressions Paul A. Patience
2022-07-19 16:35 ` [bug#56645] [PATCH 3/3] gnu: gnuplot: Update to 5.4.4 Paul A. Patience
2022-08-02 18:11 ` bug#56645: [PATCH 0/3] gnu: gnuplot: Update package style and bump version " Efraim Flashner
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.