diff options
author | bryanherman <63422190+bryanherman@users.noreply.github.com> | 2021-01-27 07:28:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 13:28:29 +0100 |
commit | cbdf87cd28243f63edb557840ac1e3e9c324cd40 (patch) | |
tree | d93e4a39e373841f876fbe9c0e0c4cb729341709 | |
parent | 4977dcfe9bb21c5c6fd81a9018033ad3cd60741a (diff) | |
download | spack-cbdf87cd28243f63edb557840ac1e3e9c324cd40.tar.gz spack-cbdf87cd28243f63edb557840ac1e3e9c324cd40.tar.bz2 spack-cbdf87cd28243f63edb557840ac1e3e9c324cd40.tar.xz spack-cbdf87cd28243f63edb557840ac1e3e9c324cd40.zip |
boost: restrict lower bound of ranges for two patches (#21321)
-rw-r--r-- | var/spack/repos/builtin/packages/boost/package.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/boost/package.py b/var/spack/repos/builtin/packages/boost/package.py index 9bf44883de..54a0f50dd8 100644 --- a/var/spack/repos/builtin/packages/boost/package.py +++ b/var/spack/repos/builtin/packages/boost/package.py @@ -254,11 +254,11 @@ class Boost(Package): # Support bzip2 and gzip in other directory # See https://github.com/boostorg/build/pull/154 - patch('boost_154.patch', when='@:1.63.99') + patch('boost_154.patch', when='@1.56.0:1.63.99') # Backport Python3 import problem # See https://github.com/boostorg/python/pull/218 - patch('boost_218.patch', when='@:1.67.99') + patch('boost_218.patch', when='@1.63.0:1.67.99') def patch(self): # Disable SSSE3 and AVX2 when using the NVIDIA compiler |