[PATCH] gnu: magic-wormhole: Update to 0.13.0.

  • Done
  • quality assurance status badge
Details
6 participants
  • Dale Mellor
  • Christopher Baines
  • Munyoki Kilyungi
  • normalmente
  • Sharlatan Hellseher
  • Tanguy LE CARROUR
Owner
unassigned
Submitted by
normalmente
Severity
normal

Debbugs page

N
N
normalmente wrote on 17 Mar 13:15 -0700
(address . guix-patches@gnu.org)(name . normalmente)(address . normally_js@posteo.net)
2e3cfb91c6237eda2e1ad11f44a120f6faea28b8.1710706506.git.normally_js@posteo.net
* gnu/packages/magic-wormhole.scm (magic-wormhole): Update to 0.13.0.
[arguments]: Skip tests. Add gexps.

Change-Id: I8502f38d7d0e4bf7a9b03c466c761f5a95157cb2
---
gnu/packages/magic-wormhole.scm | 28 ++++++++++++++++------------
1 file changed, 16 insertions(+), 12 deletions(-)

Toggle diff (64 lines)
diff --git a/gnu/packages/magic-wormhole.scm b/gnu/packages/magic-wormhole.scm
index 86a8013aa1..3b02426cd9 100644
--- a/gnu/packages/magic-wormhole.scm
+++ b/gnu/packages/magic-wormhole.scm
@@ -1,5 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
+;;; Copyright © 2024 normally_js <normally_js@posteo.net>
+
;;;
;;; This file is part of GNU Guix.
;;;
@@ -20,6 +22,7 @@ (define-module (gnu packages magic-wormhole)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix licenses)
+ #:use-module (guix gexp)
#:use-module (guix build-system python)
#:use-module (gnu packages check)
#:use-module (gnu packages python-check)
@@ -106,26 +109,27 @@ (define-public magic-wormhole-transit-relay
(define-public magic-wormhole
(package
(name "magic-wormhole")
- (version "0.12.0")
+ (version "0.13.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "magic-wormhole" version))
(sha256
(base32
- "0q41j99718y7m95zg1vaybnsp31lp6lhyqkbv4yqz5ys6jixh3qv"))))
+ "05hm5pnrxli69a28h3pbgx6s6pwy8279l506kha7y3i7hs1dcfxc"))))
(build-system python-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- ;; XXX I can't figure out how to build the docs properly.
- ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34515#101
- (add-after 'install 'install-docs
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (man (string-append out "/share/man/man1")))
- (install-file "docs/wormhole.1" man))
- #t)))))
+ (list
+ #:tests? #f ; Tests fail due to issue unrelated to dependencies.
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; XXX I can't figure out how to build the docs properly.
+ ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34515#101
+ (add-after 'install 'install-docs
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (man (string-append out "/share/man/man1")))
+ (install-file "docs/wormhole.1" man)))))))
(native-inputs
(list python-mock
;; XXX These are required for the test suite but end up being referenced

base-commit: edfb05e16d409ab71f5cc5c91747b693f0054d59
--
2.41.0
C
C
Christopher Baines wrote on 20 Mar 07:49 -0700
(name . normalmente)(address . normally_js@posteo.net)
87wmpxj6t2.fsf@cbaines.net
normalmente <normally_js@posteo.net> writes:

Toggle quote (57 lines)
> * gnu/packages/magic-wormhole.scm (magic-wormhole): Update to 0.13.0.
> [arguments]: Skip tests. Add gexps.
>
> Change-Id: I8502f38d7d0e4bf7a9b03c466c761f5a95157cb2
> ---
> gnu/packages/magic-wormhole.scm | 28 ++++++++++++++++------------
> 1 file changed, 16 insertions(+), 12 deletions(-)
>
> diff --git a/gnu/packages/magic-wormhole.scm b/gnu/packages/magic-wormhole.scm
> index 86a8013aa1..3b02426cd9 100644
> --- a/gnu/packages/magic-wormhole.scm
> +++ b/gnu/packages/magic-wormhole.scm
> @@ -1,5 +1,7 @@
> ;;; GNU Guix --- Functional package management for GNU
> ;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
> +;;; Copyright © 2024 normally_js <normally_js@posteo.net>
> +
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -20,6 +22,7 @@ (define-module (gnu packages magic-wormhole)
> #:use-module (guix packages)
> #:use-module (guix download)
> #:use-module (guix licenses)
> + #:use-module (guix gexp)
> #:use-module (guix build-system python)
> #:use-module (gnu packages check)
> #:use-module (gnu packages python-check)
> @@ -106,26 +109,27 @@ (define-public magic-wormhole-transit-relay
> (define-public magic-wormhole
> (package
> (name "magic-wormhole")
> - (version "0.12.0")
> + (version "0.13.0")
> (source
> (origin
> (method url-fetch)
> (uri (pypi-uri "magic-wormhole" version))
> (sha256
> (base32
> - "0q41j99718y7m95zg1vaybnsp31lp6lhyqkbv4yqz5ys6jixh3qv"))))
> + "05hm5pnrxli69a28h3pbgx6s6pwy8279l506kha7y3i7hs1dcfxc"))))
> (build-system python-build-system)
> (arguments
> - '(#:phases
> - (modify-phases %standard-phases
> - ;; XXX I can't figure out how to build the docs properly.
> - ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34515#101
> - (add-after 'install 'install-docs
> - (lambda* (#:key outputs #:allow-other-keys)
> - (let* ((out (assoc-ref outputs "out"))
> - (man (string-append out "/share/man/man1")))
> - (install-file "docs/wormhole.1" man))
> - #t)))))
> + (list
> + #:tests? #f ; Tests fail due to issue unrelated to dependencies.

I don't really understand your comment here, why is the relation to
dependencies relevant?

I did have a look at whether this issue was reported upstream, and it
has been [1], and it looks like the cause/resolution is dependency
related.


Toggle quote (14 lines)
> + #:phases
> + #~(modify-phases %standard-phases
> + ;; XXX I can't figure out how to build the docs properly.
> + ;; https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34515#101
> + (add-after 'install 'install-docs
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let* ((out (assoc-ref outputs "out"))
> + (man (string-append out "/share/man/man1")))
> + (install-file "docs/wormhole.1" man)))))))
> (native-inputs
> (list python-mock
> ;; XXX These are required for the test suite but end up being referenced
>
> base-commit: edfb05e16d409ab71f5cc5c91747b693f0054d59
-----BEGIN PGP SIGNATURE-----

iQKlBAEBCgCPFiEEPonu50WOcg2XVOCyXiijOwuE9XcFAmX698lfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF
ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcRHG1haWxAY2Jh
aW5lcy5uZXQACgkQXiijOwuE9Xdv3g//TAfsSjkjkl9WTsM6ZachcZfOjBvtcf/k
xeW/LCojMrZyMS7ahXjAOmB4P9OneOecoK1SSx/qDiE3PLcbXJ/+DQmEiljaIZON
l/QYYgv3gHOQbcHbMzwwMZJApBoIMlCmliU3aft9jvB4UB7nDevxxILcGCA2jIWZ
tvAfKRHyUMnTcf5p/qYfE9wxqMAugKrsn0gcpngJtoOa6Z98o7NYA2yWT4KP96bL
VDk+Y6GjgfbYXjOaE1jXK1a64Y1KRFg7IVZbNV49HRjWY0chpjd2F46eUfldq1/f
UL0Gukh9WNLd0OSD8GF64hLK6eLC7AmTR1oTfjlTfaXAlfTyIA6MSCqH8zukWaOE
/O6pzjTklsRK1dJ1nJMFykfrizb8+YdtvT/1A70eiAfi05p7vZoH4Yl3PQYhqL7E
iEf3nZuApl4l96Fxd2PkepLCxsHM++TFe49MTmNlQv+20U4trJmEImkpNq7smm5Z
BnltTOjn5GTI9bOGZJokGWw9hj21XtnVwCOChaUYG80zdsP1nRFpY1efmIlcXF6F
MSk/XRmvdmOotw2WEsyVwc/NGyumcvGtaD3FPc2TawIRIKoba081d6tihMuri0u1
PrcGXSw2/YnNLms9iKJmttRS1ZTQyEjwlDclzIsC5+VJYfAyau/aZ+JdTdGgTHXp
PSQiDLKK9YA=
=60W+
-----END PGP SIGNATURE-----

N
N
normalmente wrote on 20 Mar 11:55 -0700
[PATCH 1/2] gnu: Add python-noiseprotocol.
(address . 69867@debbugs.gnu.org)
363ccec2b669280c76d8bbb9fb7749735b850a05.1710960666.git.normally_js@posteo.net
* gnu/packages/python-web.scm (python-noiseprotocol): New variable.

Change-Id: Id62f22f9fd3f019beded5ce5c0fe9123c34f8bb2
---
gnu/packages/python-web.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)

Toggle diff (39 lines)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9ad081beb1..67bc193b4d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -63,6 +63,7 @@
;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
+;;; Copyright © 2024 normally_js <normally_js@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -3422,6 +3423,24 @@ (define-public python-ndg-httpsclient
(home-page "https://github.com/cedadev/ndg_httpsclient/")
(license license:bsd-3)))
+(define-public python-noiseprotocol
+ (package
+ (name "python-noiseprotocol")
+ (version "0.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "noiseprotocol" version))
+ (sha256
+ (base32 "0ifnj0mpbqsfqba9n12vf5yzxj4qf2gxql3ry43qyshgnrqsi4mh"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-cryptography))
+ (home-page "https://github.com/plizonczyk/noiseprotocol")
+ (synopsis "Implementation of Noise Protocol Framework")
+ (description
+ "This package provides an implementation of Noise Protocol Framework.")
+ (license license:expat)))
+
(define-public python-websocket-client
(package
(name "python-websocket-client")
--
2.41.0
N
N
normalmente wrote on 20 Mar 11:55 -0700
[PATCH 2/2] gnu: magic-wormhole: Update to 0.13.0.
(address . 69867@debbugs.gnu.org)
a341dbebca429164aa81bb8552528dc1ba15bda9.1710960666.git.normally_js@posteo.net
* gnu/packages/magic-wormhole.scm (magic-wormhole): Update to 0.13.0.
[native-inputs]: Add python-noiseprotocol to make tests pass.

Change-Id: I59008f27081efcc3b558dad59bef6ebdc9b34f38
---
gnu/packages/magic-wormhole.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

Toggle diff (38 lines)
diff --git a/gnu/packages/magic-wormhole.scm b/gnu/packages/magic-wormhole.scm
index 86a8013aa1..f9ccf8c1d3 100644
--- a/gnu/packages/magic-wormhole.scm
+++ b/gnu/packages/magic-wormhole.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
+;;; Copyright © 2024 normally_js <normally_js@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -106,14 +107,14 @@ (define-public magic-wormhole-transit-relay
(define-public magic-wormhole
(package
(name "magic-wormhole")
- (version "0.12.0")
+ (version "0.13.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "magic-wormhole" version))
(sha256
(base32
- "0q41j99718y7m95zg1vaybnsp31lp6lhyqkbv4yqz5ys6jixh3qv"))))
+ "05hm5pnrxli69a28h3pbgx6s6pwy8279l506kha7y3i7hs1dcfxc"))))
(build-system python-build-system)
(arguments
'(#:phases
@@ -128,6 +129,7 @@ (define-public magic-wormhole
#t)))))
(native-inputs
(list python-mock
+ python-noiseprotocol
;; XXX These are required for the test suite but end up being referenced
;; by the built package.
;; https://bugs.gnu.org/25235
--
2.41.0
N
N
normalmente wrote on 20 Mar 11:52 -0700
[PATCH 0/2] gnu: magic-wormhole: Update to 0.13.0.
(address . 69867@debbugs.gnu.org)
cover.1710960666.git.normally_js@posteo.net
I meant to write "related to" instead of "unrelated," my bad. I looked over
the link you attached to your email and yes all that one needs to do is add
the `python-noiseprotocol' package to make the tests succeed.

I didn't find that so thanks for pointing that out to me. This is a revised patchset.

normalmente (2):
gnu: Add python-noiseprotocol.
gnu: magic-wormhole: Update to 0.13.0.

gnu/packages/magic-wormhole.scm | 6 ++++--
gnu/packages/python-web.scm | 19 +++++++++++++++++++
2 files changed, 23 insertions(+), 2 deletions(-)


base-commit: 69951a61a1d8f1f2135ea2dc836738be282b97bc
--
2.41.0
T
T
Tanguy LE CARROUR wrote on 21 Mar 01:41 -0700
Re: [bug#69867] [PATCH 1/2] gnu: Add python-noiseprotocol.
171101047539.12926.16325090825361818580@bioneland.org
Hi normalmente,

Quoting normalmente (2024-03-20 19:55:49)
Toggle quote (9 lines)
> * gnu/packages/magic-wormhole.scm (magic-wormhole): Update to 0.13.0.
> [arguments]: Skip tests. Add gexps.
>
> Change-Id: I8502f38d7d0e4bf7a9b03c466c761f5a95157cb2
> […]
> * gnu/packages/python-web.scm (python-noiseprotocol): New variable.
>
> Change-Id: Id62f22f9fd3f019beded5ce5c0fe9123c34f8bb2

This looks good to me.
It might be worth disabling only the one failing test, though!?

Regards,

--
Tanguy
N
N
normally_js wrote on 21 Mar 11:59 -0700
55c45f96-e664-674c-42c2-0502591eeed0@posteo.net
Short answer: I don't know how to disable specific tests within the
python-build-system, but since we already have a solution that works it
likely doesn't matter.

But I'd assume that getting tests to pass is better than being forced to
disable them and python-team should *not* be affected by this addition.

---

normalmente

On 3/21/24 04:41, Tanguy LE CARROUR wrote:
Toggle quote (16 lines)
> Hi normalmente,
>
> Quoting normalmente (2024-03-20 19:55:49)
>> * gnu/packages/magic-wormhole.scm (magic-wormhole): Update to 0.13.0.
>> [arguments]: Skip tests. Add gexps.
>>
>> Change-Id: I8502f38d7d0e4bf7a9b03c466c761f5a95157cb2
>> […]
>> * gnu/packages/python-web.scm (python-noiseprotocol): New variable.
>>
>> Change-Id: Id62f22f9fd3f019beded5ce5c0fe9123c34f8bb2
> This looks good to me.
> It might be worth disabling only the one failing test, though!?
>
> Regards,
>
T
T
Tanguy LE CARROUR wrote on 22 Mar 02:32 -0700
171109995921.22023.15345518586065905969@bioneland.org
Hi,


Quoting normally_js (2024-03-21 19:59:15)
Toggle quote (6 lines)
> Short answer: I don't know how to disable specific tests within the
> python-build-system, but since we already have a solution that works it
> likely doesn't matter.
> But I'd assume that getting tests to pass is better than being forced to
> disable them and python-team should *not* be affected by this addition.

My bad! I should have suggested the code snippet to disable it!
As the error message is:

```
ERROR: test_large_frame (wormhole.test.dilate.test_record.Record)
Noise only allows 64KiB message, but the API allows up to 4GiB
----------------------------------------------------------------------
Traceback (most recent call last):
[…]
File "/tmp/guix-build-magic-wormhole-0.13.0.drv-0/magic-wormhole-0.13.0/src/wormhole/_dilation/connector.py", line 45, in build_noise
return NoiseConnection.from_name(NOISEPROTO)
AttributeError: 'NoneType' object has no attribute 'from_name'
```

… the failing test is `test_large_frame`. You can disable it the same way
it is done in, for instance, `magic-wormhole-mailbox-server`:

```scheme
(arguments
'(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-some-tests
(lambda _
(substitute* "src/wormhole/_dilation/connector.py"
(("test_large_frame") "disabled_test_large_frame"))
#t)))))
```

But, actually, the problem comes from the fact that the `noise` module
is not available. You must add `python-noiseprotocol` as an input to the
package. Either as a native input for the test to pass, or, if it make
sense, as a propagated input for it to be available at run time.
Hence, the patch adding `python-noiseprotocol` should come before the one
updating `magic-wormhole`.

Regards,

--
Tanguy
S
S
Sharlatan Hellseher wrote on 23 Mar 14:03 -0700
[PATCH] gnu: magic-wormhole: Update to 0.13.0.
(address . 69867-done@debbugs.gnu.org)
875xxc7j9r.fsf@gmail.com
Hi,

I've pushed 2 patches as fd579def37..68455ddf4b to master.

As the whole modules contains just 3 packages so I've applied some
refactoring:

- 28bc0e870b * gnu: magic-wormhole: Fix home page.
- edf7bd05e1 * gnu: magic-wormhole-transit-relay: Remove some native inputs.
- 7c11136764 * gnu: magic-wormhole-transit-relay: Fix indentation.
- b877fead3b * gnu: magic-wormhole-mailbox-server: Fix indentation.
- 8444c7b0dc * gnu: magic-wormhole: Limit amount of loaded symbols.
- 70386806e1 * gnu: magic-wormhole-transit-relay: Simplify package.
- 9972487417 * gnu: magic-wormhole-mailbox-server: Simplify package.
- 3b43d01c61 * gnu: magic-wormhole: Add licenses prefix.
- d72fe75367 * gnu: magic-wormhole: Fix indentation.
- fb667a7a8a * gnu: magic-wormhole: Simplify package.

Thanks,
Oleg
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmX/Q7AACgkQdtcnv/Ys
0rVOJxAAsq+B1IxBqTT+V7+8MkhHcS9xl43ZAADyx0C5jE84HmN9At4gxpwhTliM
sudB27OC8CA+s/fHv16SK0O8ITMI7zVOViU+3WBqymRmCYqxeaR6f0pqTKCyapEv
I0xsP1F8WSvkPR4YwpTlKJ3lKsbZil4mfI63xnh3Ubm7YoA/p8qesaaSHqimzDBB
EDPsX2HPrERBF/HEtELUA/Zzm1BOaoCwbyIpGQaiVYZpJ0wHMT+5NNxu8RN4yAQj
1Gi1v+TZrtwrBdLpB7vMcE/sM6HrTwpVe5r2JgG0NKkYmkMV9ZAVH8JSbhAzLIqU
UIcWRaKIXGDzt/CZ/qhi6zyh4uh8B2MbVOSoyFd81SFrJnNdHBvWJWl2iOZJEQg9
7iYimoG8KAwGfkTqIQ3bHuF3C/CmJE71TAcNKpsA7gGRW1g3WLrAGaSbT6obmPOE
p3J938+SqTCPeV8XohgmjDdfBXtiz7tOefZfQlLELCORVMLkaU8q8NjqrZBYyOAW
/9v/UeVb5f3Puc7eAOjcLUU0G0YQ+3bFjzU81cD+vsclJaJE0a85a+o5cELeqfJ1
Qp05RCqtfGwQn4aNlOIof9iwpND6+yLzci48S2DY5an4cDqODwGN+qB9gqxUyTb4
axLTNO4ocC5mnpGBdFsczYAPELWljNN7yZqZZLJ3gTwGiXTowiM=
=d6Kx
-----END PGP SIGNATURE-----

Closed
M
M
Munyoki Kilyungi wrote on 24 Mar 12:43 -0700
Re: [bug#69867] [PATCH 1/2] gnu: Add python-noiseprotocol.
87y1a7v2k4.fsf@bonfacemunyoki.com
Tested this myself and it builds just fine. +1.
normalmente <normally_js@posteo.net> anaandika:
Toggle quote (49 lines)
> * gnu/packages/python-web.scm (python-noiseprotocol): New variable.
>
> Change-Id: Id62f22f9fd3f019beded5ce5c0fe9123c34f8bb2
> ---
> gnu/packages/python-web.scm | 19 +++++++++++++++++++
> 1 file changed, 19 insertions(+)
>
> diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
> index 9ad081beb1..67bc193b4d 100644
> --- a/gnu/packages/python-web.scm
> +++ b/gnu/packages/python-web.scm
> @@ -63,6 +63,7 @@
> ;;; Copyright © 2023 Ivan Vilata-i-Balaguer <ivan@selidor.net>
> ;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
> ;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
> +;;; Copyright © 2024 normally_js <normally_js@posteo.net>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -3422,6 +3423,24 @@ (define-public python-ndg-httpsclient
> (home-page "https://github.com/cedadev/ndg_httpsclient/")
> (license license:bsd-3)))
>
> +(define-public python-noiseprotocol
> + (package
> + (name "python-noiseprotocol")
> + (version "0.3.1")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (pypi-uri "noiseprotocol" version))
> + (sha256
> + (base32 "0ifnj0mpbqsfqba9n12vf5yzxj4qf2gxql3ry43qyshgnrqsi4mh"))))
> + (build-system pyproject-build-system)
> + (propagated-inputs (list python-cryptography))
> + (home-page "https://github.com/plizonczyk/noiseprotocol")
> + (synopsis "Implementation of Noise Protocol Framework")
> + (description
> + "This package provides an implementation of Noise Protocol Framework.")
> + (license license:expat)))
> +
> (define-public python-websocket-client
> (package
> (name "python-websocket-client")
> --
> 2.41.0
>
>
>
--
(Life is like a pencil that will surely run out,
but will leave the beautiful writing of life.)
(D4F09EB110177E03C28E2FE1F5BBAE1E0392253F
(hkp://keys.openpgp.org))
-----BEGIN PGP SIGNATURE-----

iQJKBAEBCAA0FiEE1PCesRAXfgPCji/h9buuHgOSJT8FAmYAgksWHG1lQGJvbmZh
Y2VtdW55b2tpLmNvbQAKCRD1u64eA5IlPyKjD/0VzR/FnaKof+WoiMdBHCole1AF
JSObSNj+w/KZQuxGK8c5lN6MjLlGRMKx4QbniQN0I5Ja8fFogIqfv13OU05d1FTk
8GDToPWHXhK18m5+2Ps72Q1MCewjw36+4K3WYcc91s9sH0QsIAPu0KwZAmxZrCqQ
nW94eHJLpW4On6A+b+cm7RT3TNQxFktt2LDG0Vn1LBkpRVKXbB6wlXDYKXOJ+ZWP
z+kf/1uzrIBl4An2/76XOinQkfK6CYVGn9UH73rMDJTJnylZVXdcUbQR+EmR5DAW
U9FJ+oBUfOKCqU62boJKbEgAjLSvkWXlsAZigOjutGUw2dHSkVix8uXFRbeDV7JC
B3yC1g4yh6RxXOH//ltJaNM23L6Edf8uwQoefKDC4v6iWzdhW0mFZqd1Nll53VL9
ePRF7Dhht+dFx5S3whT1h6f1BRojmD6vINuRahzdmdxlHnZV1co9y9/bCqinHX8w
aI1GgVD4ZvFa1OJrK+i9Po5d7UBYDDqy3hwzDHtngMEbjFcdH3LSPUkYixPthdjW
LvhZVoItyZ6BoLEQ1V978xspEmAfoN6NN7OS9c3Bgvf8xIGR+Sfv9B/t5PEVFP+o
IQh79UGqGioAcaBJYh3gXDAsF3sQyK8rRgkmbDdY6oJY1ok0NW2E39Qom46cywSj
KMatxH96bOXDcCO7kQ==
=u/lO
-----END PGP SIGNATURE-----

D
D
Dale Mellor wrote on 14 Apr 12:42 -0700
Close: current Guix already has successor version (0.14.0) of this package
(address . 69867@debbugs.gnu.org)
c5f2c1437da81a149dd47f0fcabdf78dd128214b.camel@rdmp.org

?
Your comment

This issue is archived.

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

To respond to this issue using the mumi CLI, first switch to it
mumi current 69867
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