GNU bug report logs - #31670
[PATCH 1/3] gnu: Add go-github-com-gorilla-mux.

Previous Next

Package: guix-patches;

Reported by: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>

Date: Thu, 31 May 2018 15:37:02 UTC

Severity: normal

Tags: patch

Done: ludovic.courtes <at> inria.fr (Ludovic Courtès)

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 31670 in the body.
You can then email your comments to 31670 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#31670; Package guix-patches. (Thu, 31 May 2018 15:37:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 31 May 2018 15:37:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
To: guix-patches <at> gnu.org
Cc: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
Subject: [PATCH 1/3] gnu: Add go-github-com-gorilla-mux.
Date: Thu, 31 May 2018 17:34:53 +0200
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#31670; Package guix-patches. (Thu, 31 May 2018 15:39:01 GMT) Full text and rfc822 format available.

Message #8 received at 31670 <at> debbugs.gnu.org (full text, mbox):

From: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
To: 31670 <at> debbugs.gnu.org
Cc: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
Subject: [PATCH 2/3] gnu: Add go-github-com-jonboulle-clockwork.
Date: Thu, 31 May 2018 17:38:35 +0200
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#31670; Package guix-patches. (Thu, 31 May 2018 15:40:02 GMT) Full text and rfc822 format available.

Message #11 received at 31670 <at> debbugs.gnu.org (full text, mbox):

From: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
To: 31670 <at> debbugs.gnu.org
Cc: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
Subject: [PATCH 3/3] gnu: Add go-github-com-spf13-pflag.
Date: Thu, 31 May 2018 17:38:59 +0200
* 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





Reply sent to ludovic.courtes <at> inria.fr (Ludovic Courtès):
You have taken responsibility. (Mon, 11 Jun 2018 12:48:01 GMT) Full text and rfc822 format available.

Notification sent to Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>:
bug acknowledged by developer. (Mon, 11 Jun 2018 12:48:01 GMT) Full text and rfc822 format available.

Message #16 received at 31670-done <at> debbugs.gnu.org (full text, mbox):

From: ludovic.courtes <at> inria.fr (Ludovic Courtès)
To: Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
Cc: 31670-done <at> debbugs.gnu.org
Subject: Re: [bug#31670] [PATCH 3/3] gnu: Add go-github-com-spf13-pflag.
Date: Mon, 11 Jun 2018 14:47:04 +0200
Hi,

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

Thank you!

Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 10 Jul 2018 11:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 339 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.