Merge branch '21841-missing-vocab' refs #21841
[arvados.git] / services / fuse / fpm-info.sh
index fd94ef7afa3340edea84a486e4abd03810fe1b8d..8ede312d86a1f44cf44654732ae4e4c9c081f145 100644 (file)
@@ -2,13 +2,19 @@
 #
 # SPDX-License-Identifier: AGPL-3.0
 
 #
 # 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
 fpm_depends+=(fuse)
 
 case "$TARGET" in
-    centos*)
+    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+=(fuse-libs)
         ;;
     debian* | ubuntu*)
-        fpm_depends+=(libcurl3-gnutls libpython2.7)
+        # 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
         ;;
 esac