[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/35: gnu: Move go-github-com-golang-protobuf-proto to the Golang modul
From: |
guix-commits |
Subject: |
18/35: gnu: Move go-github-com-golang-protobuf-proto to the Golang module. |
Date: |
Thu, 13 Feb 2020 19:55:35 -0500 (EST) |
lfam pushed a commit to branch master
in repository guix.
commit a726d91d0cdbf3d0422c8ca21b70403ce458dadc
Author: Leo Famulari <address@hidden>
AuthorDate: Wed Feb 12 17:04:27 2020 -0500
gnu: Move go-github-com-golang-protobuf-proto to the Golang module.
* gnu/packages/syncthing.scm (go-github-com-golang-protobuf-proto): Move
variable ...
gnu/packages/golang.scm (go-github-com-golang-protobuf-proto): ... to here.
---
gnu/packages/golang.scm | 27 ++++++++++++++++++++++++++-
gnu/packages/syncthing.scm | 25 -------------------------
2 files changed, 26 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1461324..9150d66 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4,7 +4,7 @@
;;; Copyright © 2016 Andy Wingo <address@hidden>
;;; Copyright © 2016, 2019 Ludovic Courtès <address@hidden>
;;; Copyright © 2016, 2017 Petter <address@hidden>
-;;; Copyright © 2016, 2017, 2019 Leo Famulari <address@hidden>
+;;; Copyright © 2016, 2017, 2018, 2019 Leo Famulari <address@hidden>
;;; Copyright © 2017 Sergei Trofimovich <address@hidden>
;;; Copyright © 2017 Alex Vong <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
@@ -3222,3 +3222,28 @@ optimized for humans, JUnit XML for CI integration, and
a summary of the
test results.")
(home-page "https://github.com/gotestyourself/gotestsum")
(license license:asl2.0)))
+
+(define-public go-github-com-golang-protobuf-proto
+ (package
+ (name "go-github-com-golang-protobuf-proto")
+ (version "1.3.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/golang/protobuf.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/golang/protobuf/proto"
+ #:unpack-path "github.com/golang/protobuf"
+ ;; Requires unpackaged golang.org/x/sync/errgroup
+ #:tests? #f))
+ (synopsis "Go support for Protocol Buffers")
+ (description "This package provides Go support for the Protocol Buffers
+data serialization format.")
+ (home-page "https://github.com/golang/protobuf")
+ (license license:bsd-3)))
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index 099ad3e..9bda6dd 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -761,31 +761,6 @@ bounds.")
(home-page "https://github.com/beorn7/perks")
(license expat))))
-(define-public go-github-com-golang-protobuf-proto
- (package
- (name "go-github-com-golang-protobuf-proto")
- (version "1.3.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/golang/protobuf.git")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/golang/protobuf/proto"
- #:unpack-path "github.com/golang/protobuf"
- #:tests? #f ; requires unpackaged golang.org/x/sync/errgroup
- ))
- (synopsis "Go support for Protocol Buffers")
- (description "This package provides Go support for the Protocol Buffers
-data serialization format.")
- (home-page "https://github.com/golang/protobuf")
- (license bsd-3)))
-
(define-public go-github-com-prometheus-client-model
(let ((commit "14fe0d1b01d4d5fc031dd4bec1823bd3ebbe8016")
(revision "2"))
- 08/35: gnu: go-github-com-petermattis-goid: Update to 0.0.0-1.b0b1615, (continued)
- 08/35: gnu: go-github-com-petermattis-goid: Update to 0.0.0-1.b0b1615, guix-commits, 2020/02/13
- 02/35: gnu: go-github-com-gobwas-glob: Update to 0.2.3., guix-commits, 2020/02/13
- 04/35: gnu: go-github-com-golang-groupcache-lru: Update to 0.0.0-2.869f871, guix-commits, 2020/02/13
- 06/35: gnu: go-github-com-kballard-go-shellquote: Update to 0.0.0-1.95032a8, guix-commits, 2020/02/13
- 07/35: gnu: go-github-com-oschwald-maxminddb-golang: Update to 1.4.0., guix-commits, 2020/02/13
- 09/35: gnu: go-github-com-prometheus-client-model: Update to 0.0.2-2.14fe0d1., guix-commits, 2020/02/13
- 10/35: gnu: go-github-com-prometheus-procfs: Update to 0.0.4., guix-commits, 2020/02/13
- 13/35: gnu: go-golang-org-x-time: Update to 0.0.0-2.9d24e82., guix-commits, 2020/02/13
- 12/35: gnu: go-golang-org-x-sys: Update to 0.0.0-5.749cb33., guix-commits, 2020/02/13
- 16/35: gnu: go-github-com-prometheus-client-golang: Update 1.1.0., guix-commits, 2020/02/13
- 18/35: gnu: Move go-github-com-golang-protobuf-proto to the Golang module.,
guix-commits <=
- 11/35: gnu: go-golang-org-x-net: Update to 0.0.0-4.ba9fcec., guix-commits, 2020/02/13
- 14/35: gnu: go-gopkg.in-asn1-ber.v1: Update to 1.3., guix-commits, 2020/02/13
- 17/35: gnu: go-github-com-rcrowley-go-metrics: Update to 0.0.0-2.cac0b30., guix-commits, 2020/02/13
- 15/35: gnu: go-github-com-minio-sha256-simd: Update to 0.1.0., guix-commits, 2020/02/13
- 19/35: gnu: go-github-com-gogo-protobuf: Update to 1.3.1., guix-commits, 2020/02/13
- 24/35: gnu: Add go-github-com-pmezard-go-difflib., guix-commits, 2020/02/13
- 26/35: gnu: Add go-github-com-russross-blackfriday., guix-commits, 2020/02/13
- 20/35: gnu: go-github-com-oschwald-geoip2-golang: Update to 1.4.0., guix-commits, 2020/02/13
- 32/35: gnu: go-github-com-marten-seemann-qtls: Update to 0.3.2., guix-commits, 2020/02/13
- 34/35: gnu: Add go-github-com-cespare-xxhash., guix-commits, 2020/02/13