From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:40967) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jMtJI-0002Rv-A1 for guix-patches@gnu.org; Fri, 10 Apr 2020 09:03:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jMtJG-0004RL-Vl for guix-patches@gnu.org; Fri, 10 Apr 2020 09:03:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43331) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jMtJG-0004RB-Sm for guix-patches@gnu.org; Fri, 10 Apr 2020 09:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jMtJG-0005xG-P2 for guix-patches@gnu.org; Fri, 10 Apr 2020 09:03:02 -0400 Subject: [bug#40539] [PATCH] Add ZBackup Resent-Message-ID: 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 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 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 Date: Fri, 10 Apr 2020 15:01:56 +0200 Message-ID: <87sghb4hq3.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40539@debbugs.gnu.org --=-=-= 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 --=-=-=--