[PATCH 0/3] gnu: magic-wormhole: Update to 0.14.0

  • Done
  • quality assurance status badge
Details
2 participants
  • Sharlatan Hellseher
  • TakeV
Owner
unassigned
Submitted by
TakeV
Severity
normal

Debbugs page

T
(address . guix-patches@gnu.org)(name . TakeV)(address . takev@disroot.org)
cover.1712182575.git.takev@disroot.org
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
T
[PATCH 3/3] gnu: magic-wormhole: Update to 0.14.0.
(address . 70171@debbugs.gnu.org)(name . TakeV)(address . takev@disroot.org)
7ee5b881e823350e0a31752fc9baf134d1a00827.1712182575.git.takev@disroot.org
* 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(-)

Toggle diff (38 lines)
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
T
[PATCH 1/3] gnu: Add python-iterable-io.
(address . 70171@debbugs.gnu.org)(name . TakeV)(address . takev@disroot.org)
d994fa7c40e19547c28a1944409c5de51f725344.1712182575.git.takev@disroot.org
* gnu/packages/python-xyz.scm (python-iterable-io): New variable.

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

Toggle diff (30 lines)
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
T
[PATCH 2/3] gnu: Add python-zipstream-ng.
(address . 70171@debbugs.gnu.org)(name . TakeV)(address . takev@disroot.org)
79a6fce081e0e28afd6630b3977aad5242173500.1712182575.git.takev@disroot.org
* gnu/packages/python-xyz.scm (python-zipstream-ng): New variable.

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

Toggle diff (31 lines)
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
S
S
Sharlatan Hellseher wrote on 6 Apr 15:35 -0700
[PATCH 0/3] gnu: magic-wormhole: Update to 0.14.0
(address . 70171-done@debbugs.gnu.org)
8734rym867.fsf@gmail.com
Pushed as fd116510b2..eaccfececd to master with minor modifications.

--
Oleg
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmYRziAACgkQdtcnv/Ys
0rUE1BAAl2bztAtMTv7YFg3C4ewBsoBrgJKEvUy2WbLZi1nG8T7KKwv5ai2USJYb
pd34B6ai2LC/l+JHqazIqafnMv+lqv0qHQQc4RzgTnfgTysAczfHSmh0cZhf9WVx
gNUNFl0NhqW+HOzWGkzBsWBYNQ/rwhKVGAa1EGLj7U3HIL2ko38ZHseBlhLXjyRY
DgsIXwQ+5+aNvmAuwRYVz/a4a5qYL1Nadg5wFKYMDG5ehqxo46408EVz3xTOH1DH
M5qsgwA0jGcIdML6XHXHcQJI7X9B0rbw7zX0lVtzNF85HkIaatvThULi0qbn5ryb
0OltvESXa8uNrBj6keISCtJy1HnBuqCB94qVSZ/eENZKAR0JoNYdZWl3kuX3+zVG
BFPw7KGJzavTgHe55sFWS4RERRFnm0/dJhXRBm/XUswGqiOz3Y9T+muru+2/mRtG
THw755+L81Jo/YDjSf0z6rIc2vRQivxOMlLWBcMvWd+P43LUQLjs/jqhjsVfR1a2
duaA0U9+0JwHmaxxKq0OStJYiAfLSOmFSj7yhIzHjBAZOUqHWcsBOVwwj+7j7eQW
tohexNosv1C03Ac50MLPrPXaBXf0d4iQYw8GwElxxBblTk3toFAK91+eHoEy9USu
cziTdzgZHik9vgtxnLlpLnzSpGQnoiJgWvx9zqfqUzXlzA3ndaQ=
=NX2M
-----END PGP SIGNATURE-----

Closed
?
Your comment

This issue is archived.

To comment on this conversation send an email to 70171@patchwise.org

To respond to this issue using the mumi CLI, first switch to it
mumi current 70171
Then, you may apply the latest patchset in this issue (with sign off)
mumi am -- -s
Or, compose a reply to this issue
mumi compose
Or, send patches to this issue
mumi send-email *.patch