* [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml.
@ 2018-05-15 13:09 Rouby Pierre-Antoine
2018-05-15 13:23 ` [bug#31463] [PATCH 2/6] gnu: Add go-github-com-getsentry-raven-go Rouby Pierre-Antoine
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-15 13:09 UTC (permalink / raw)
To: 31463; +Cc: Rouby Pierre-Antoine
* gnu/packages/golang.scm (go-github-com-burntsushi-toml): New variable.
---
gnu/packages/golang.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index c6fc68468..9360fe4b2 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2018 Tomáš Čech <sleep_walker@gnu.org>
+;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1300,3 +1301,30 @@ support functions for dealing with terminals, as commonly found on UNIX
systems.")
(home-page "https://go.googlesource.com/crypto/")
(license license:bsd-3))))
+
+(define-public go-github-com-burntsushi-toml
+ (let ((commit
+ "a368813c5e648fee92e5f6c30e3944ff9d5e8895")
+ (revision "0"))
+ (package
+ (name "go-github-com-burntsushi-toml")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/BurntSushi/toml.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1sjxs2lwc8jpln80s4rlzp7nprbcljhy5mz4rf9995gq93wqnym5"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/BurntSushi/toml"))
+ (home-page "https://github.com/BurntSushi/toml")
+ (synopsis "Toml parsre and encoder for Go")
+ (description "This package is toml parser and encoder for Go. This
+package interface similar to Go's standard library @code{json} and @code{xml}
+package.")
+ (license license:expat))))
--
2.17.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#31463] [PATCH 2/6] gnu: Add go-github-com-getsentry-raven-go.
2018-05-15 13:09 [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Rouby Pierre-Antoine
@ 2018-05-15 13:23 ` Rouby Pierre-Antoine
2018-05-15 13:24 ` [bug#31463] [PATCH 3/6] gnu: Add go-github-com-hashicorp-go-version Rouby Pierre-Antoine
` (4 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-15 13:23 UTC (permalink / raw)
To: 31463; +Cc: Rouby Pierre-Antoine
* gnu/packages/golang.scm (go-github-com-getsentry-raven-go): New variable.
---
gnu/packages/golang.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9360fe4b2..3f67a6316 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1328,3 +1328,30 @@ systems.")
package interface similar to Go's standard library @code{json} and @code{xml}
package.")
(license license:expat))))
+
+(define-public go-github-com-getsentry-raven-go
+ (let ((commit
+ "dffeb57df75d6a911f00232155194e43d79d38d7")
+ (revision "0"))
+ (package
+ (name "go-github-com-getsentry-raven-go")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/getsentry/raven-go.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "13sb9rvl3369m7fah3ss9g0hwky259snqfn8gmbr0h5zvp651lja"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/getsentry/raven-go"))
+ (home-page
+ "https://github.com/getsentry/raven-go")
+ (synopsis "Sentry client in Go")
+ (description "This package is Go client API for the Sentry event/error
+logging system.")
+ (license license:bsd-3))))
--
2.17.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#31463] [PATCH 3/6] gnu: Add go-github-com-hashicorp-go-version.
2018-05-15 13:09 [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Rouby Pierre-Antoine
2018-05-15 13:23 ` [bug#31463] [PATCH 2/6] gnu: Add go-github-com-getsentry-raven-go Rouby Pierre-Antoine
@ 2018-05-15 13:24 ` Rouby Pierre-Antoine
2018-05-15 13:24 ` [bug#31463] [PATCH 4/6] gnu: Add go-github-com-jpillora-backoff Rouby Pierre-Antoine
` (3 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-15 13:24 UTC (permalink / raw)
To: 31463; +Cc: Rouby Pierre-Antoine
* gnu/packages/golang.scm (go-github-com-hashicorp-go-version): New variable.
---
gnu/packages/golang.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3f67a6316..32c726ece 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1355,3 +1355,33 @@ package.")
(description "This package is Go client API for the Sentry event/error
logging system.")
(license license:bsd-3))))
+
+(define-public go-github-com-hashicorp-go-version
+ (let ((commit
+ "03c5bf6be031b6dd45afec16b1cf94fc8938bc77")
+ (revision "0"))
+ (package
+ (name "go-github-com-hashicorp-go-version")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hashicorp/go-version.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0sjq57gpfznaqdrbyb2p0bn90g9h661cvr0jrk6ngags4pbw14ik"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/hashicorp/go-version"))
+ (home-page
+ "https://github.com/hashicorp/go-version")
+ (synopsis "Go library for parsing and verifying versions and version
+constraints")
+ (description "This package is a library for parsing versions and version
+constraints, and verifying versions against a set of constraints. It can sort
+a collection of versions properly, handles prerelease/beta versions, can
+increment versions.")
+ (license license:mpl2.0))))
--
2.17.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#31463] [PATCH 4/6] gnu: Add go-github-com-jpillora-backoff.
2018-05-15 13:09 [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Rouby Pierre-Antoine
2018-05-15 13:23 ` [bug#31463] [PATCH 2/6] gnu: Add go-github-com-getsentry-raven-go Rouby Pierre-Antoine
2018-05-15 13:24 ` [bug#31463] [PATCH 3/6] gnu: Add go-github-com-hashicorp-go-version Rouby Pierre-Antoine
@ 2018-05-15 13:24 ` Rouby Pierre-Antoine
2018-05-15 13:25 ` [bug#31463] [PATCH 5/6] gnu: Add go-github-com-stretchr-testify Rouby Pierre-Antoine
` (2 subsequent siblings)
5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-15 13:24 UTC (permalink / raw)
To: 31463; +Cc: Rouby Pierre-Antoine
* gnu/packages/golang.scm (go-github-com-jpillora-backoff): New variable.
---
gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 32c726ece..37c31fab3 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1385,3 +1385,29 @@ constraints, and verifying versions against a set of constraints. It can sort
a collection of versions properly, handles prerelease/beta versions, can
increment versions.")
(license license:mpl2.0))))
+
+(define-public go-github-com-jpillora-backoff
+ (let ((commit
+ "06c7a16c845dc8e0bf575fafeeca0f5462f5eb4d")
+ (revision "0"))
+ (package
+ (name "go-github-com-jpillora-backoff")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jpillora/backoff.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0xhvxr7bm47czdc5hy3kl508z3y4j91i2jm7vg774i52zych6k4l"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/jpillora/backoff"))
+ (home-page "https://github.com/jpillora/backoff")
+ (synopsis "Simple exponential backoff counter in Go")
+ (description "This package is a simple exponential backoff counter in
+Go.")
+ (license license:expat))))
--
2.17.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#31463] [PATCH 5/6] gnu: Add go-github-com-stretchr-testify.
2018-05-15 13:09 [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Rouby Pierre-Antoine
` (2 preceding siblings ...)
2018-05-15 13:24 ` [bug#31463] [PATCH 4/6] gnu: Add go-github-com-jpillora-backoff Rouby Pierre-Antoine
@ 2018-05-15 13:25 ` Rouby Pierre-Antoine
2018-05-15 13:25 ` [bug#31463] [PATCH 6/6] gnu: Add go-github-com-tevino-abool Rouby Pierre-Antoine
2018-05-23 11:52 ` bug#31463: [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Ludovic Courtès
5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-15 13:25 UTC (permalink / raw)
To: 31463; +Cc: Rouby Pierre-Antoine
* gnu/packages/golang.scm (go-github-com-stretchr-testify): New variable.
---
gnu/packages/golang.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 37c31fab3..679ccc5d3 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1411,3 +1411,38 @@ increment versions.")
(description "This package is a simple exponential backoff counter in
Go.")
(license license:expat))))
+
+(define-public go-github-com-stretchr-testify
+ (let ((commit
+ "b1f989447a57594c728884458a39abf3a73447f7")
+ (revision "0"))
+ (package
+ (name "go-github-com-stretchr-testify")
+ (version (git-version "1.1.4" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/stretchr/testify.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0p0gkqzh2p8r5g0rxm885ljl7ghih7h7hx9w562imx5ka0vdgixv"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/stretchr/testify"))
+ (home-page "https://github.com/stretchr/testify")
+ (synopsis "Provide many tools for testifying that your code will behave
+as you intend.")
+ (description "This package provide many tools for testifying that your
+code will behave as you intend.
+
+Features include:
+@itemize
+@item Easy assertions
+@item Mocking
+@item HTTP response trapping
+@item Testing suite interfaces and functions.
+@end itemize")
+ (license license:expat))))
--
2.17.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#31463] [PATCH 6/6] gnu: Add go-github-com-tevino-abool.
2018-05-15 13:09 [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Rouby Pierre-Antoine
` (3 preceding siblings ...)
2018-05-15 13:25 ` [bug#31463] [PATCH 5/6] gnu: Add go-github-com-stretchr-testify Rouby Pierre-Antoine
@ 2018-05-15 13:25 ` Rouby Pierre-Antoine
2018-05-23 11:52 ` bug#31463: [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Ludovic Courtès
5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-15 13:25 UTC (permalink / raw)
To: 31463; +Cc: Rouby Pierre-Antoine
* gnu/packages/golang.scm (go-github-com-tevino-abool): New variable.
---
gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 679ccc5d3..ba180d1b3 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1446,3 +1446,29 @@ Features include:
@item Testing suite interfaces and functions.
@end itemize")
(license license:expat))))
+
+(define-public go-github-com-tevino-abool
+ (let ((commit
+ "3c25f2fe7cd0ef3eabefce1d90efd69a65d35b12")
+ (revision "0"))
+ (package
+ (name "go-github-com-tevino-abool")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tevino/abool.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1wxqrclxk93q0aj15z596dx2y57x9nkhi64nbrr5cxnhxn8vwixm"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/tevino/abool"))
+ (home-page "https://github.com/tevino/abool")
+ (synopsis "Atomic boolean library for Go code")
+ (description "This package is atomic boolean library for Go code,
+optimized for performance yet simple to use.")
+ (license license:expat))))
--
2.17.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* bug#31463: [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml.
2018-05-15 13:09 [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Rouby Pierre-Antoine
` (4 preceding siblings ...)
2018-05-15 13:25 ` [bug#31463] [PATCH 6/6] gnu: Add go-github-com-tevino-abool Rouby Pierre-Antoine
@ 2018-05-23 11:52 ` Ludovic Courtès
5 siblings, 0 replies; 7+ messages in thread
From: Ludovic Courtès @ 2018-05-23 11:52 UTC (permalink / raw)
To: Rouby Pierre-Antoine; +Cc: 31463-done
Hello!
I’ve applied the whole series (I tweaked one or two synopses on the
way.) One step closer to things like gitlab-runner. :-)
Thank you!
Ludo’.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-05-23 11:53 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-15 13:09 [bug#31463] [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Rouby Pierre-Antoine
2018-05-15 13:23 ` [bug#31463] [PATCH 2/6] gnu: Add go-github-com-getsentry-raven-go Rouby Pierre-Antoine
2018-05-15 13:24 ` [bug#31463] [PATCH 3/6] gnu: Add go-github-com-hashicorp-go-version Rouby Pierre-Antoine
2018-05-15 13:24 ` [bug#31463] [PATCH 4/6] gnu: Add go-github-com-jpillora-backoff Rouby Pierre-Antoine
2018-05-15 13:25 ` [bug#31463] [PATCH 5/6] gnu: Add go-github-com-stretchr-testify Rouby Pierre-Antoine
2018-05-15 13:25 ` [bug#31463] [PATCH 6/6] gnu: Add go-github-com-tevino-abool Rouby Pierre-Antoine
2018-05-23 11:52 ` bug#31463: [PATCH 1/6] gnu: Add go-github-com-burntsushi-toml Ludovic Courtès
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.