diff options
author | Christoph Junghans <junghans@lanl.gov> | 2020-04-05 17:42:27 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-05 18:42:27 -0500 |
commit | 268c2a19da2085083ad3a61d0ce0a27ecd1e2343 (patch) | |
tree | 32c12f507f5b17b21d92a296ba6d2c0eaeb8ee34 /var | |
parent | 1249d73630c0a7f49014022c3183e66a9d9ead9f (diff) | |
download | spack-268c2a19da2085083ad3a61d0ce0a27ecd1e2343.tar.gz spack-268c2a19da2085083ad3a61d0ce0a27ecd1e2343.tar.bz2 spack-268c2a19da2085083ad3a61d0ce0a27ecd1e2343.tar.xz spack-268c2a19da2085083ad3a61d0ce0a27ecd1e2343.zip |
boost: boost-python in 1.72.0 broken with cxxstd=98 (#15885)
* boost: boost-python in 1.72.0 broken with cxxstd=98
* py-espressopp: depend on boost with cxxstd=11
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/boost/package.py | 3 | ||||
-rw-r--r-- | var/spack/repos/builtin/packages/py-espressopp/package.py | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/boost/package.py b/var/spack/repos/builtin/packages/boost/package.py index 41be592a52..c0998e23d0 100644 --- a/var/spack/repos/builtin/packages/boost/package.py +++ b/var/spack/repos/builtin/packages/boost/package.py @@ -178,6 +178,9 @@ class Boost(Package): conflicts('+taggedlayout', when='+versionedlayout') conflicts('+numpy', when='~python') + # boost-python in 1.72.0 broken with cxxstd=98 + conflicts('cxxstd=98', when='+mpi+python @1.72.0:') + # Container's Extended Allocators were not added until 1.56.0 conflicts('+container', when='@:1.55.99') diff --git a/var/spack/repos/builtin/packages/py-espressopp/package.py b/var/spack/repos/builtin/packages/py-espressopp/package.py index 779873bc98..f243fcb4d2 100644 --- a/var/spack/repos/builtin/packages/py-espressopp/package.py +++ b/var/spack/repos/builtin/packages/py-espressopp/package.py @@ -27,7 +27,7 @@ class PyEspressopp(CMakePackage): depends_on("cmake@2.8:", type='build') depends_on("mpi") - depends_on("boost+serialization+filesystem+system+python+mpi", when='@1.9.4:') + depends_on("boost+serialization+filesystem+system+python+mpi cxxstd=11", when='@1.9.4:') extends("python") depends_on("python@2:2.8") depends_on("py-mpi4py@2.0.0:", when='@1.9.4', type=('build', 'run')) |