mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
package/gnuplot: bump version to 6.0.2
For release note, see: http://www.gnuplot.info/ReleaseNotes_6_0_2.html patch 0002: already applied upstream Signed-off-by: Michael Fischer <mf@go-sys.de> [Julien: - add link to release note - fix sha256 file name in gnuplot.hash ] Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
committed by
Julien Olivain
parent
65127a8a77
commit
d58574af1c
@@ -1,32 +0,0 @@
|
||||
From 806641b5ef504488f871b5cbd9e5c356d67d0bd1 Mon Sep 17 00:00:00 2001
|
||||
From: Edgar Bonet <bonet@grenoble.cnrs.fr>
|
||||
Date: Tue, 24 Sep 2024 20:03:18 -0700
|
||||
Subject: [PATCH] check for defined(FE_UNDERFLOW)
|
||||
|
||||
According to fenv(3), the macro FE_UNDERFLOW is defined by fenv.h only
|
||||
if the implementation supports handling of the underflow exception. Do
|
||||
not assume the presence of fenv.h implies FE_UNDERFLOW is defined.
|
||||
|
||||
Signed-off-by: Edgar Bonet <bonet@grenoble.cnrs.fr>
|
||||
Upstream: https://sourceforge.net/p/gnuplot/gnuplot-main/ci/926d2c26d31f4b69feda372c76a28643ef45359d/
|
||||
Upstream: https://sourceforge.net/p/gnuplot/gnuplot-main/ci/806641b5ef504488f871b5cbd9e5c356d67d0bd1/
|
||||
---
|
||||
src/complexfun.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/complexfun.c b/src/complexfun.c
|
||||
index 7a5d9a13f..7ddb4ed60 100644
|
||||
--- a/src/complexfun.c
|
||||
+++ b/src/complexfun.c
|
||||
@@ -86,7 +86,7 @@
|
||||
int_error(NO_CARET, "%s: error present on entry (errno %d %s)", who, errno, strerror(errno));
|
||||
#endif
|
||||
|
||||
-#ifdef HAVE_FENV_H
|
||||
+#if defined (HAVE_FENV_H) && defined (FE_UNDERFLOW)
|
||||
#define handle_underflow( who, var ) \
|
||||
if (errno) { \
|
||||
if (fetestexcept(FE_UNDERFLOW)) { \
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# From https://sourceforge.net/projects/gnuplot/files/gnuplot/6.0.1/
|
||||
md5 744fde2362fb20db6cfc58de73f96e9c gnuplot-6.0.1.tar.gz
|
||||
sha1 ce1aaeff632c78cba2b3ca8142cf130bfd411478 gnuplot-6.0.1.tar.gz
|
||||
# From https://sourceforge.net/projects/gnuplot/files/gnuplot/6.0.2/
|
||||
md5 ea0931758fc180e3b1950931b9869921 gnuplot-6.0.2.tar.gz
|
||||
sha1 be803916e4ea32720b4a646f2ffc98d6ad3a0dc2 gnuplot-6.0.2.tar.gz
|
||||
# Locally computed
|
||||
sha256 e85a660c1a2a1808ff24f7e69981ffcbac66a45c9dcf711b65610b26ea71379a gnuplot-6.0.1.tar.gz
|
||||
sha256 f68a3b0bbb7bbbb437649674106d94522c00bf2f285cce0c19c3180b1ee7e738 gnuplot-6.0.2.tar.gz
|
||||
sha256 895928ec0735cca1c8cec42656c7e314a065d0242813bb8693c0c1bf61fd4e4d Copyright
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GNUPLOT_VERSION = 6.0.1
|
||||
GNUPLOT_VERSION = 6.0.2
|
||||
GNUPLOT_SITE = http://downloads.sourceforge.net/project/gnuplot/gnuplot/$(GNUPLOT_VERSION)
|
||||
GNUPLOT_LICENSE = gnuplot license (open source)
|
||||
GNUPLOT_LICENSE_FILES = Copyright
|
||||
|
||||
Reference in New Issue
Block a user