all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux.
@ 2018-05-31 15:34 Rouby Pierre-Antoine
  2018-05-31 15:38 ` [bug#31670] [PATCH 2/3] gnu: Add go-github-com-jonboulle-clockwork Rouby Pierre-Antoine
  2018-05-31 15:38 ` [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag Rouby Pierre-Antoine
  0 siblings, 2 replies; 4+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-31 15:34 UTC (permalink / raw)
  To: 31670; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-gorilla-mux): 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 cad6e5a60..7ab29abe0 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1626,3 +1626,29 @@ values.")
       (description "Gorilla/context is a general purpose registry for global
 request variables.")
       (license license:bsd-3))))
+
+(define-public go-github-com-gorilla-mux
+  (let ((commit "599cba5e7b6137d46ddf58fb1765f5d928e69604")
+        (revision "0"))
+    (package
+      (name "go-github-com-gorilla-mux")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/gorilla/mux.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0wd6jjii1kg5s0nk3ri6gqriz6hbd6bbcn6x4jf8n7ncrb8qsxyz"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/gorilla/mux"))
+      (home-page "https://github.com/gorilla/mux")
+      (synopsis "This package is url router and dispatcher for golang")
+      (description
+       "Gorilla/Mux implements a request router and dispatcher for matching
+incoming requests to their respective handler.")
+      (license license:bsd-3))))
-- 
2.17.0

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

* [bug#31670] [PATCH 2/3] gnu: Add go-github-com-jonboulle-clockwork.
  2018-05-31 15:34 [bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux Rouby Pierre-Antoine
@ 2018-05-31 15:38 ` Rouby Pierre-Antoine
  2018-05-31 15:38 ` [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag Rouby Pierre-Antoine
  1 sibling, 0 replies; 4+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-31 15:38 UTC (permalink / raw)
  To: 31670; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-jonboulle-clockwork): 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 7ab29abe0..5876598da 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1652,3 +1652,28 @@ request variables.")
        "Gorilla/Mux implements a request router and dispatcher for matching
 incoming requests to their respective handler.")
       (license license:bsd-3))))
+
+(define-public go-github-com-jonboulle-clockwork
+  (let ((commit "e3653ace2d63753697e0e5b07b9393971c0bba9d")
+        (revision "0"))
+    (package
+      (name "go-github-com-jonboulle-clockwork")
+      (version (git-version "0.0.0" revision commit))
+      (source
+        (origin
+          (method git-fetch)
+          (uri (git-reference
+                 (url "https://github.com/jonboulle/clockwork.git")
+                 (commit commit)))
+          (file-name (git-file-name name version))
+          (sha256
+            (base32
+              "1avzqhks12a8x2yzpvjsf3k0gv9cy7zx2z88hn0scacnxkphisvc"))))
+      (build-system go-build-system)
+      (arguments
+        '(#:import-path "github.com/jonboulle/clockwork"))
+      (home-page
+        "https://github.com/jonboulle/clockwork")
+      (synopsis "This package is fake clock library for golang")
+      (description "Clockwork replace golang time with clock interface.")
+      (license license:asl2.0))))
-- 
2.17.0

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

* [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag.
  2018-05-31 15:34 [bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux Rouby Pierre-Antoine
  2018-05-31 15:38 ` [bug#31670] [PATCH 2/3] gnu: Add go-github-com-jonboulle-clockwork Rouby Pierre-Antoine
@ 2018-05-31 15:38 ` Rouby Pierre-Antoine
  2018-06-11 12:47   ` bug#31670: " Ludovic Courtès
  1 sibling, 1 reply; 4+ messages in thread
From: Rouby Pierre-Antoine @ 2018-05-31 15:38 UTC (permalink / raw)
  To: 31670; +Cc: Rouby Pierre-Antoine

* gnu/packages/golang.scm (go-github-com-spf13-pflag): 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 5876598da..6c21181da 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1677,3 +1677,29 @@ incoming requests to their respective handler.")
       (synopsis "This package is fake clock library for golang")
       (description "Clockwork replace golang time with clock interface.")
       (license license:asl2.0))))
+
+(define-public go-github-com-spf13-pflag
+  (let ((commit "4f9190456aed1c2113ca51ea9b89219747458dc1")
+        (revision "0"))
+    (package
+      (name "go-github-com-spf13-pflag")
+      (version (git-version "0.0.0" revision commit))
+      (source
+        (origin
+          (method git-fetch)
+          (uri (git-reference
+                 (url "https://github.com/spf13/pflag.git")
+                 (commit commit)))
+          (file-name (git-file-name name version))
+          (sha256
+            (base32
+              "12vrlcsbwjqlfc49rwky45mbcj74c0kb6z54354pzas6fwzyi1kc"))))
+      (build-system go-build-system)
+      (arguments
+        '(#:import-path "github.com/spf13/pflag"))
+      (home-page "https://github.com/spf13/pflag")
+      (synopsis "This package is library to replace Go's flag package")
+      (description
+       "Pflag is library to replace Go's flag package, implementing
+POSIX/GNU-style --flags.")
+      (license license:bsd-3))))
-- 
2.17.0

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

* bug#31670: [PATCH 3/3] gnu: Add go-github-com-spf13-pflag.
  2018-05-31 15:38 ` [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag Rouby Pierre-Antoine
@ 2018-06-11 12:47   ` Ludovic Courtès
  0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2018-06-11 12:47 UTC (permalink / raw)
  To: Rouby Pierre-Antoine; +Cc: 31670-done

Hi,

I tweaked the synopses and descriptions to follow our guidelines (info
"(guix) Synopses and Descriptions") and applied all three patches.

Thank you!

Ludo’.

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

end of thread, other threads:[~2018-06-11 12:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-31 15:34 [bug#31670] [PATCH 1/3] gnu: Add go-github-com-gorilla-mux Rouby Pierre-Antoine
2018-05-31 15:38 ` [bug#31670] [PATCH 2/3] gnu: Add go-github-com-jonboulle-clockwork Rouby Pierre-Antoine
2018-05-31 15:38 ` [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag Rouby Pierre-Antoine
2018-06-11 12:47   ` bug#31670: " 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.