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
This commit is contained in:
Bazaah
2022-12-21 17:02:52 +00:00
parent 69a91a0627
commit 0186817989
2 changed files with 4 additions and 2 deletions

View File

@@ -68,6 +68,7 @@ pkgname = ceph-libs-bin
depends = librdkafka depends = librdkafka
depends = libaio depends = libaio
depends = gperftools depends = gperftools
depends = librabbitmq-c
depends = python-prettytable depends = python-prettytable
depends = python-yaml depends = python-yaml
depends = python-setuptools depends = python-setuptools
@@ -88,6 +89,7 @@ pkgname = ceph-mgr-bin
depends = python-pecan depends = python-pecan
depends = python-pyjwt depends = python-pyjwt
depends = python-more-itertools depends = python-more-itertools
depends = python-routes
depends = python-numpy depends = python-numpy
depends = python-scipy depends = python-scipy
depends = python-six depends = python-six

View File

@@ -23,7 +23,7 @@ noextract=("${source[@]%%::*}")
package_ceph-libs-bin() { package_ceph-libs-bin() {
depends=('boost-libs' 'curl' 'glibc' 'keyutils' 'libutil-linux' 'bzip2' 'lz4' 'nss' depends=('boost-libs' 'curl' 'glibc' 'keyutils' 'libutil-linux' 'bzip2' 'lz4' 'nss'
'oath-toolkit' 'python' 'snappy' 'systemd-libs' 'fmt' 'cryptsetup' 'oath-toolkit' 'python' 'snappy' 'systemd-libs' 'fmt' 'cryptsetup'
'lua' 'librdkafka' 'libaio' 'gperftools' 'lua' 'librdkafka' 'libaio' 'gperftools' 'librabbitmq-c'
'python-prettytable' 'python-yaml' 'python-setuptools') 'python-prettytable' 'python-yaml' 'python-setuptools')
provides=("ceph-libs=${pkgver}-${pkgrel}") provides=("ceph-libs=${pkgver}-${pkgrel}")
conflicts=('ceph-libs') conflicts=('ceph-libs')
@@ -57,7 +57,7 @@ package_ceph-bin() {
package_ceph-mgr-bin() { package_ceph-mgr-bin() {
depends=("ceph=${pkgver}-${pkgrel}" "ceph-libs=${pkgver}-${pkgrel}" depends=("ceph=${pkgver}-${pkgrel}" "ceph-libs=${pkgver}-${pkgrel}"
'bash' 'boost-libs' 'curl' 'gperftools' 'nss' 'fmt' '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-numpy' 'python-scipy' 'python-six' 'python-coverage' 'python-pytest' 'python-dateutil'
'python-prettytable' 'python-requests' 'python-pyopenssl' 'python-bcrypt' 'python-yaml' 'python-prettytable' 'python-requests' 'python-pyopenssl' 'python-bcrypt' 'python-yaml'
'python-werkzeug' 'python-jinja') 'python-werkzeug' 'python-jinja')