GNU bug report logs - #67721
Borg backup 1.2.7 update

Previous Next

Package: guix-patches;

Reported by: Leo Famulari <leo <at> famulari.name>

Date: Sat, 9 Dec 2023 00:26:01 UTC

Severity: normal

Done: Leo Famulari <leo <at> famulari.name>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 67721 in the body.
You can then email your comments to 67721 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#67721; Package guix-patches. (Sat, 09 Dec 2023 00:26:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Leo Famulari <leo <at> famulari.name>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 09 Dec 2023 00:26:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: guix-patches <at> gnu.org
Subject: Borg backup 1.2.7 update
Date: Fri, 8 Dec 2023 19:24:54 -0500
These patches update Borg to 1.2.7 and clean up some associated
packages.




Information forwarded to guix-patches <at> gnu.org:
bug#67721; Package guix-patches. (Sat, 09 Dec 2023 00:27:01 GMT) Full text and rfc822 format available.

Message #8 received at 67721 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 67721 <at> debbugs.gnu.org
Subject: [PATCH 1/3] gnu: Borg: Update to 1.2.7.
Date: Fri,  8 Dec 2023 19:26:20 -0500
* gnu/packages/backup.scm (borg): Update to 1.2.7.
[inputs]: Replace python-msgpack-1.0.2 with python-msgpack.

Change-Id: I8529d737d90105f877f1c099f4b3afa9b0ed9fa8
---
 gnu/packages/backup.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index 49b0fe2620..58c071e1fa 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -644,13 +644,13 @@ (define-public libchop
 (define-public borg
   (package
     (name "borg")
-    (version "1.2.6")
+    (version "1.2.7")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "borgbackup" version))
        (sha256
-        (base32 "178klb3pglhhz553frf928v7zvaiqvri9fbhj33yx7h3hvqgi9mp"))
+        (base32 "06j1v4bw9jkjh6m29ns5sigmp0cslcf0cyy8rrqij11w72ijhgzn"))
        (modules '((guix build utils)))
        (snippet
         #~(begin
@@ -759,7 +759,7 @@ (define-public borg
            lz4
            openssl
            ;; This is the latest version of msgpack accepted by 'setup.py'.
-           python-msgpack-1.0.2
+           python-msgpack
            ;; FUSE 3 isn't working well, so we stick with FUSE 2 for now:
            ;; <https://issues.guix.gnu.org/53407>
            python-llfuse

base-commit: 06f25a9a85be1bbe7a709e58ce41c1a834e5f1ae
-- 
2.41.0





Information forwarded to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#67721; Package guix-patches. (Sat, 09 Dec 2023 00:27:02 GMT) Full text and rfc822 format available.

Message #11 received at 67721 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 67721 <at> debbugs.gnu.org
Subject: [PATCH 2/3] gnu: Remove python-msgpack-1.0.2.
Date: Fri,  8 Dec 2023 19:26:21 -0500
This package is no longer used in Guix.

* gnu/packages/python-xyz.scm (python-msgpack-1.0.2): Remove variable.

Change-Id: I6216003e6312c5587ae3471ba9870865ee68f680
---
 gnu/packages/python-xyz.scm | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 86f8d81689..0babe0dd0a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13743,17 +13743,6 @@ (define-public python-msgpack
     (home-page "https://pypi.org/project/msgpack/")
     (license license:asl2.0)))
 
-(define-public python-msgpack-1.0.2
-  (package
-    (inherit python-msgpack)
-    (version "1.0.2")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "msgpack" version))
-              (sha256
-               (base32
-                "1109s2yynrahwi64ikax68hx0mbclz8p35afmpphw5dwynb49q7s"))))))
-
 ;; This msgpack library's name changed from "python-msgpack" to "msgpack" with
 ;; release 0.5. Some packages like borg still call it by the old name for now.
 ;; <https://bugs.gnu.org/30662>
-- 
2.41.0





Information forwarded to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#67721; Package guix-patches. (Sat, 09 Dec 2023 00:27:02 GMT) Full text and rfc822 format available.

Message #14 received at 67721 <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 67721 <at> debbugs.gnu.org
Subject: [PATCH 3/3] gnu: python-msgpack-transitional: Update code comment.
Date: Fri,  8 Dec 2023 19:26:22 -0500
* gnu/packages/python-xyz.scm (python-msgpack-transitional): Update comment.

Change-Id: I93afe78c40ac87c6e5147d286cf257ec9a8afd68
---
 gnu/packages/python-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0babe0dd0a..404177e9cd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13744,7 +13744,7 @@ (define-public python-msgpack
     (license license:asl2.0)))
 
 ;; This msgpack library's name changed from "python-msgpack" to "msgpack" with
-;; release 0.5. Some packages like borg still call it by the old name for now.
+;; release 0.5. Some packages like poetry still call it by the old name for now.
 ;; <https://bugs.gnu.org/30662>
 (define-public python-msgpack-transitional
   (package
-- 
2.41.0





Reply sent to Leo Famulari <leo <at> famulari.name>:
You have taken responsibility. (Sat, 16 Dec 2023 20:32:01 GMT) Full text and rfc822 format available.

Notification sent to Leo Famulari <leo <at> famulari.name>:
bug acknowledged by developer. (Sat, 16 Dec 2023 20:32:01 GMT) Full text and rfc822 format available.

Message #19 received at 67721-done <at> debbugs.gnu.org (full text, mbox):

From: Leo Famulari <leo <at> famulari.name>
To: 67721-done <at> debbugs.gnu.org
Subject: Re: [PATCH 1/3] gnu: Borg: Update to 1.2.7.
Date: Sat, 16 Dec 2023 15:31:30 -0500
On Fri, Dec 08, 2023 at 07:26:20PM -0500, Leo Famulari wrote:
> * gnu/packages/backup.scm (borg): Update to 1.2.7.
> [inputs]: Replace python-msgpack-1.0.2 with python-msgpack.

Pushed as f061bc5ba3bbd3265fad812b74aaa46a7190956c




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 14 Jan 2024 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 157 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.