From patchwork Tue Aug 2 09:20:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5808 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 4LxqHC1hyZz3wwF for ; Tue, 2 Aug 2022 09:21:11 +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 4LxqH91vy0z35n; Tue, 2 Aug 2022 09:21:09 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4LxqH90P1Dz2yVQ; Tue, 2 Aug 2022 09:21:09 +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 4LxqH75cVmz2xHs for ; Tue, 2 Aug 2022 09:21:07 +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 4LxqH71HHCzNr; Tue, 2 Aug 2022 09:21:07 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1659432067; 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=X64Yg+dnB1KsV7loewPpdsuDky/s+OKRjkYIZ7Yh6z2dr9s5kSgExVo6JRtrEeg9HN2cIW dGQx8LsNP7o5JdBw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1659432067; 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=rKvtV5rJSed0ycrGPUaaTi9aklQQN6X7MaiHM4GCG3dbHqlKWMOhslrgarqHCFBKrNwsuP q5183nnS1K57vPAr5Ben66xmToTBl4xjDLkkI/KKH4eawb1eYVna+q9gcu00jh6GkENF0A AbTR8VGnRIW3NFfMeWG3570iSXM1b7SXX39mxiWCtXTC3bZgWr6zfjQyWItBg9wOABdCt0 U8btoBVBRAxn7lHNoxJc+CSv/6cY7WNf2dpNWrAfKvpbVJOVgNkx0yFcs+KTBrb1Fwfh0W K8Qp0I8ttw/giohZiw9u9kXcKLd3sGpUlQtyE/czZbAJ7aSCSwMNgMWcz1PXDw== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH v2 01/11] borgbackup: Fix Bug#12611 by adding fuse mount capability with pyfuse3 Date: Tue, 2 Aug 2022 11:20:48 +0200 Message-Id: <20220802092058.3711-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 =