gnu: Gogo protocol buffers: Update to 1.2.1.

* gnu/packages/golang.scm (go-github-com-gogo-protobuf,
go-github-com-gogo-protobuf-protoc-gen-gogo,
go-github-com-gogo-protobuf-gogoproto, go-github-com-gogo-protobuf-proto):
Update to 1.2.1.
(go-github-com-gogo-protobuf-proto)[license] Fix license.
[synopsis, description]: Complete.
(go-github-com-gogo-protobuf-protoc-gen-gogo)[arguments]: Skip the tests.
This commit is contained in:
Leo Famulari 2019-03-13 17:08:29 -04:00
parent e3f14f47ff
commit 2f9bbd8e6c
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -2248,29 +2248,24 @@ and lookup requests. Browse requests are not supported yet.")
(license license:unlicense)))) (license license:unlicense))))
(define-public go-github-com-gogo-protobuf (define-public go-github-com-gogo-protobuf
(let ((commit "160de10b2537169b5ae3e7e221d28269ef40d311") (package
(revision "2")) (name "go-github-com-gogo-protobuf")
(package (version "1.2.1")
(name "go-github-com-gogo-protobuf") (source (origin
(version (git-version "0.5" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/gogo/protobuf")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/gogo/protobuf") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m"))))
(base32 (build-system go-build-system)
"0hxq28sgxym04rv0q40gpwkh4ni359q21hq3g78wwxwx4qfd4zwm")))) (arguments
(build-system go-build-system) `(#:import-path "github.com/gogo/protobuf/proto"
(arguments #:unpack-path "github.com/gogo/protobuf"))
`(#:import-path "github.com/gogo/protobuf/proto" (synopsis "Protocol Buffers for Go with Gadgets")
#:unpack-path "github.com/gogo/protobuf")) (description "Gogoprotobuf is a fork of golang/protobuf with extra code
(propagated-inputs
`(("go-github-com-gogo-protobuf-protoc-gen-gogo"
,go-github-com-gogo-protobuf-protoc-gen-gogo)))
(synopsis "Protocol Buffers for Go with Gadgets")
(description "Gogoprotobuf is a fork of golang/protobuf with extra code
generation features. This code generation is used to achieve: generation features. This code generation is used to achieve:
@itemize @itemize
@item fast marshalling and unmarshalling @item fast marshalling and unmarshalling
@ -2280,30 +2275,29 @@ generation features. This code generation is used to achieve:
@item peace of mind by optionally generating test and benchmark code @item peace of mind by optionally generating test and benchmark code
@item other serialization formats @item other serialization formats
@end itemize") @end itemize")
(home-page "https://github.com/gogo/protobuf") (home-page "https://github.com/gogo/protobuf")
(license license:bsd-3)))) (license license:bsd-3)))
(define-public go-github-com-gogo-protobuf-protoc-gen-gogo (define-public go-github-com-gogo-protobuf-protoc-gen-gogo
(let ((commit "efccd33a0c20aa078705571d5ddbfa14c8395a63") (package
(revision "0")) (name "go-github-com-gogo-protobuf-protoc-gen-gogo")
(package (version "1.2.1")
(name "go-github-com-gogo-protobuf-protoc-gen-gogo") (source (origin
(version (git-version "0.2" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/gogo/protobuf")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/gogo/protobuf") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m"))))
(base32 (build-system go-build-system)
"09kfa3aqmhh7p0rc6wd4fw5cjccidsk9vgcy13albv0g8vnbmmgw")))) (arguments
(build-system go-build-system) `(#:import-path "github.com/gogo/protobuf/protoc-gen-gogo"
(arguments #:unpack-path "github.com/gogo/protobuf"
`(#:import-path "github.com/gogo/protobuf/protoc-gen-gogo" #:tests? #f)) ; Requires the unpackaged 'protoc-min-version'
#:unpack-path "github.com/gogo/protobuf")) (synopsis "Protocol Buffers for Go with Gadgets")
(synopsis "Protocol Buffers for Go with Gadgets") (description "Gogoprotobuf is a fork of golang/protobuf with extra code
(description "Gogoprotobuf is a fork of golang/protobuf with extra code
generation features. This code generation is used to achieve: generation features. This code generation is used to achieve:
@itemize @itemize
@item fast marshalling and unmarshalling @item fast marshalling and unmarshalling
@ -2313,8 +2307,8 @@ generation features. This code generation is used to achieve:
@item peace of mind by optionally generating test and benchmark code @item peace of mind by optionally generating test and benchmark code
@item other serialization formats @item other serialization formats
@end itemize") @end itemize")
(home-page "https://github.com/gogo/protobuf") (home-page "https://github.com/gogo/protobuf")
(license license:bsd-3)))) (license license:bsd-3)))
(define-public go-github-com-gogo-protobuf-gogoproto (define-public go-github-com-gogo-protobuf-gogoproto
(package (package
@ -2341,31 +2335,28 @@ implementation.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public go-github-com-gogo-protobuf-proto (define-public go-github-com-gogo-protobuf-proto
(let ((commit (package
"fd322a3c49630fe6d05737e2b7d9426e6680e28d") (name "go-github-com-gogo-protobuf-proto")
(revision "0")) (version "1.2.1")
(package (source
(name "go-github-com-gogo-protobuf-proto") (origin
(version (git-version "0.0.0" revision commit)) (method git-fetch)
(source (uri (git-reference
(origin (url "https://github.com/gogo/protobuf.git")
(method git-fetch) (commit (string-append "v" version))))
(uri (git-reference (file-name (git-file-name name version))
(url "https://github.com/gogo/protobuf.git") (sha256
(commit commit))) (base32
(file-name (git-file-name name version)) "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m"))))
(sha256 (build-system go-build-system)
(base32 (arguments
"1zi85584dy91hyrwpanygz1pppi0chn3hzzv128i83i6j45a5fp9")))) '(#:unpack-path "github.com/gogo/protobuf"
(build-system go-build-system) #:import-path "github.com/gogo/protobuf/proto"))
(arguments (home-page "https://github.com/gogo/protobuf")
'(#:unpack-path "github.com/gogo/protobuf" (synopsis "Protocol buffers component")
#:import-path "github.com/gogo/protobuf/proto")) (description "This is a component of the Gogo protocol buffers
(native-inputs `()) implementation.")
(home-page "https://github.com/gogo/protobuf") (license license:bsd-3)))
(synopsis "XXX")
(description "XXX")
(license license:expat))))
(define-public go-github-com-libp2p-go-flow-metrics (define-public go-github-com-libp2p-go-flow-metrics
(let ((commit "7e5a55af485341567f98d6847a373eb5ddcdcd43") (let ((commit "7e5a55af485341567f98d6847a373eb5ddcdcd43")