GNU bug report logs - #70171
[PATCH 0/3] gnu: magic-wormhole: Update to 0.14.0

Previous Next

Package: guix-patches;

Reported by: TakeV <takev <at> disroot.org>

Date: Wed, 3 Apr 2024 22:20:20 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

To reply to this bug, email your comments to 70171 AT debbugs.gnu.org.
There is no need to reopen the bug first.

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#70171; Package guix-patches. (Wed, 03 Apr 2024 22:20:21 GMT) Full text and rfc822 format available.

Acknowledgement sent to TakeV <takev <at> disroot.org>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 03 Apr 2024 22:20:22 GMT) Full text and rfc822 format available.

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

From: TakeV <takev <at> disroot.org>
To: guix-patches <at> gnu.org
Cc: TakeV <takev <at> disroot.org>
Subject: [PATCH 0/3] gnu: magic-wormhole: Update to 0.14.0
Date: Wed,  3 Apr 2024 18:16:26 -0400
Update required adding a couple of new dependencies. I think I added them in logical places, but the python-zipstream-ng might be a bit close to the bottom?

TakeV (3):
  gnu: Add python-iterable-io.
  gnu: Add python-zipstream-ng.
  gnu: magic-wormhole: Update to 0.14.0.

 gnu/packages/magic-wormhole.scm |  8 +++++---
 gnu/packages/python-xyz.scm     | 35 +++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+), 3 deletions(-)


base-commit: c9cd16c630ccba655b93ff32fd9a99570b4f5373
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#70171; Package guix-patches. (Wed, 03 Apr 2024 22:31:02 GMT) Full text and rfc822 format available.

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

From: TakeV <takev <at> disroot.org>
To: 70171 <at> debbugs.gnu.org
Cc: TakeV <takev <at> disroot.org>
Subject: [PATCH 3/3] gnu: magic-wormhole: Update to 0.14.0.
Date: Wed,  3 Apr 2024 18:21:26 -0400
* gnu/packages/magic-wormhole.scm (magic-wormhole): Update to 0.14.0.
* gnu/packages/magic-wormhole.scm (magic-wormhole)[propagated-inputs]: Add new
dependencies for latest version

Change-Id: I1c91db96bf4a96ab1758925deaae87a174b4b03d
---
 gnu/packages/magic-wormhole.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/magic-wormhole.scm b/gnu/packages/magic-wormhole.scm
index 3c63319710..607e1601ee 100644
--- a/gnu/packages/magic-wormhole.scm
+++ b/gnu/packages/magic-wormhole.scm
@@ -101,14 +101,14 @@ (define-public magic-wormhole-transit-relay
 (define-public magic-wormhole
   (package
     (name "magic-wormhole")
-    (version "0.13.0")
+    (version "0.14.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "magic-wormhole" version))
        (sha256
         (base32
-         "05hm5pnrxli69a28h3pbgx6s6pwy8279l506kha7y3i7hs1dcfxc"))))
+         "105hsv7ck83bs29929zpb29aygr69q00mxpgq9xw7xxzi2gj6v80"))))
     (build-system pyproject-build-system)
     (arguments
      (list
@@ -131,11 +131,13 @@ (define-public magic-wormhole
            python-hkdf
            python-humanize
            python-noiseprotocol
+           python-iterable-io
            python-pynacl
            python-spake2
            python-tqdm
            python-twisted
-           python-txtorcon))
+           python-txtorcon
+           python-zipstream-ng))
     (home-page "https://github.com/magic-wormhole/magic-wormhole")
     (synopsis "Securely transfer data between computers")
     (description
-- 
2.41.0





Information forwarded to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#70171; Package guix-patches. (Wed, 03 Apr 2024 22:31:02 GMT) Full text and rfc822 format available.

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

From: TakeV <takev <at> disroot.org>
To: 70171 <at> debbugs.gnu.org
Cc: TakeV <takev <at> disroot.org>
Subject: [PATCH 1/3] gnu: Add python-iterable-io.
Date: Wed,  3 Apr 2024 18:21:24 -0400
* gnu/packages/python-xyz.scm (python-iterable-io): New variable.

Change-Id: Icd4b10e27b5f4963fd3e3ea516676e84b3c5ecd4
---
 gnu/packages/python-xyz.scm | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cd10f304c8..9487b1fac9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34979,6 +34979,23 @@ (define-public python-itemloaders
 parsing rules in a single place.")
     (license license:bsd-3)))
 
+(define-public python-iterable-io
+  (package
+    (name "python-iterable-io")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "iterable-io" version))
+       (sha256
+        (base32 "0g4cn522n4dv6ly8pwf97dc62rr4f7my38v0bh6vmac7jmrip7pv"))))
+    (build-system pyproject-build-system)
+    (home-page "https://github.com/pR0Ps/iterable-io")
+    (synopsis "Adapt generators and other iterables to a file-like interface")
+    (description
+     "Adapt generators and other iterables to a file-like interface")
+    (license license:lgpl3)))
+
 (define-public python-iteround
   (package
     (name "python-iteround")
-- 
2.41.0





Information forwarded to lars <at> 6xq.net, marius <at> gnu.org, me <at> bonfacemunyoki.com, sharlatanus <at> gmail.com, tanguy <at> bioneland.org, jgart <at> dismail.de, guix-patches <at> gnu.org:
bug#70171; Package guix-patches. (Wed, 03 Apr 2024 22:31:03 GMT) Full text and rfc822 format available.

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

From: TakeV <takev <at> disroot.org>
To: 70171 <at> debbugs.gnu.org
Cc: TakeV <takev <at> disroot.org>
Subject: [PATCH 2/3] gnu: Add python-zipstream-ng.
Date: Wed,  3 Apr 2024 18:21:25 -0400
* gnu/packages/python-xyz.scm (python-zipstream-ng): New variable.

Change-Id: Idf0c0d471aa1eda45cf649874f6a79b6b9a7937b
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9487b1fac9..e2afdc9024 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -36236,6 +36236,24 @@ (define-public python-zeroc-ice-3.6
                (base32
                 "0mikjfvq26kh8asnn9v55z41pap4c5ypymqnwwi4xkavc3mzyda2"))))))
 
+(define-public python-zipstream-ng
+  (package
+    (name "python-zipstream-ng")
+    (version "1.7.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "zipstream-ng" version))
+       (sha256
+        (base32 "1z4zdqqs2rg3z36khgj96bpggv34av337isfv7yxg32prawj687r"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-pytest python-pytest-cov))
+    (home-page "https://github.com/pR0Ps/zipstream-ng")
+    (synopsis "A modern and easy to use streamable zip file generator")
+    (description
+     "This package provides a modern and easy to use streamable zip file generator")
+    (license license:lgpl3)))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar
-- 
2.41.0





Reply sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
You have taken responsibility. (Sat, 06 Apr 2024 22:36:01 GMT) Full text and rfc822 format available.

Notification sent to TakeV <takev <at> disroot.org>:
bug acknowledged by developer. (Sat, 06 Apr 2024 22:36:01 GMT) Full text and rfc822 format available.

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

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 70171-done <at> debbugs.gnu.org
Subject: [PATCH 0/3] gnu: magic-wormhole: Update to 0.14.0
Date: Sat, 06 Apr 2024 23:35:12 +0100
[Message part 1 (text/plain, inline)]
Pushed as fd116510b2..eaccfececd to master with minor modifications.

--
Oleg
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 27 days ago.

Previous Next


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