diff --git a/manifest.toml b/manifest.toml index ced07d3..fc59b18 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,7 @@ name = "Borg Backup" description.en = "Backup your server on a host server using Borg" description.fr = "Sauvegardez votre serveur sur un serveur distant avec Borg" -version = "1.1.16~ynh30" +version = "1.2.8~ynh1" maintainers = ["ljf"] @@ -92,6 +92,6 @@ ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requiremen "python3-setuptools", "python3-venv", "virtualenv", - "libfuse-dev", + "libfuse3-dev", "pkg-config", ] diff --git a/scripts/_common.sh b/scripts/_common.sh index af21316..bf7b965 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,7 +4,7 @@ # COMMON VARIABLES #================================================= -BORG_VERSION=1.1.16 +BORG_VERSION=1.2.8 #================================================= # PERSONAL HELPERS @@ -19,9 +19,9 @@ install_borg_with_pip () { python3 -m venv /opt/borg-env /opt/borg-env/bin/python /opt/borg-env/bin/pip install pip -U /opt/borg-env/bin/python /opt/borg-env/bin/pip install setuptools -U - /opt/borg-env/bin/python /opt/borg-env/bin/pip install wheel + /opt/borg-env/bin/python /opt/borg-env/bin/pip install wheel -U ynh_print_info --message="Installing/compiling borg, this may take some time..." - /opt/borg-env/bin/python /opt/borg-env/bin/pip install borgbackup[fuse]==$BORG_VERSION + /opt/borg-env/bin/python /opt/borg-env/bin/pip install borgbackup[pyfuse3]==$BORG_VERSION echo "#!/bin/bash /opt/borg-env/bin/python /opt/borg-env/bin/borg \"\$@\"" > /usr/local/bin/borg touch "/opt/borg-env/$(ynh_get_debian_release)"