summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2021-11-03 18:33:52 -0400
committerGitHub <noreply@github.com>2021-11-03 23:33:52 +0100
commit91a6e38404b99d2b0e9c0ccbb6760c8e19274948 (patch)
treec5ee2910c711ef80087dc0bea25ffcdd60b1181c /var
parentc0a81399bf66b47bede69e5352b583af67267d3a (diff)
downloadspack-91a6e38404b99d2b0e9c0ccbb6760c8e19274948.tar.gz
spack-91a6e38404b99d2b0e9c0ccbb6760c8e19274948.tar.bz2
spack-91a6e38404b99d2b0e9c0ccbb6760c8e19274948.tar.xz
spack-91a6e38404b99d2b0e9c0ccbb6760c8e19274948.zip
shtools: disable libtool, add 4.9.1, fix --test=root (#27014)
The Makefile expects the "other" libtool, not the GNU libtool we have in Spack. Closes https://github.com/spack/spack/issues/26993 Co-authored-by: Bernhard Kaindl <bernhardkaindl7@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/shtools/nolibtool.patch16
-rw-r--r--var/spack/repos/builtin/packages/shtools/package.py10
2 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/shtools/nolibtool.patch b/var/spack/repos/builtin/packages/shtools/nolibtool.patch
new file mode 100644
index 0000000000..3e1cbd6b93
--- /dev/null
+++ b/var/spack/repos/builtin/packages/shtools/nolibtool.patch
@@ -0,0 +1,16 @@
+--- a/src/Makefile
++++ b/src/Makefile
+@@ -80,10 +80,10 @@
+ @echo "--> Compilation of source files successful"
+ @echo
+ @rm -f $(PROG)
+- $(LIBTOOL) $(LIBTOOLFLAGS) -o $(PROG) $(OBJS)
++# $(LIBTOOL) $(LIBTOOLFLAGS) -o $(PROG) $(OBJS)
+ # If you prefer to use libtool, uncomment the above line, and comment the two lines below (AR and RLIB)
+-# $(AR) $(ARFLAGS) $(PROG) $(OBJS)
+-# $(RLIB) $(RLIBFLAGS) $(PROG)
++ $(AR) $(ARFLAGS) $(PROG) $(OBJS)
++ $(RLIB) $(RLIBFLAGS) $(PROG)
+ @echo
+ @echo "--> Creation of static library successful"
+ # @rm -f $(OBJS)
diff --git a/var/spack/repos/builtin/packages/shtools/package.py b/var/spack/repos/builtin/packages/shtools/package.py
index 6b90a5156a..d74cd457b7 100644
--- a/var/spack/repos/builtin/packages/shtools/package.py
+++ b/var/spack/repos/builtin/packages/shtools/package.py
@@ -14,6 +14,7 @@ class Shtools(MakefilePackage):
maintainers = ['eschnett']
+ version('4.9.1', sha256='5c22064f9daf6e9aa08cace182146993aa6b25a6ea593d92572c59f4013d53c2')
version('4.8', sha256='c36fc86810017e544abbfb12f8ddf6f101a1ac8b89856a76d7d9801ffc8dac44')
version('4.5', sha256='1975a2a2bcef8c527d321be08c13c2bc479e0d6b81c468a3203f95df59be4f89')
@@ -21,11 +22,20 @@ class Shtools(MakefilePackage):
# install these properly yet, only the Fortran library is
# installed.
+ # The Makefile expects the "other" libtool, not the GNU libtool we have in
+ # Spack
+ patch('nolibtool.patch')
+
variant('openmp', default=True, description="Enable OpenMP support")
depends_on('blas')
depends_on('fftw')
depends_on('lapack')
+ depends_on('py-flake8', type='test')
+
+ def patch(self):
+ """make check fix: Silence "do not use bare 'except'" in number of files"""
+ filter_file('ignore=', 'ignore=E722,', 'Makefile')
# Options for the Makefile
def makeopts(self, spec, prefix):