From patchwork Sat Aug 6 21:35:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5834 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4M0bPN5gfKz40W5 for ; Sat, 6 Aug 2022 21:36:08 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4M0bPL6XBkzT0; Sat, 6 Aug 2022 21:36:06 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4M0bPL5lz4z2yy9; Sat, 6 Aug 2022 21:36:06 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4M0bPJ6sBPz2xGW for ; Sat, 6 Aug 2022 21:36:04 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4M0bPJ27xjzT0; Sat, 6 Aug 2022 21:36:04 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1659821764; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=psbS/2chdpKtJMnzL7qwkS+Nx30zaaDVkHdYNBS3iIQ=; b=mKEw10jKiJEb02HYsMNP8ECaSayvpfz55RsaV6VgfKMIZnrFopMUurafGljdQ425F8Hlzb VePKXxc5RYNrrbAw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1659821764; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=psbS/2chdpKtJMnzL7qwkS+Nx30zaaDVkHdYNBS3iIQ=; b=sg5m/OiCTXpSlJCM3SNo8HcLRUze+WaaY7Gpx0uqNMtT0p0ua8Fr7SXKfQ1wQkkA7bOiuG 1BhIcNuTWD6zklJ51o/jNgPZR67N0YXVQWeT/FhBmo2YLYXMTw6vYlrHXhItPjufoNVcC9 JUE90Wqg6BV8RirDYi5+mHUkvsnWP9p2v13CtIg0u6wwvpttFWi0nSJ06dhIRpMh5Tqx1O q1Jn7iKxCV5cQ9BPHmtuibKKhPmA7tu1RC/C4a9BNBH+wM3JOxiy9GVN/atipK8TjF6fzZ fHGLx9uxkzNd99WqjyZAkvZXMcbyiGub51Cm+A8wFLOJ0GO2CxpF45l+d7oVug== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH v3 01/11] borgbackup: Fix Bug#12611 by adding fuse mount capability with pyfuse3 Date: Sat, 6 Aug 2022 23:35:46 +0200 Message-Id: <20220806213556.66027-1-adolf.belka@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" - The addition of pyfuse3 requires a total of 11 python3 module dependencies and the addition of python3-Cython during the build - The other dependencies etc are submitted in the rest of this patch series. Fixes: Bug#12611 Tested-by: Adolf Belka Signed-off-by: Adolf Belka --- lfs/borgbackup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/borgbackup b/lfs/borgbackup index c2faaac21..9c761eac4 100644 --- a/lfs/borgbackup +++ b/lfs/borgbackup @@ -33,9 +33,9 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = borgbackup -PAK_VER = 12 +PAK_VER = 13 -DEPS = python3-pkgconfig python3-msgpack python3-packaging +DEPS = python3-pkgconfig python3-msgpack python3-packaging python3-pyfuse3 SERVICES =