From 018681798998ec61ec6f00945e4498ba611ed043 Mon Sep 17 00:00:00 2001 From: Bazaah Date: Wed, 21 Dec 2022 17:02:52 +0000 Subject: [PATCH] pkgbuild: add missing deps for libs,mgr Missed from the src ceph PKGBUILD somewhere along the way, added now. Issue: https://github.com/bazaah/aur-ceph/issues/7 Reported-by: aur.archlinux.org/account/antage --- .SRCINFO | 2 ++ PKGBUILD | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 3593297..e71865b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -68,6 +68,7 @@ pkgname = ceph-libs-bin depends = librdkafka depends = libaio depends = gperftools + depends = librabbitmq-c depends = python-prettytable depends = python-yaml depends = python-setuptools @@ -88,6 +89,7 @@ pkgname = ceph-mgr-bin depends = python-pecan depends = python-pyjwt depends = python-more-itertools + depends = python-routes depends = python-numpy depends = python-scipy depends = python-six diff --git a/PKGBUILD b/PKGBUILD index 85cf81b..5fc88c8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -23,7 +23,7 @@ noextract=("${source[@]%%::*}") package_ceph-libs-bin() { depends=('boost-libs' 'curl' 'glibc' 'keyutils' 'libutil-linux' 'bzip2' 'lz4' 'nss' 'oath-toolkit' 'python' 'snappy' 'systemd-libs' 'fmt' 'cryptsetup' - 'lua' 'librdkafka' 'libaio' 'gperftools' + 'lua' 'librdkafka' 'libaio' 'gperftools' 'librabbitmq-c' 'python-prettytable' 'python-yaml' 'python-setuptools') provides=("ceph-libs=${pkgver}-${pkgrel}") conflicts=('ceph-libs') @@ -57,7 +57,7 @@ package_ceph-bin() { package_ceph-mgr-bin() { depends=("ceph=${pkgver}-${pkgrel}" "ceph-libs=${pkgver}-${pkgrel}" 'bash' 'boost-libs' 'curl' 'gperftools' 'nss' 'fmt' - 'python' 'python-cherrypy' 'python-pecan' 'python-pyjwt' 'python-more-itertools' + 'python' 'python-cherrypy' 'python-pecan' 'python-pyjwt' 'python-more-itertools' 'python-routes' 'python-numpy' 'python-scipy' 'python-six' 'python-coverage' 'python-pytest' 'python-dateutil' 'python-prettytable' 'python-requests' 'python-pyopenssl' 'python-bcrypt' 'python-yaml' 'python-werkzeug' 'python-jinja')