From patchwork Fri Jul 29 12:34:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adolf Belka X-Patchwork-Id: 5782 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 4LvRmB0BwKz3x7M for ; Fri, 29 Jul 2022 12:34:34 +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) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4LvRm76V3Tzpj; Fri, 29 Jul 2022 12:34:31 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4LvRm76044z2ygN; Fri, 29 Jul 2022 12:34:31 +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 4LvRm54wJPz2xGW for ; Fri, 29 Jul 2022 12:34:29 +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 4LvRm513sQzpj; Fri, 29 Jul 2022 12:34:29 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1659098069; 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=XAodSeRBUQkkXCY+/Eoy0GJZZds+GDB0INXzsrtpi3s=; b=XJXmFKL5F7WQDufPojSbaGhREHP/HSGtMu53uC3BWjlYAd2soGvS2VAWYq1zyiqSdjeNnH ORHg2qkEjKpTRnCQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1659098069; 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=XAodSeRBUQkkXCY+/Eoy0GJZZds+GDB0INXzsrtpi3s=; b=J7HtYmLc6uhxgIJsfenDldeRfgdODOb7QgMPJt5WiWn593rYjLMSQzdtoMfZvwMY8VG/vR bZsdlN0580Udapl7uU2k6oKCtuJGzrYbvkgtV230hyRQTAGskFDBVdBvWuk+kMUFttc4G+ 5EdrV8UI8qwrbgkUww+lFyVoLrtOAgjZLSfmx2R3/rb9+KSBwvkVNN6y3LLlTmxmIfU7FR Or4kySVMAFYmZpr5ZWDw5Iz15fQG1pmw8GgbLumzXmSz92URxxzATZNCaf3VeuGXwqwBSG 8VV3UbkTquIckicC3PB2oCkUxx6P04hqsqDA+NMHLFEFjJyMRZIyVEQXTxwNng== From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH 01/11] borgbackup: Fix Bug#12611 by adding fuse mount capability with pyfuser3 Date: Fri, 29 Jul 2022 14:34:10 +0200 Message-Id: <20220729123420.98567-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 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 =