[arvados] created: 2.7.0-6578-g9a68b3ef3b
git repository hosting
git at public.arvados.org
Wed May 15 14:54:44 UTC 2024
at 9a68b3ef3bcfae2c8d064b573230870bfad1d19b (commit)
commit 9a68b3ef3bcfae2c8d064b573230870bfad1d19b
Author: Brett Smith <brett.smith at curii.com>
Date: Wed May 15 10:53:27 2024 -0400
21774: Add libfuse2 dependency to FUSE package
Otherwise the `fuse` dependency can be satisfied entirely by
libfuse3. arv-mount doesn't work if you happen to install this way.
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>
diff --git a/services/fuse/fpm-info.sh b/services/fuse/fpm-info.sh
index 4d98172f8d..8ede312d86 100644
--- a/services/fuse/fpm-info.sh
+++ b/services/fuse/fpm-info.sh
@@ -2,13 +2,19 @@
#
# SPDX-License-Identifier: AGPL-3.0
+# We depend on the fuse package because arv-mount may run the `fusermount` tool.
fpm_depends+=(fuse)
case "$TARGET" in
centos*|rocky*)
+ # We depend on libfuse for llfuse.
+ # We should declare a libcurl dependency, but it's a little academic
+ # because rpm itself depends on it, so we can be pretty sure it's installed.
fpm_depends+=(fuse-libs)
;;
debian* | ubuntu*)
- fpm_depends+=(libcurl3-gnutls)
+ # We depend on libfuse2 for llfuse.
+ # We depend on libcurl because the Python SDK does for its Keep client.
+ fpm_depends+=(libfuse2 libcurl3-gnutls)
;;
esac
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list