* [bug#69654] [PATCH 0/3] Add go-github-com-jbenet packages.
@ 2024-03-08 18:20 Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 1/3] gnu: Add go-github-com-jbenet-goprocess Artyom V. Poptsov
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-03-08 18:20 UTC (permalink / raw)
To: 69654; +Cc: Artyom V. Poptsov
This patch series adds some go-github-com-jbenet packages that are required
for the newer Kubo (IPFS) versions.
Artyom V. Poptsov (3):
gnu: Add go-github-com-jbenet-goprocess.
gnu: Add go-github-com-jbenet-go-temp-err-catcher.
gnu: Add go-github-com-jbenet-go-random.
gnu/packages/golang-xyz.scm | 73 +++++++++++++++++++++++++++++++++++++
1 file changed, 73 insertions(+)
base-commit: 8b0500729754e208bff983563bfe60836de9f30b
--
2.41.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [bug#69654] [PATCH 1/3] gnu: Add go-github-com-jbenet-goprocess.
2024-03-08 18:20 [bug#69654] [PATCH 0/3] Add go-github-com-jbenet packages Artyom V. Poptsov
@ 2024-03-08 18:23 ` Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 2/3] gnu: Add go-github-com-jbenet-go-temp-err-catcher Artyom V. Poptsov
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-03-08 18:23 UTC (permalink / raw)
To: 69654; +Cc: Artyom V. Poptsov
* gnu/packages/golang-xyz.scm (go-github-com-jbenet-goprocess): New variable.
Change-Id: I5683a9e0df7bb1a17b2e813ab6c611f0b6c2ea9c
---
gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0b3db6e379..7e71dca14c 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -987,6 +987,32 @@ (define-public go-github-com-hhrutter-tiff
@end itemize")
(license license:bsd-3)))
+(define-public go-github-com-jbenet-goprocess
+ (package
+ (name "go-github-com-jbenet-goprocess")
+ (version "0.1.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jbenet/goprocess")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1z4a5skx9kh2c727pc6zz0vhf9v8acd320s7z0f1kwy3y1nbdhjk"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/jbenet/goprocess"))
+ (home-page "https://github.com/jbenet/goprocess")
+ (synopsis "Manage process life cycles in Go")
+ (description
+ "@code{goprocess} introduces a way to manage process lifecycles in
+Go. It is much like @code{go.net/context} (it actually uses a Context), but it is
+more like a Context-WaitGroup hybrid. @code{goprocess} is about being able to start
+and stop units of work, which may receive @code{Close} signals from many clients.")
+ (license license:expat)))
+
(define-public go-github-com-jinzhu-copier
(package
(name "go-github-com-jinzhu-copier")
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#69654] [PATCH 2/3] gnu: Add go-github-com-jbenet-go-temp-err-catcher.
2024-03-08 18:20 [bug#69654] [PATCH 0/3] Add go-github-com-jbenet packages Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 1/3] gnu: Add go-github-com-jbenet-goprocess Artyom V. Poptsov
@ 2024-03-08 18:23 ` Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 3/3] gnu: Add go-github-com-jbenet-go-random Artyom V. Poptsov
2024-03-17 0:13 ` bug#69654: [PATCH 0/3] Add go-github-com-jbenet packages Sharlatan Hellseher
3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-03-08 18:23 UTC (permalink / raw)
To: 69654; +Cc: Artyom V. Poptsov
* gnu/packages/golang-xyz.scm (go-github-com-jbenet-go-temp-err-catcher): New
variable.
Change-Id: Ic92f036cb9f45a8f55872a218aa42e18716cc2b9
---
gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 7e71dca14c..979e964a03 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -987,6 +987,29 @@ (define-public go-github-com-hhrutter-tiff
@end itemize")
(license license:bsd-3)))
+(define-public go-github-com-jbenet-go-temp-err-catcher
+ (package
+ (name "go-github-com-jbenet-go-temp-err-catcher")
+ (version "0.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jbenet/go-temp-err-catcher")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0n482jhh6jwq43jj21xkq8grqzx78hjh7f44p0q3n01zp1dsh97r"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/jbenet/go-temp-err-catcher"))
+ (home-page "https://github.com/jbenet/go-temp-err-catcher")
+ (synopsis "Error handling helper library")
+ (description "Package @code{temperrcatcher} provides a @code{TempErrCatcher}
+object, which implements simple error-retrying functionality.")
+ (license license:expat)))
+
(define-public go-github-com-jbenet-goprocess
(package
(name "go-github-com-jbenet-goprocess")
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#69654] [PATCH 3/3] gnu: Add go-github-com-jbenet-go-random.
2024-03-08 18:20 [bug#69654] [PATCH 0/3] Add go-github-com-jbenet packages Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 1/3] gnu: Add go-github-com-jbenet-goprocess Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 2/3] gnu: Add go-github-com-jbenet-go-temp-err-catcher Artyom V. Poptsov
@ 2024-03-08 18:23 ` Artyom V. Poptsov
2024-03-17 0:13 ` bug#69654: [PATCH 0/3] Add go-github-com-jbenet packages Sharlatan Hellseher
3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-03-08 18:23 UTC (permalink / raw)
To: 69654; +Cc: Artyom V. Poptsov
* gnu/packages/golang-xyz.scm (go-github-com-jbenet-go-random): New variable.
Change-Id: I7b7f510af61f4bf79aa633ffaa4bd4852f55fc47
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 979e964a03..7af3193f14 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -987,6 +987,30 @@ (define-public go-github-com-hhrutter-tiff
@end itemize")
(license license:bsd-3)))
+(define-public go-github-com-jbenet-go-random
+ (package
+ (name "go-github-com-jbenet-go-random")
+ (version "0.0.0-20190219211222-123a90aedc0c")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jbenet/go-random")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0kgx19m8p76rmin8s8y6j1padciv1dx37qzy7jkh9bw49ai3haw3"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/jbenet/go-random"))
+ (home-page "https://github.com/jbenet/go-random")
+ (synopsis "Go library and a program that outputs randomness")
+ (description
+ "This is a Unix utility that outputs randomness. It is a thin
+wrapper around @code{crypto/rand}.")
+ (license license:expat)))
+
(define-public go-github-com-jbenet-go-temp-err-catcher
(package
(name "go-github-com-jbenet-go-temp-err-catcher")
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* bug#69654: [PATCH 0/3] Add go-github-com-jbenet packages.
2024-03-08 18:20 [bug#69654] [PATCH 0/3] Add go-github-com-jbenet packages Artyom V. Poptsov
` (2 preceding siblings ...)
2024-03-08 18:23 ` [bug#69654] [PATCH 3/3] gnu: Add go-github-com-jbenet-go-random Artyom V. Poptsov
@ 2024-03-17 0:13 ` Sharlatan Hellseher
3 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-03-17 0:13 UTC (permalink / raw)
To: 69654-done
[-- Attachment #1: Type: text/plain, Size: 59 bytes --]
Hi,
Pushed as af714ebcee..e1e65c5930 to master.
--
Oleg
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-17 0:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-08 18:20 [bug#69654] [PATCH 0/3] Add go-github-com-jbenet packages Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 1/3] gnu: Add go-github-com-jbenet-goprocess Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 2/3] gnu: Add go-github-com-jbenet-go-temp-err-catcher Artyom V. Poptsov
2024-03-08 18:23 ` [bug#69654] [PATCH 3/3] gnu: Add go-github-com-jbenet-go-random Artyom V. Poptsov
2024-03-17 0:13 ` bug#69654: [PATCH 0/3] Add go-github-com-jbenet packages Sharlatan Hellseher
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).