From unknown Mon Jun 23 02:20:08 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#40539 <40539@debbugs.gnu.org> To: bug#40539 <40539@debbugs.gnu.org> Subject: Status: [PATCH] Add ZBackup Reply-To: bug#40539 <40539@debbugs.gnu.org> Date: Mon, 23 Jun 2025 09:20:08 +0000 retitle 40539 [PATCH] Add ZBackup reassign 40539 guix-patches submitter 40539 Nicolas Goaziou severity 40539 normal tag 40539 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 10 09:02:07 2020 Received: (at submit) by debbugs.gnu.org; 10 Apr 2020 13:02:07 +0000 Received: from localhost ([127.0.0.1]:54877 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jMtIN-0005w4-EK for submit@debbugs.gnu.org; Fri, 10 Apr 2020 09:02:07 -0400 Received: from lists.gnu.org ([209.51.188.17]:42823) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jMtIL-0005vx-N9 for submit@debbugs.gnu.org; Fri, 10 Apr 2020 09:02:06 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40855) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jMtIH-0002NI-JR for guix-patches@gnu.org; Fri, 10 Apr 2020 09:02:05 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jMtIF-0003x1-R6 for guix-patches@gnu.org; Fri, 10 Apr 2020 09:02:01 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:52045) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jMtIF-0003vd-KQ for guix-patches@gnu.org; Fri, 10 Apr 2020 09:01:59 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 73598C0004 for ; Fri, 10 Apr 2020 13:01:57 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add ZBackup Date: Fri, 10 Apr 2020 15:01:56 +0200 Message-ID: <87sghb4hq3.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 217.70.183.198 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Hello, The following patch adds zbackup. Feedback welcome. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-zbackup.patch Content-Transfer-Encoding: quoted-printable Content-Description: Add zbackup >From 1591f91035de7e2c036ff7a608a729b4420ffa74 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 10 Apr 2020 14:58:47 +0200 Subject: [PATCH] gnu: Add zbackup. * gnu/packages/backup.scm (zbackup): New variable. --- gnu/packages/backup.scm | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 4d24dff0a3..40dfce7094 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -14,6 +14,7 @@ ;;; Copyright =C2=A9 2018, 2019 Ricardo Wurmus ;;; Copyright =C2=A9 2019 Alex Vong ;;; Copyright =C2=A9 2019 Marius Bakke +;;; Copyright =C2=A9 2020 Nicolas Goaziou ;;; ;;; This file is part of GNU Guix. ;;; @@ -976,6 +977,42 @@ precious backup space. @end itemize") (license license:bsd-2))) =20 +(define-public zbackup + (package + (name "zbackup") + (version "1.4.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zbackup/zbackup.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14l1kyxg7pccpax3d6qcpmdycb70kn3fxp1a59w64hqy2493hngl")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) ;no test + (inputs + `(("lzo" ,lzo) + ("libressl" ,libressl) + ("protobuf" ,protobuf) + ("xz" ,xz) + ("zlib" ,zlib))) + (home-page "http://zbackup.org") + (synopsis "Versatile deduplicating backup tool") + (description + "ZBackup is a globally-deduplicating backup tool, based on the +ideas found in Rsync. Feed a large @file{.tar} into it, and it will +store duplicate regions of it only once, then compress and optionally +encrypt the result. Feed another @file{.tar} file, and it will also +re-use any data found in any previous backups. This way only new +changes are stored, and as long as the files are not very different, +the amount of storage required is very low. Any of the backup files +stored previously can be read back in full at any time. The program +is format-agnostic, so you can feed virtually any files to it.") + (license license:gpl2+))) + (define-public burp (package (name "burp") --=20 2.26.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 30 08:05:18 2020 Received: (at 40539-done) by debbugs.gnu.org; 30 Apr 2020 12:05:18 +0000 Received: from localhost ([127.0.0.1]:45445 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jU7wM-00060S-5F for submit@debbugs.gnu.org; Thu, 30 Apr 2020 08:05:18 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:56195) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jU7wJ-00060F-Cx for 40539-done@debbugs.gnu.org; Thu, 30 Apr 2020 08:05:16 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 3D189C000B; Thu, 30 Apr 2020 12:05:08 +0000 (UTC) From: Nicolas Goaziou To: help-debbugs@gnu.org (GNU bug Tracking System) Subject: Re: bug#40539: Acknowledgement ([PATCH] Add ZBackup) References: <87sghb4hq3.fsf@nicolasgoaziou.fr> Date: Thu, 30 Apr 2020 14:05:08 +0200 In-Reply-To: (GNU bug Tracking System's message of "Fri, 10 Apr 2020 13:03:02 +0000") Message-ID: <878sidch6z.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40539-done Cc: 40539-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Applied. Closing. From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 30 09:35:48 2020 Received: (at 40539) by debbugs.gnu.org; 30 Apr 2020 13:35:48 +0000 Received: from localhost ([127.0.0.1]:45500 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jU9Lw-0003tl-1x for submit@debbugs.gnu.org; Thu, 30 Apr 2020 09:35:48 -0400 Received: from sender4-of-o53.zoho.com ([136.143.188.53]:21399) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jU9Lu-0003td-1d for 40539@debbugs.gnu.org; Thu, 30 Apr 2020 09:35:46 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1588253740; cv=none; d=zohomail.com; s=zohoarc; b=LzunTmojt3B2gvMzV4aXgoSJuuTxhKUAD+clWyTkZei1efYDzHrPiqV0/5KTLWLKGhqOViyArX4kNBLVPd1ei2k8UHrEV1QVEX0IBmB20UwkCgf++V8Mfdd9LtSEkNtqE/n8Z2GyHfNFF8zCPpSUR94tdOGrNOxtPxelt44N7aI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1588253740; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=XveghYr3xWhVM1nxw591CKJTWDqXCOGl0uqUGDDlZK0=; b=a+XCp/v70lCV+3vI5ZbVSwYjVXQgS/VpL4GJCrphgfLdM17PQoivEbuv1ZwJ8mZZTnIRUaL1d57Q2jqGFe4F8FjMZ199nZ3zvzzr9j8z6AT4fY27frGychA2jOfqz/Tm6rJZBmSgY6DUUcruLB7rbuYkZ+TlvuVnnwqwXi4Qqtk= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1588253740; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; bh=XveghYr3xWhVM1nxw591CKJTWDqXCOGl0uqUGDDlZK0=; b=OTdvoUvf9xrunXL5ch2c/O71nnhj14VRwDRZhG86Zqxs1cKIYVJg8je38cWCRAiV 5GeGGW0I+BjPUmhayPoxp+YD7GcPESYkDaK0hwjp086gLK1pBruliIOajgCE6+Xv0wK cOUx3DZyJvO1D7YW8HvSawXLaF5EA7M5zL0jPiCg= Received: from localhost (p54AD4F86.dip0.t-ipconnect.de [84.173.79.134]) by mx.zohomail.com with SMTPS id 15882537363871009.677690129441; Thu, 30 Apr 2020 06:35:36 -0700 (PDT) References: <87sghb4hq3.fsf@nicolasgoaziou.fr> User-agent: mu4e 1.2.0; emacs 26.3 From: Ricardo Wurmus To: Nicolas Goaziou Subject: Re: [bug#40539] [PATCH] Add ZBackup In-reply-to: <87sghb4hq3.fsf@nicolasgoaziou.fr> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Thu, 30 Apr 2020 15:35:32 +0200 Message-ID: <87mu6t5c63.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-ZohoMailClient: External X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 40539 Cc: 40539@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi Nicolas, > The following patch adds zbackup. This broke =E2=80=9Cguix pull=E2=80=9D momentarily because your patch didn= =E2=80=99t import two modules: (guix build-system cmake) and (gnu packages protobuf). It=E2=80=99s now fixed. --=20 Ricardo From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 30 09:37:53 2020 Received: (at 40539) by debbugs.gnu.org; 30 Apr 2020 13:37:53 +0000 Received: from localhost ([127.0.0.1]:45504 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jU9Nx-0003wz-DW for submit@debbugs.gnu.org; Thu, 30 Apr 2020 09:37:53 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]:56809) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jU9Nr-0003wh-I1 for 40539@debbugs.gnu.org; Thu, 30 Apr 2020 09:37:51 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 742B7C0004; Thu, 30 Apr 2020 13:37:40 +0000 (UTC) From: Nicolas Goaziou To: Ricardo Wurmus Subject: Re: [bug#40539] [PATCH] Add ZBackup References: <87sghb4hq3.fsf@nicolasgoaziou.fr> <87mu6t5c63.fsf@elephly.net> Date: Thu, 30 Apr 2020 15:37:39 +0200 In-Reply-To: <87mu6t5c63.fsf@elephly.net> (Ricardo Wurmus's message of "Thu, 30 Apr 2020 15:35:32 +0200") Message-ID: <87y2qdaycc.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40539 Cc: 40539@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello, Ricardo Wurmus writes: > This broke =E2=80=9Cguix pull=E2=80=9D momentarily because your patch did= n=E2=80=99t import two > modules: (guix build-system cmake) and (gnu packages protobuf). Oh! Apparently, I forgot to "./pre-inst-env guix build" on this one. Sorry about that. > It=E2=80=99s now fixed. Thank you! Regards, --=20 Nicolas Goaziou From unknown Mon Jun 23 02:20:08 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 29 May 2020 11:24:05 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator