summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeoffrey Oxberry <goxberry@gmail.com>2019-08-09 08:17:57 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2019-08-09 10:17:57 -0500
commit7b47178a5324d84b04f119b8960cad0bc6f86e58 (patch)
tree9fce4f5b63097f75762c0e4fd9edb830c303217e /var
parent850b2ad42e0b26563c77c9fe402e15a70c638ca3 (diff)
downloadspack-7b47178a5324d84b04f119b8960cad0bc6f86e58.tar.gz
spack-7b47178a5324d84b04f119b8960cad0bc6f86e58.tar.bz2
spack-7b47178a5324d84b04f119b8960cad0bc6f86e58.tar.xz
spack-7b47178a5324d84b04f119b8960cad0bc6f86e58.zip
bugfix: hunspell: add missing gettext dependency (#12347)
* hunspell: write autoreconf method to triage error This commit fixes the error described in GitHub issue `AutotoolsPackage` class attempts to call `libtoolize`, which doesn't exist on macOS systems that externally install `libtool` in Spack via Homebrew -- Homebrew installzes GNU libtoolize as `glibtoolize`. The fix is to call `autoreconf` only, and GitHub pull request #12344 makes this change in AutotoolsPackage (https://github.com/spack/spack/pull/12344). However, while waiting for that pull request to be merged, overriding the `autoreconf` method achieves the same result for a self-contained fix. This self-contained fix is necessary to fix a dependency bug in the `hunspell` package. * hunspell: add missing gettext dependency * hunspell: add version 1.7.0
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/hunspell/package.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/hunspell/package.py b/var/spack/repos/builtin/packages/hunspell/package.py
index 9a524d592c..8ce6458b63 100644
--- a/var/spack/repos/builtin/packages/hunspell/package.py
+++ b/var/spack/repos/builtin/packages/hunspell/package.py
@@ -12,9 +12,17 @@ class Hunspell(AutotoolsPackage):
homepage = "http://hunspell.github.io/"
url = "https://github.com/hunspell/hunspell/archive/v1.6.0.tar.gz"
+ version('1.7.0', sha256='57be4e03ae9dd62c3471f667a0d81a14513e314d4d92081292b90435944ff951')
version('1.6.0', '047c3feb121261b76dc16cdb62f54483')
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
depends_on('m4', type='build')
+ depends_on('gettext')
+
+ # TODO: If https://github.com/spack/spack/pull/12344 is merged, this
+ # method is unnecessary.
+ def autoreconf(self, spec, prefix):
+ autoreconf = which('autoreconf')
+ autoreconf('-fiv')