[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/32: gnu: go-github-com-kylelemons-godebug: Move to golang-xyz.
From: |
guix-commits |
Subject: |
06/32: gnu: go-github-com-kylelemons-godebug: Move to golang-xyz. |
Date: |
Sun, 24 Nov 2024 07:50:50 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 9c544fc727fe2c36ef3687421bdb4aadd87f53e2
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Nov 24 11:03:46 2024 +0000
gnu: go-github-com-kylelemons-godebug: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-kylelemons-godebug): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I8dad929a25526a0aa08a9a6fc958e8b2034d702e
---
gnu/packages/golang-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 35 -----------------------------------
2 files changed, 35 insertions(+), 35 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index e3d819b8ed..2287dcd240 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13,6 +13,7 @@
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
@@ -4470,6 +4471,40 @@ allocation. @code{fastime} is returning the approximate
time.")
"This package provides a pretty printer for Go values.")
(license license:expat)))
+(define-public go-github-com-kylelemons-godebug
+ (package
+ (name "go-github-com-kylelemons-godebug")
+ (version "1.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kylelemons/godebug")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/kylelemons/godebug"
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; XXX: Replace when go-build-system supports nested path.
+ (delete 'build)
+ (replace 'check
+ (lambda* (#:key import-path tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion (string-append "src/" import-path)
+ (invoke "go" "test" "-v" "./..."))))))))
+ (home-page "https://github.com/kylelemons/godebug")
+ (synopsis "Pretty printer for Go values")
+ (description
+ "This package will pretty print a compact representation of a Go data
+structure. It can also produce a much more verbose, one-item-per-line
+representation suitable for computing diffs.")
+ (license license:asl2.0)))
+
(define-public go-github-com-lestrrat-go-envload
(package
(name "go-github-com-lestrrat-go-envload")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 865f20f1b1..bd2ebdabbc 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4650,41 +4650,6 @@ have super fancy logs.")
"The fs package provides file-system-related Go functions.")
(license license:bsd-3))))
-(define-public go-github-com-kylelemons-godebug
- (package
- (name "go-github-com-kylelemons-godebug")
- (version "1.1.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/kylelemons/godebug")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0dkk3friykg8p6wgqryx6745ahhb9z1j740k7px9dac6v5xjp78c"))))
- (build-system go-build-system)
- (arguments
- (list
- #:import-path "github.com/kylelemons/godebug"
- #:phases
- #~(modify-phases %standard-phases
- ;; XXX: Replace when go-build-system supports nested path.
- (delete 'build)
- (replace 'check
- (lambda* (#:key import-path tests? #:allow-other-keys)
- (when tests?
- (with-directory-excursion (string-append "src/" import-path)
- (invoke "go" "test" "-v" "./..."))))))))
- (home-page "https://github.com/kylelemons/godebug")
- (synopsis "Pretty printer for Go values")
- (description
- "This package will pretty print a compact representation of a Go data
-structure. It can also produce a much more verbose, one-item-per-line
-representation suitable for computing diffs.")
- (license license:asl2.0)))
-
(define-public go-github-com-kr-text
(package
(name "go-github-com-kr-text")
- branch go-team created (now 00fda872d0), guix-commits, 2024/11/24
- 01/32: gnu: Remove go-github-com-calmh-xdr., guix-commits, 2024/11/24
- 07/32: gnu: go-github-com-cyphar-filepath-securejoin: Update to 0.3.4., guix-commits, 2024/11/24
- 05/32: gnu: go-github-com-kylelemons-godebug: Improve style., guix-commits, 2024/11/24
- 06/32: gnu: go-github-com-kylelemons-godebug: Move to golang-xyz.,
guix-commits <=
- 11/32: gnu: go-github-com-spf13-viper: Update to 1.8.1., guix-commits, 2024/11/24
- 08/32: gnu: go-github-com-spf13-afero: Update to 1.6.0., guix-commits, 2024/11/24
- 09/32: gnu: go-github-com-spf13-cast: Update to 1.7.0., guix-commits, 2024/11/24
- 14/32: gnu: go-github-com-spf13-cast: Move to golang-xyz., guix-commits, 2024/11/24
- 17/32: gnu: go-github-com-spf13-pflag: Move to golang-xyz., guix-commits, 2024/11/24
- 19/32: gnu: go-github-com-nxadm-tail: Update to 1.4.11., guix-commits, 2024/11/24
- 32/32: gnu: packages/textutils: Remove golang module., guix-commits, 2024/11/24
- 13/32: gnu: go-github-com-spf13-afero: Run all tests., guix-commits, 2024/11/24
- 02/32: gnu: Remove go-github-com-dustin-gojson., guix-commits, 2024/11/24
- 10/32: gnu: go-github-com-spf13-pflag: Add a maintenance note., guix-commits, 2024/11/24