summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorharalmha <47558670+haralmha@users.noreply.github.com>2022-04-27 01:03:36 +0200
committerGitHub <noreply@github.com>2022-04-26 16:03:36 -0700
commit89cc16a9cdbffe55e06bc2edb215add24f16f90b (patch)
tree7ec26c315aaff83682c4fb052ed5661b58bd111d
parenta24070d5324cf12339218573eb088d9fa5042a25 (diff)
downloadspack-89cc16a9cdbffe55e06bc2edb215add24f16f90b.tar.gz
spack-89cc16a9cdbffe55e06bc2edb215add24f16f90b.tar.bz2
spack-89cc16a9cdbffe55e06bc2edb215add24f16f90b.tar.xz
spack-89cc16a9cdbffe55e06bc2edb215add24f16f90b.zip
gnuplot: Add version 5.4.3 and add workaround for not found DSO (#30163)
-rw-r--r--var/spack/repos/builtin/packages/gnuplot/package.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/gnuplot/package.py b/var/spack/repos/builtin/packages/gnuplot/package.py
index 584140b74a..8833bfec8d 100644
--- a/var/spack/repos/builtin/packages/gnuplot/package.py
+++ b/var/spack/repos/builtin/packages/gnuplot/package.py
@@ -27,6 +27,7 @@ class Gnuplot(AutotoolsPackage):
# dependency of readline. Fix it with a small patch
patch('term_include.patch')
+ version('5.4.3', sha256='51f89bbab90f96d3543f95235368d188eb1e26eda296912256abcd3535bd4d84')
version('5.4.2', sha256='e57c75e1318133951d32a83bcdc4aff17fed28722c4e71f2305cfc2ae1cae7ba')
version('5.2.8', sha256='60a6764ccf404a1668c140f11cc1f699290ab70daa1151bb58fed6139a28ac37')
version('5.2.7', sha256='97fe503ff3b2e356fe2ae32203fc7fd2cf9cef1f46b60fe46dc501a228b9f4ed')
@@ -157,4 +158,5 @@ class Gnuplot(AutotoolsPackage):
# TODO: --with-aquaterm depends_on('aquaterm')
options.append('--without-aquaterm')
+ os.environ['LDFLAGS'] = ("-Wl,--copy-dt-needed-entries")
return options