GNU bug report logs -
#32113
[PATCH 1/5] gnu: Add go-github-com-docker-go-connections.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 32113 in the body.
You can then email your comments to 32113 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#32113
; Package
guix-patches
.
(Tue, 10 Jul 2018 16:04:01 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
.
(Tue, 10 Jul 2018 16:04:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang.scm (go-github-com-docker-go-connections): 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 41d2e5ce1..609a0a8b1 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1841,3 +1841,28 @@ deliver content")
store, and deliver content. It's containe Docker Registry 2.0 and libraries
to interacting with distribution components.")
(license license:asl2.0))))
+
+(define-public go-github-com-docker-go-connections
+ (let ((commit "3ede32e2033de7505e6500d6c868c2b9ed9f169d")
+ (revision "0"))
+ (package
+ (name "go-github-com-docker-go-connections")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/docker/go-connections.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0v1pkr8apwmhyzbjfriwdrs1ihlk6pw7izm57r24mf9jdmg3fyb0"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/docker/go-connections"))
+ (home-page "https://github.com/docker/go-connections")
+ (synopsis "Provides common package to work with network connections.")
+ (description "This package provides common package to work with network
+connections in Go langage.")
+ (license license:asl2.0))))
--
2.17.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#32113
; Package
guix-patches
.
(Tue, 10 Jul 2018 16:07:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 32113 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang.scm (go-github-com-docker-machine): 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 609a0a8b1..515d99785 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1866,3 +1866,27 @@ to interacting with distribution components.")
(description "This package provides common package to work with network
connections in Go langage.")
(license license:asl2.0))))
+
+(define-public go-github-com-docker-machine
+ (let ((commit "7b7a141da84480342357c51838be142bf183b095")
+ (revision "0"))
+ (package
+ (name "go-github-com-docker-machine")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/docker/machine.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0bavk0lvs462yh0lnmnxi9psi5qv1x3nvzmd2b0drsahlp1gxi8s"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/docker/machine"))
+ (home-page "https://github.com/docker/machine")
+ (synopsis "Machine management for a container-centric world")
+ (description "Lets you create Docker hosts on your computer.")
+ (license license:asl2.0))))
--
2.17.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#32113
; Package
guix-patches
.
(Tue, 10 Jul 2018 16:07:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 32113 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang.scm (go-github-com-gorhill-cronexpr): 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 515d99785..588fb8572 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1890,3 +1890,29 @@ connections in Go langage.")
(synopsis "Machine management for a container-centric world")
(description "Lets you create Docker hosts on your computer.")
(license license:asl2.0))))
+
+(define-public go-github-com-gorhill-cronexpr
+ (let ((commit "f0984319b44273e83de132089ae42b1810f4933b")
+ (revision "0"))
+ (package
+ (name "go-github-com-gorhill-cronexpr")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gorhill/cronexpr.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0dphhhqy3i7265znv3m8n57l80dmaq6z4hsj5kgd87qd19z8x0l2"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/gorhill/cronexpr"))
+ (home-page "https://github.com/gorhill/cronexpr")
+ (synopsis "Cron expression parser in Go language")
+ (description "This package is cron expression parser in Go language.
+Given a cron expression and a time stamp.")
+ (license (list license:gpl3+
+ license:asl2.0)))))
--
2.17.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#32113
; Package
guix-patches
.
(Tue, 10 Jul 2018 16:07:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 32113 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang.scm (go-gopkg-in-check-v1): 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 588fb8572..e6ef7c8d9 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1916,3 +1916,27 @@ connections in Go langage.")
Given a cron expression and a time stamp.")
(license (list license:gpl3+
license:asl2.0)))))
+
+(define-public go-gopkg-in-check-v1
+ (let ((commit "20d25e2804050c1cd24a7eea1e7a6447dd0e74ec")
+ (revision "0"))
+ (package
+ (name "go-gopkg-in-check-v1")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/go-check/check")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "gopkg.in/check.v1"))
+ (home-page "https://gopkg.in/check.v1")
+ (synopsis "Rich testing for Go language")
+ (description "This package is rich test library for Go language.")
+ (license license:asl2.0))))
--
2.17.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#32113
; Package
guix-patches
.
(Tue, 10 Jul 2018 16:07:03 GMT)
Full text and
rfc822 format available.
Message #17 received at 32113 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang.scm (go-gopkg-in-yaml-v2): 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 e6ef7c8d9..6d03d6132 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1940,3 +1940,30 @@ Given a cron expression and a time stamp.")
(synopsis "Rich testing for Go language")
(description "This package is rich test library for Go language.")
(license license:asl2.0))))
+
+(define-public go-gopkg-in-yaml-v2
+ (let ((commit "14227de293ca979cf205cd88769fe71ed96a97e2")
+ (revision "0"))
+ (package
+ (name "go-gopkg-in-yaml-v2")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gopkg.in/yaml.v2.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "038hnrjcnjygyi3qidfrkpkakis82qg381sr495d2s40g2dwlzah"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "gopkg.in/yaml.v2"))
+ (native-inputs
+ `(("go-gopkg-in-check-v1" ,go-gopkg-in-check-v1)))
+ (home-page "https://gopkg.in/yaml.v2")
+ (synopsis "YAML support for the Go language.")
+ (description "This package is library for encode and decode YAML values
+in Go language.")
+ (license license:asl2.0))))
--
2.17.0
Reply sent
to
ludo <at> gnu.org (Ludovic Courtès)
:
You have taken responsibility.
(Thu, 12 Jul 2018 21:59:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Rouby Pierre-Antoine <pierre-antoine.rouby <at> inria.fr>
:
bug acknowledged by developer.
(Thu, 12 Jul 2018 21:59:02 GMT)
Full text and
rfc822 format available.
Message #22 received at 32113-done <at> debbugs.gnu.org (full text, mbox):
Hello,
I tweaked the synopses and descriptions and applied all fives patches.
Thank you!
Ludo’.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 10 Aug 2018 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 6 years and 352 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.