summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorChuck Atkins <chuck.atkins@kitware.com>2018-06-20 10:33:17 -0400
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2018-06-20 16:33:17 +0200
commit5c731f54b8886e84012b8fc90484b882c1cd30b4 (patch)
treeabda039a507137f0fdbb13788f9fae79a2baa034 /var
parent818e7481a67d34ac1ca8821ff0e31336dada3570 (diff)
downloadspack-5c731f54b8886e84012b8fc90484b882c1cd30b4.tar.gz
spack-5c731f54b8886e84012b8fc90484b882c1cd30b4.tar.bz2
spack-5c731f54b8886e84012b8fc90484b882c1cd30b4.tar.xz
spack-5c731f54b8886e84012b8fc90484b882c1cd30b4.zip
Bump ZeroMQ from v4.2.2 to v4.2.5 (#8514)
This addresses some build issues with GCC 8 and the addition of the -Werror=stringop-truncation warning.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/zeromq/package.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/zeromq/package.py b/var/spack/repos/builtin/packages/zeromq/package.py
index 291d153265..c9645145f6 100644
--- a/var/spack/repos/builtin/packages/zeromq/package.py
+++ b/var/spack/repos/builtin/packages/zeromq/package.py
@@ -32,8 +32,9 @@ class Zeromq(AutotoolsPackage):
version('develop', branch='master',
git='https://github.com/zeromq/libzmq.git')
- version('4.2.2', '52499909b29604c1e47a86f1cb6a9115',
- url='https://github.com/zeromq/libzmq/releases/download/v4.2.2/zeromq-4.2.2.tar.gz')
+ version('4.2.5', 'a1c95b34384257e986842f4d006957b8',
+ url='https://github.com/zeromq/libzmq/releases/download/v4.2.5/zeromq-4.2.5.tar.gz')
+ version('4.2.2', '52499909b29604c1e47a86f1cb6a9115')
version('4.1.4', 'a611ecc93fffeb6d058c0e6edf4ad4fb')
version('4.1.2', '159c0c56a895472f02668e692d122685')
version('4.1.1', '0a4b44aa085644f25c177f79dc13f253')
@@ -49,6 +50,8 @@ class Zeromq(AutotoolsPackage):
depends_on('libtool', type='build', when='@develop')
depends_on('pkgconfig', type='build')
+ conflicts('%gcc@8:', when='@:4.2.2')
+
@when('@develop')
def autoreconf(self, spec, prefix):
bash = which('bash')