summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbernhardkaindl <43588962+bernhardkaindl@users.noreply.github.com>2021-09-28 04:01:08 +0200
committerGitHub <noreply@github.com>2021-09-28 04:01:08 +0200
commit499d39f211b1bb60837306c54a93ebc94c31914e (patch)
treeb06141c3a366ab0efa9c0da625f24b0994d01a0a
parentcd8e85d80238df121ef2af1cef9cac358ee3ef09 (diff)
downloadspack-499d39f211b1bb60837306c54a93ebc94c31914e.tar.gz
spack-499d39f211b1bb60837306c54a93ebc94c31914e.tar.bz2
spack-499d39f211b1bb60837306c54a93ebc94c31914e.tar.xz
spack-499d39f211b1bb60837306c54a93ebc94c31914e.zip
libp11: Fix build and add new version (#26135)
The build needs `pkgconfig` and `openssl`, `m4` is already added by `autoconf`. Also add the current version of `libp11` to the list of versions. Co-authored-by: Bernhard Kaindl <bernhard.kaindl@ait.ac.at>
-rw-r--r--var/spack/repos/builtin/packages/libp11/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libp11/package.py b/var/spack/repos/builtin/packages/libp11/package.py
index 0886aa1e7a..65f6a34862 100644
--- a/var/spack/repos/builtin/packages/libp11/package.py
+++ b/var/spack/repos/builtin/packages/libp11/package.py
@@ -19,6 +19,7 @@ class Libp11(AutotoolsPackage):
homepage = "https://github.com/OpenSC/libp11/wiki"
url = "https://github.com/OpenSC/libp11/archive/libp11-0.4.10.tar.gz"
+ version('0.4.11', sha256='56d6149879bda379613d89adfd3486ce5a3c20af6c1e3f9e83d15d900ab9e4bc')
version('0.4.10', sha256='123c1525fa7ce7a34060f9a4148a30717482c517a378f428b704459820c1bf35')
version('0.4.9', sha256='9d1c76d74c21ca224f96204982097ebc6b956f645b2b0b5f9c502a20e9ffcfd8')
version('0.4.8', sha256='acccd56b736942dfcc490d102d2cb2b6afa6b2e448dd1dc5a1b773eadb98f83d')
@@ -26,7 +27,8 @@ class Libp11(AutotoolsPackage):
depends_on('autoconf', type='build')
depends_on('automake', type='build')
depends_on('libtool', type='build')
- depends_on('m4', type='build')
+ depends_on('pkgconfig', type='build')
+ depends_on('openssl')
def autoreconf(self, spec, prefix):
bash = which('bash')