[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: go-github-com-multiformats-go-multiaddr-net: Move to golang-
From: |
guix-commits |
Subject: |
07/09: gnu: go-github-com-multiformats-go-multiaddr-net: Move to golang-web. |
Date: |
Thu, 21 Mar 2024 19:51:37 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit abedc7444e15b99d9f0553de7051fe15398ff2d6
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Mar 21 23:29:43 2024 +0000
gnu: go-github-com-multiformats-go-multiaddr-net: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-multiformats-go-multiaddr-net):
Move from here ...
* gnu/packages/golang-web.scm (go-github-com-multiformats-go-multiaddr-net):
... to here.
Change-Id: Ie7d35cae682e753ed5d08abdb5478c7d0c0bd4fa
---
gnu/packages/golang-web.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 38 --------------------------------------
2 files changed, 43 insertions(+), 38 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 5d606d9731..99210d8448 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -1280,6 +1280,49 @@ following:
@end itemize\n")
(license license:expat))))
+(define-public go-github-com-multiformats-go-multiaddr-net
+ ;; This commit is from <2018-10-01> and associated with GX package manager,
+ ;; since that time the project has changed versing stile and GX is dropped.
+ ;; The latest versioned tag is v0.1.5 <2020-04-30>. The project is archved
+ ;; on <2021-10-05>.
+ (let ((commit "1cb9a0e8a6de3c8a10f6cee60d01d793603c4f7e")
+ (revision "0"))
+ (package
+ (name "go-github-com-multiformats-go-multiaddr-net")
+ (version (git-version "1.6.3" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/multiformats/go-multiaddr-net")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1ypgi47xdz3bh8lh7f8cmk7w3ql9g4izx5l3kzdg9gda1xn5zxq3"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ ;; TODO: Tests fail because they try to access the network.
+ #:tests? #f
+ #:import-path "github.com/multiformats/go-multiaddr-net"))
+ (native-inputs
+ (list go-github-com-gxed-hashland-keccakpg
+ go-github-com-minio-blake2b-simd
+ go-github-com-minio-sha256-simd
+ go-github-com-mr-tron-base58
+ go-github-com-multiformats-go-multiaddr
+ go-github-com-multiformats-go-multihash
+ go-github-com-spaolacci-murmur3
+ go-golang-org-x-crypto))
+ (home-page "https://github.com/multiformats/go-multiaddr-net")
+ (synopsis "Multiaddress net tools")
+ (description
+ "This package provides Multiaddr specific versions of common functions
+in stdlib's @command{net} package. This means wrappers of standard net
+symbols like @command{net.Dial} and @command{net.Listen}, as well as
+conversion to and from @command{net.Addr}.")
+ (license license:expat))))
+
(define-public go-github-com-nwidger-jsoncolor
(package
(name "go-github-com-nwidger-jsoncolor")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 557ffd144f..6a244152d5 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5176,44 +5176,6 @@ maps, slices, or pointers, and copy their data as well
instead of just their
references.")
(license license:expat)))
-(define-public go-github-com-multiformats-go-multiaddr-net
- (let ((commit "1cb9a0e8a6de3c8a10f6cee60d01d793603c4f7e")
- (revision "0"))
- (package
- (name "go-github-com-multiformats-go-multiaddr-net")
- (version (git-version "1.6.3" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/multiformats/go-multiaddr-net")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1ypgi47xdz3bh8lh7f8cmk7w3ql9g4izx5l3kzdg9gda1xn5zxq3"))))
- (build-system go-build-system)
- (arguments
- (quote (#:import-path "github.com/multiformats/go-multiaddr-net"
- ;; TODO: Tests fail because they try to access the network.
- #:tests? #f)))
- (native-inputs
- (list go-github-com-multiformats-go-multiaddr
- go-github-com-multiformats-go-multihash
- go-github-com-gxed-hashland-keccakpg
- go-github-com-minio-blake2b-simd
- go-github-com-minio-sha256-simd
- go-github-com-mr-tron-base58
- go-github-com-spaolacci-murmur3
- go-golang-org-x-crypto))
- (home-page "https://github.com/multiformats/go-multiaddr-net")
- (synopsis "Multiaddress net tools")
- (description "This package provides Multiaddr specific versions of
-common functions in stdlib's @command{net} package. This means wrappers of
-standard net symbols like @command{net.Dial} and @command{net.Listen}, as well
-as conversion to and from @command{net.Addr}.")
- (license license:expat))))
-
(define-public go-github-com-whyrusleeping-tar-utils
(let ((commit "8c6c8ba81d5c71fd69c0f48dbde4b2fb422b6dfc")
(revision "0"))
- branch master updated (8429f25ecd -> 3d2966e0b7), guix-commits, 2024/03/21
- 03/09: gnu: Add go-hclogvet., guix-commits, 2024/03/21
- 02/09: gnu: Add go-github-com-hashicorp-go-hclog., guix-commits, 2024/03/21
- 05/09: gnu: Add go-github-com-multiformats-go-varint., guix-commits, 2024/03/21
- 01/09: gnu: Add go-github-com-hashicorp-go-cleanhttp., guix-commits, 2024/03/21
- 07/09: gnu: go-github-com-multiformats-go-multiaddr-net: Move to golang-web.,
guix-commits <=
- 04/09: gnu: Add go-pgregory-net-rapid., guix-commits, 2024/03/21
- 06/09: gnu: go-github-com-multiformats-go-multiaddr: Move to golang-web., guix-commits, 2024/03/21
- 08/09: gnu: go-github-com-quic-go-qpack: Move to golang-web., guix-commits, 2024/03/21
- 09/09: gnu: go-github-com-quic-go-quic-go: Move to golang-web., guix-commits, 2024/03/21