Merge branch '8784-dir-listings'
[arvados.git] / backports / python-llfuse / fpm-info.sh
index a7d9398701b7bc4c405027c26f5133fe7b23d383..ef0b446617ec5484a491e9bc6e6fe8284f847dea 100644 (file)
@@ -1,13 +1,18 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: Apache-2.0
+
 case "$TARGET" in
     centos*)
         build_depends+=('fuse-devel')
         fpm_depends+=(glibc fuse-libs)
         ;;
+    ubuntu1204)
+        build_depends+=(libfuse2 libfuse-dev)
+        fpm_depends+=(libc6 python-contextlib2 'libfuse2 = 2.9.2-5' 'fuse = 2.9.2-5')
+        ;;
     debian* | ubuntu*)
         build_depends+=('libfuse-dev')
-        fpm_depends+=(libc6 libfuse2)
+        fpm_depends+=(libc6 'libfuse2 > 2.9.0' 'fuse > 2.9.0')
         ;;
 esac
-
-# FIXME: Remove this line after #6885 is done.
-fpm_args+=(--iteration 2)