all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli.
@ 2018-05-28 14:59 Rouby Pierre-Antoine
  2018-05-28 15:01 ` [bug#31625] [PATCH 2/6] gnu: Add go-github-com-blang-semver Rouby Pierre-Antoine
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-28 14:59 UTC (permalink / raw)
  To: 31625; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-urfave-cli): 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 ba180d1b3..e7fcfa379 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1472,3 +1472,30 @@ Features include:
       (description "This package is atomic boolean library for Go code,
 optimized for performance yet simple to use.")
       (license license:expat))))
+
+(define-public go-github-com-urfave-cli
+  (let ((commit "cfb38830724cc34fedffe9a2a29fb54fa9169cd1")
+        (revision "0"))
+    (package
+      (name "go-github-com-urfave-cli")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/urfave/cli.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/urfave/cli"))
+      (home-page "https://github.com/urfave/cli")
+      (synopsis "This package is library for building command line apps in
+Go")
+      (description "A simple, fast, and fun package for building command line
+apps in GO.  The goal is to enable developers to write fast and distributable
+command line applications in an expressive way.")
+      (license license:expat))))
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#31625] [PATCH 2/6] gnu: Add go-github-com-blang-semver.
  2018-05-28 14:59 [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli Rouby Pierre-Antoine
@ 2018-05-28 15:01 ` Rouby Pierre-Antoine
  2018-05-28 15:02 ` [bug#31625] [PATCH 3/6] gnu: Add go-github-com-emicklei-go-restful Rouby Pierre-Antoine
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-28 15:01 UTC (permalink / raw)
  To: 31625; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-blang-semver): 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 e7fcfa379..d232e3040 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1499,3 +1499,30 @@ Go")
 apps in GO.  The goal is to enable developers to write fast and distributable
 command line applications in an expressive way.")
       (license license:expat))))
+
+(define-public go-github-com-blang-semver
+  (let ((commit "60ec3488bfea7cca02b021d106d9911120d25fe9")
+        (revision "0"))
+    (package
+      (name "go-github-com-blang-semver")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/blang/semver.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "19pli07y5592g4dyjyj0jq5rn548vc3fz0qg3624vm1j5828p1c2"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/blang/semver"))
+      (home-page "https://github.com/blang/semver")
+      (synopsis "This package is a Semantic Versioning library written in
+golang")
+      (description "Semver is library form Semantic Versioning in written
+golang.")
+      (license license:expat))))
+
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#31625] [PATCH 3/6] gnu: Add go-github-com-emicklei-go-restful.
  2018-05-28 14:59 [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli Rouby Pierre-Antoine
  2018-05-28 15:01 ` [bug#31625] [PATCH 2/6] gnu: Add go-github-com-blang-semver Rouby Pierre-Antoine
@ 2018-05-28 15:02 ` Rouby Pierre-Antoine
  2018-05-28 15:03 ` [bug#31625] [PATCH 4/6] gnu: Add go-github-com-google-cadvisor Rouby Pierre-Antoine
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-28 15:02 UTC (permalink / raw)
  To: 31625; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-emicklei-go-restful): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d232e3040..ee460c030 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1526,3 +1526,27 @@ golang")
 golang.")
       (license license:expat))))
 
+(define-public go-github-com-emicklei-go-restful
+  (let ((commit "89ef8af493ab468a45a42bb0d89a06fccdd2fb22")
+        (revision "0"))
+    (package
+      (name "go-github-com-emicklei-go-restful")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/emicklei/go-restful.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0rrlfcfq80fkxifpih6bq31vavb5mf4530xz51pp9pq1mn2fzjfh"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/emicklei/go-restful"))
+      (home-page "https://github.com/emicklei/go-restful")
+      (synopsis "Package for building rest-style web services using Golang")
+      (description "Rest asks developpers to use @code{http} methods
+explicitly and in a way that's consistent with the protocol definition.")
+      (license license:expat))))
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#31625] [PATCH 4/6] gnu: Add go-github-com-google-cadvisor.
  2018-05-28 14:59 [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli Rouby Pierre-Antoine
  2018-05-28 15:01 ` [bug#31625] [PATCH 2/6] gnu: Add go-github-com-blang-semver Rouby Pierre-Antoine
  2018-05-28 15:02 ` [bug#31625] [PATCH 3/6] gnu: Add go-github-com-emicklei-go-restful Rouby Pierre-Antoine
@ 2018-05-28 15:03 ` Rouby Pierre-Antoine
  2018-05-28 15:03 ` [bug#31625] [PATCH 5/6] gnu: Add go-github-com-google-gofuzz Rouby Pierre-Antoine
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-28 15:03 UTC (permalink / raw)
  To: 31625; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-google-cadvisor): New varaible.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index ee460c030..81a494584 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1550,3 +1550,29 @@ golang.")
       (description "Rest asks developpers to use @code{http} methods
 explicitly and in a way that's consistent with the protocol definition.")
       (license license:expat))))
+
+(define-public go-github-com-google-cadvisor
+  (let ((commit "2ed7198f77395ee9a172878a0a7ab92ab59a2cfd")
+        (revision "0"))
+    (package
+      (name "go-github-com-google-cadvisor")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/google/cadvisor.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1w8p345z5j0gk3yiq5ah0znd5lfh348p2s624k5r10drz04p3f55"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/google/cadvisor"))
+      (home-page "https://github.com/google/cadvisor")
+      (synopsis "This package is resource usage analyzes for running
+containers")
+      (description "Cadvisor provides information about the resource usage and
+preformance characteristics of running contrainers.")
+      (license license:asl2.0))))
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#31625] [PATCH 5/6] gnu: Add go-github-com-google-gofuzz.
  2018-05-28 14:59 [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli Rouby Pierre-Antoine
                   ` (2 preceding siblings ...)
  2018-05-28 15:03 ` [bug#31625] [PATCH 4/6] gnu: Add go-github-com-google-cadvisor Rouby Pierre-Antoine
@ 2018-05-28 15:03 ` Rouby Pierre-Antoine
  2018-05-28 15:03 ` [bug#31625] [PATCH 6/6] gnu: Add go-github-com-gorilla-context Rouby Pierre-Antoine
  2018-05-29 22:40 ` bug#31625: [PATCH 1/6] gnu: Add go-github-com-urfave-cli Leo Famulari
  5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-28 15:03 UTC (permalink / raw)
  To: 31625; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-google-gofuzz): New variable.
---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 81a494584..6ace45890 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1576,3 +1576,28 @@ containers")
       (description "Cadvisor provides information about the resource usage and
 preformance characteristics of running contrainers.")
       (license license:asl2.0))))
+
+(define-public go-github-com-google-gofuzz
+  (let ((commit "fd52762d25a41827db7ef64c43756fd4b9f7e382")
+        (revision "0"))
+    (package
+      (name "go-github-com-google-gofuzz")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/google/gofuzz.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1yxmmr73h0lq7ryf3q9a7pcm2x5xrg4d5bxkq8n5pxwxwyq26kw8"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/google/gofuzz"))
+      (home-page "https://github.com/google/gofuzz")
+      (synopsis "This package is fuzz testing library for go")
+      (description "Gofuzz is a library for populationg go objects with random
+values.")
+      (license license:asl2.0))))
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#31625] [PATCH 6/6] gnu: Add go-github-com-gorilla-context.
  2018-05-28 14:59 [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli Rouby Pierre-Antoine
                   ` (3 preceding siblings ...)
  2018-05-28 15:03 ` [bug#31625] [PATCH 5/6] gnu: Add go-github-com-google-gofuzz Rouby Pierre-Antoine
@ 2018-05-28 15:03 ` Rouby Pierre-Antoine
  2018-05-29 22:40 ` bug#31625: [PATCH 1/6] gnu: Add go-github-com-urfave-cli Leo Famulari
  5 siblings, 0 replies; 7+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-28 15:03 UTC (permalink / raw)
  To: 31625; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-gorilla-context): New variable.
---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 6ace45890..cad6e5a60 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1601,3 +1601,28 @@ preformance characteristics of running contrainers.")
       (description "Gofuzz is a library for populationg go objects with random
 values.")
       (license license:asl2.0))))
+
+(define-public go-github-com-gorilla-context
+  (let ((commit "08b5f424b9271eedf6f9f0ce86cb9396ed337a42")
+        (revision "0"))
+    (package
+      (name "go-github-com-gorilla-context")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/gorilla/context.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "03p4hn87vcmfih0p9w663qbx9lpsf7i7j3lc7yl7n84la3yz63m4"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/gorilla/context"))
+      (home-page "https://github.com/gorilla/context")
+      (synopsis "This packages is registry for request variables")
+      (description "Gorilla/context is a general purpose registry for global
+request variables.")
+      (license license:bsd-3))))
-- 
2.17.0

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* bug#31625: [PATCH 1/6] gnu: Add go-github-com-urfave-cli.
  2018-05-28 14:59 [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli Rouby Pierre-Antoine
                   ` (4 preceding siblings ...)
  2018-05-28 15:03 ` [bug#31625] [PATCH 6/6] gnu: Add go-github-com-gorilla-context Rouby Pierre-Antoine
@ 2018-05-29 22:40 ` Leo Famulari
  5 siblings, 0 replies; 7+ messages in thread
From: Leo Famulari @ 2018-05-29 22:40 UTC (permalink / raw)
  To: Rouby Pierre-Antoine; +Cc: 31625-done

[-- Attachment #1: Type: text/plain, Size: 261 bytes --]

On Mon, May 28, 2018 at 04:59:39PM +0200, Rouby Pierre-Antoine wrote:
> * gnu/packages/golang.scm (go-github-com-urfave-cli): New variable.

Thanks! I edited the synopses and descriptions and pushed the whole
series as 9cf879a5739eec505119e2dfca59490d81f5ac99.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-05-29 22:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-28 14:59 [bug#31625] [PATCH 1/6] gnu: Add go-github-com-urfave-cli Rouby Pierre-Antoine
2018-05-28 15:01 ` [bug#31625] [PATCH 2/6] gnu: Add go-github-com-blang-semver Rouby Pierre-Antoine
2018-05-28 15:02 ` [bug#31625] [PATCH 3/6] gnu: Add go-github-com-emicklei-go-restful Rouby Pierre-Antoine
2018-05-28 15:03 ` [bug#31625] [PATCH 4/6] gnu: Add go-github-com-google-cadvisor Rouby Pierre-Antoine
2018-05-28 15:03 ` [bug#31625] [PATCH 5/6] gnu: Add go-github-com-google-gofuzz Rouby Pierre-Antoine
2018-05-28 15:03 ` [bug#31625] [PATCH 6/6] gnu: Add go-github-com-gorilla-context Rouby Pierre-Antoine
2018-05-29 22:40 ` bug#31625: [PATCH 1/6] gnu: Add go-github-com-urfave-cli Leo Famulari

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.