diff options
author | Thomas Lamprecht <t.lamprecht@proxmox.com> | 2024-11-06 15:06:09 +0100 |
---|---|---|
committer | Thomas Lamprecht <t.lamprecht@proxmox.com> | 2024-11-07 17:42:42 +0100 |
commit | cc74b76f3e71480ee67c1284c3331f955cde7786 (patch) | |
tree | aae737c619a19049a44271c1bc1fcb698941e76d | |
parent | Merge pull request #60600 from Matan-B/wip-matanb-crimson-enable-wait (diff) | |
download | ceph-cc74b76f3e71480ee67c1284c3331f955cde7786.tar.xz ceph-cc74b76f3e71480ee67c1284c3331f955cde7786.zip |
d/control: fix lua dependencies for librgw2
One can attach lua scripts as sort of hooks to implement dynamic
checks or transformations of RGW requests since Ceph Pacific. Thus, a
lua library is now required for base support and optionally one can
use the luarocks deployment and management system for Lua modules to
use more advanced scripts/modules.
With commit 46500cace6c ("rgw/test/lua: add lua integration tests
suite") the dependency relations got cleaned up, as the respective
entries were missing completely from debian/control.
But that commit is pulling in much more than required due to adding
the devel package `liblua5.3-dev` instead of the library-only
`liblua5.3-0` one, and having `luarocks` as hard dependency compared
to an optional Suggests. Fixing that avoids pulling in a whole
build/compiler/autotools/... stack with 65 new packages just when one
wants to use librgw2 or python3-rgw for simple RGW requests, or just
needs the ceph-common package, which pulls in librgw2 transitively.
This was reported by prolific community member Neobin on the Proxmox
forum [0], and then discussed on the original PR, adding the
dependencies [1].
[0]: https://forum.proxmox.com/threads/156433/post-715148
[1]: https://github.com/ceph/ceph/pull/52931#issuecomment-2441253989
Fixes: https://tracker.ceph.com/issues/68873
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
-rw-r--r-- | debian/control | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/control b/debian/control index d31a82bbc75..123fe39ef92 100644 --- a/debian/control +++ b/debian/control @@ -944,10 +944,10 @@ Package: librgw2 Architecture: linux-any Section: libs Depends: librados2 (= ${binary:Version}), + liblua5.3-0, ${misc:Depends}, ${shlibs:Depends}, - liblua5.3-dev, - luarocks, +Suggests: luarocks, Description: RADOS Gateway client library RADOS is a distributed object store used by the Ceph distributed storage system. This package provides a REST gateway to the |