summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Huebl <axel.huebl@plasma.ninja>2019-02-23 01:36:04 +0100
committerPeter Scheibel <scheibel1@llnl.gov>2019-02-22 18:36:04 -0600
commit7bd960ba86c3c1825b64693a17d5b62447a9e0bd (patch)
tree89594f53156a8a0f06852af01729e495f044a291
parent510a28d1567785055372213de4acd9b4580b0e39 (diff)
downloadspack-7bd960ba86c3c1825b64693a17d5b62447a9e0bd.tar.gz
spack-7bd960ba86c3c1825b64693a17d5b62447a9e0bd.tar.bz2
spack-7bd960ba86c3c1825b64693a17d5b62447a9e0bd.tar.xz
spack-7bd960ba86c3c1825b64693a17d5b62447a9e0bd.zip
ADIOS package: add version 2.3.1 (#10666)
Update older md5 checksums to sha256. Require CMake >= 3.6.0 (updated from 3.5.0). Remove some third-party depends_on statements (which were commented out before).
-rw-r--r--var/spack/repos/builtin/packages/adios2/package.py16
1 files changed, 5 insertions, 11 deletions
diff --git a/var/spack/repos/builtin/packages/adios2/package.py b/var/spack/repos/builtin/packages/adios2/package.py
index 51800024ed..4fc87d7f6d 100644
--- a/var/spack/repos/builtin/packages/adios2/package.py
+++ b/var/spack/repos/builtin/packages/adios2/package.py
@@ -13,12 +13,13 @@ class Adios2(CMakePackage):
url = "https://github.com/ornladios/ADIOS2/archive/v2.0.0.tar.gz"
git = "https://github.com/ornladios/ADIOS2.git"
- maintainers = ['ax3l']
+ maintainers = ['ax3l', 'chuckatkins']
version('develop', branch='master')
+ version('2.3.1', sha256='3bf81ccc20a7f2715935349336a76ba4c8402355e1dc3848fcd6f4c3c5931893')
version('2.2.0', sha256='77058ea2ff7224dc02ea519733de42d89112cf21ffe7474fb2fa3c5696152948')
- version('2.1.0', '431fa5b015349f1838b96b8f5a1cc8f8')
- version('2.0.0', 'da39655b51745d2c5f3f1e46c5abc4d7')
+ version('2.1.0', sha256='d4df3b3035b4236b51c77b59d68e756e825834b2ea3cb17439927a027831453b')
+ version('2.0.0', sha256='4eeedf4404824d8de6e4ef580b8a703c0aedb5c03f900f5ce6f85f0b35980135')
variant('shared', default=True,
description='Also build shared libraries')
@@ -56,20 +57,13 @@ class Adios2(CMakePackage):
# DataMan needs dlopen
conflicts('+dataman', when='~shared')
- depends_on('cmake@3.5.0:', type='build')
+ depends_on('cmake@3.6.0:', type='build')
depends_on('pkgconfig', type='build', when='@2.2.0:')
# The included ffs requires bison and flex but using them makes
# the build fail due to an undefined reference.
# depends_on('bison', type='build', when='@2.2.0:')
# depends_on('flex', when='@2.2.0:')
- # contained in thirdparty/
- # depends_on('googletest')
- # depends_on('pugixml')
- # depends_on('kwsys')
- # depends_on('nlohmann-json')
- # depends_on('pybind11@2.1.1:', when='+python')
-
depends_on('mpi', when='+mpi')
depends_on('zeromq', when='+dataman')