diff options
author | Matthieu Dorier <mdorier@anl.gov> | 2020-04-03 21:48:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 15:48:29 -0500 |
commit | 4173c2786832b2eec57c4098668586d0e8985db4 (patch) | |
tree | 41ba922806ea7b3be7dabe20919736a2cd7577c8 | |
parent | bae4f91bfe4e93cb8f2364c6580a54dfda0e3832 (diff) | |
download | spack-4173c2786832b2eec57c4098668586d0e8985db4.tar.gz spack-4173c2786832b2eec57c4098668586d0e8985db4.tar.bz2 spack-4173c2786832b2eec57c4098668586d0e8985db4.tar.xz spack-4173c2786832b2eec57c4098668586d0e8985db4.zip |
unqlite: restricted patch to version 1.1.9 (#15857)
* restricted unqlite patch to version 1.1.9
* putting back the URL of the PR corresponding to the patch
-rw-r--r-- | var/spack/repos/builtin/packages/unqlite/package.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/unqlite/package.py b/var/spack/repos/builtin/packages/unqlite/package.py index e23f97c02b..ff746cc75a 100644 --- a/var/spack/repos/builtin/packages/unqlite/package.py +++ b/var/spack/repos/builtin/packages/unqlite/package.py @@ -18,8 +18,7 @@ class Unqlite(CMakePackage): version('1.1.9', sha256='33d5b5e7b2ca223942e77d31112d2e20512bc507808414451c8a98a7be5e15c0') # This patch corresponds to https://github.com/symisc/unqlite/pull/99 - # It should restricted to @1.1.9 once the PR lands. - patch('0001-Removed-the-STATIC-key-word-to-enable-building-a-sha.patch') + patch('0001-Removed-the-STATIC-key-word-to-enable-building-a-sha.patch', when='@1.1.9') def cmake_args(self): args = ["-DBUILD_SHARED_LIBS:BOOL=ON"] |