diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2022-10-17 23:36:50 +0200 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2022-10-17 23:36:50 +0200 |
commit | 211574acbd4838774975241ff024110e31725b20 (patch) | |
tree | 356b6c33f166025a2be608c80f2fec012f529c8e /ceph-bin | |
parent | 13890469d17d30f2f0b38bb1a6bb294e2d902744 (diff) | |
download | archlinuxewe-211574acbd4838774975241ff024110e31725b20.tar.xz |
ceph-bin: fix _pinned_dependencies
Diffstat (limited to 'ceph-bin')
-rw-r--r-- | ceph-bin/PKGBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ceph-bin/PKGBUILD b/ceph-bin/PKGBUILD index 706f8ec01..94a17b30b 100644 --- a/ceph-bin/PKGBUILD +++ b/ceph-bin/PKGBUILD @@ -22,7 +22,11 @@ noextract=("${source[@]%%::*}") package_ceph-libs-bin() { - depends=('boost-libs' 'curl' 'glibc' 'keyutils' 'libutil-linux' 'bzip2' 'lz4' 'nss' + _pinned_dependencies=( + 'libcrypt.so=2' + ) + depends=("${_pinned_dependencies[@]}" + 'boost-libs' 'curl' 'glibc' 'keyutils' 'libutil-linux' 'bzip2' 'lz4' 'nss' 'oath-toolkit' 'python' 'snappy' 'systemd-libs' 'fmt' 'cryptsetup' 'lua' 'librdkafka' 'python-prettytable' 'python-yaml' 'python-setuptools') |