* [bug#58414] [PATCH] gnu: Update guile-eris to 1.0.0.
@ 2022-10-10 15:08 pukkamustard
2022-10-11 11:10 ` bug#58414: " Christopher Baines
2022-10-11 13:09 ` [bug#58414] " Ludovic Courtès
0 siblings, 2 replies; 4+ messages in thread
From: pukkamustard @ 2022-10-10 15:08 UTC (permalink / raw)
To: 58414; +Cc: pukkamustard
* gnu/packages/guile-xyz.scm (guile-eris): Update to 1.0.0.
---
gnu/packages/guile-xyz.scm | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 1760ba331e..379d9aa264 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -4485,15 +4485,15 @@ (define-public guile-sodium
(define-public guile-eris
(package
(name "guile-eris")
- (version "0.2.0")
+ (version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://inqlab.net/git/eris.git")
+ (url "https://codeberg.org/eris/guile-eris.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
- (sha256 (base32 "1ijglmwkdy1l87gj429qfjis0v8b1zlxhbyfhx5za8664h68nqka"))))
+ (sha256 (base32 "0d4wbjwwaxk0zn5gjhl86qhvk1aisgzp1vnvy4xbvrv5ydqpgyqm"))))
(build-system gnu-build-system)
(arguments '())
(native-inputs
@@ -4502,17 +4502,18 @@ (define-public guile-eris
pkg-config
texinfo
;; test dependency
- guile-srfi-180))
+ guile-srfi-180
+ guile-quickcheck))
(inputs (list guile-3.0))
(propagated-inputs
(list guile-sodium))
(synopsis "Guile implementation of the Encoding for Robust Immutable Storage (ERIS)")
(description
- "Guile-ERIS is the reference implementation of the Encoding for Robust
-Immutable Storage (ERIS). ERIS allows arbitrary content to be encoded into
-uniformly sized, encrypted blocks that can be reassembled using a short
-read-capability.")
- (home-page "https://inqlab.net/git/eris.git")
+ "Guile-ERIS is a Guile implementation of the @url{http://purl.org/eris,
+Encoding for Robust Immutable Storage (ERIS)}. ERIS allows arbitrary content
+to be encoded into uniformly sized, encrypted blocks that can be reassembled
+using a short read-capability.")
+ (home-page "https://codeberg.org/eris/guile-eris")
(license license:gpl3+)))
(define-public guile-r6rs-protobuf
--
2.38.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#58414: [PATCH] gnu: Update guile-eris to 1.0.0.
2022-10-10 15:08 [bug#58414] [PATCH] gnu: Update guile-eris to 1.0.0 pukkamustard
@ 2022-10-11 11:10 ` Christopher Baines
2022-10-11 13:09 ` [bug#58414] " Ludovic Courtès
1 sibling, 0 replies; 4+ messages in thread
From: Christopher Baines @ 2022-10-11 11:10 UTC (permalink / raw)
To: pukkamustard; +Cc: 58414-done
[-- Attachment #1: Type: text/plain, Size: 302 bytes --]
pukkamustard <pukkamustard@posteo.net> writes:
> * gnu/packages/guile-xyz.scm (guile-eris): Update to 1.0.0.
> ---
> gnu/packages/guile-xyz.scm | 19 ++++++++++---------
> 1 file changed, 10 insertions(+), 9 deletions(-)
Thanks, pushed to master as 59911ae29442aba18bcb53233e793d8f3d264504.
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#58414] [PATCH] gnu: Update guile-eris to 1.0.0.
2022-10-10 15:08 [bug#58414] [PATCH] gnu: Update guile-eris to 1.0.0 pukkamustard
2022-10-11 11:10 ` bug#58414: " Christopher Baines
@ 2022-10-11 13:09 ` Ludovic Courtès
2022-10-11 19:15 ` pukkamustard
1 sibling, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2022-10-11 13:09 UTC (permalink / raw)
To: pukkamustard; +Cc: 58414
Hi pukkamustard,
pukkamustard <pukkamustard@posteo.net> skribis:
> * gnu/packages/guile-xyz.scm (guile-eris): Update to 1.0.0.
Congrats on 1 point 0! :-)
I feel bad for dropping the ball but I hope we can follow up on your
work on substitute distribution at
<https://issues.guix.gnu.org/52555#8>.
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#58414] [PATCH] gnu: Update guile-eris to 1.0.0.
2022-10-11 13:09 ` [bug#58414] " Ludovic Courtès
@ 2022-10-11 19:15 ` pukkamustard
0 siblings, 0 replies; 4+ messages in thread
From: pukkamustard @ 2022-10-11 19:15 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 58414
Ludovic Courtès <ludo@gnu.org> writes:
> Congrats on 1 point 0! :-)
Thanks!
> I feel bad for dropping the ball but I hope we can follow up on your
> work on substitute distribution at
> <https://issues.guix.gnu.org/52555#8>.
No need to feel bad. On the contrary, thank you for your support and
valuable feedback on previous versions. An updated to #52555 is already
in progress. Work is going slowly, but steadily and I hope to send in an
update in a couple of weeks.
-pukkamustard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-10-11 19:25 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-10 15:08 [bug#58414] [PATCH] gnu: Update guile-eris to 1.0.0 pukkamustard
2022-10-11 11:10 ` bug#58414: " Christopher Baines
2022-10-11 13:09 ` [bug#58414] " Ludovic Courtès
2022-10-11 19:15 ` pukkamustard
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.