[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/31: gnu: go-github-com-burntsushi-toml: Move to golang-xyz.
From: |
guix-commits |
Subject: |
11/31: gnu: go-github-com-burntsushi-toml: Move to golang-xyz. |
Date: |
Tue, 13 Feb 2024 09:42:42 -0500 (EST) |
sharlatan pushed a commit to branch master
in repository guix.
commit f9ead8f7a832eb0b02b78de5ff379bfa0a1fc310
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Wed Feb 7 21:28:03 2024 +0000
gnu: go-github-com-burntsushi-toml: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-burntsushi-toml): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.
* gnu/packages/golang-check.scm: Add (gnu packages golang-xyz) module.
* gnu/packages/golang.scm: As above.
* gnu/packages/shellutils.scm: As above.
Change-Id: If8a645431a1fb17159681daae70db49fd21b37c1
---
gnu/packages/golang-check.scm | 3 ++-
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
gnu/packages/golang.scm | 23 -----------------------
gnu/packages/shellutils.scm | 1 +
4 files changed, 28 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index c5e30f7fe1..8ce85421e9 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -42,7 +42,8 @@
#:use-module (guix git-download)
#:use-module (gnu packages)
#:use-module (gnu packages golang)
- #:use-module (gnu packages golang-build))
+ #:use-module (gnu packages golang-build)
+ #:use-module (gnu packages golang-xyz))
;;; Commentary:
;;;
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index e4b6a09f2d..ee63a78cf7 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1,8 +1,10 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017, 2018, 2019 Leo Famulari <leo@famulari.name>
+;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2022 Dominic Martinez <dom@dominicm.dev>
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
+;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2023 Thomas Ieong <th.ieong@free.fr>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
@@ -87,6 +89,29 @@ optimized for sparse nodes of
@url{http://en.wikipedia.org/wiki/Radix_tree,radix tree}.")
(license license:expat)))
+(define-public go-github-com-burntsushi-toml
+ (package
+ (name "go-github-com-burntsushi-toml")
+ (version "1.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/BurntSushi/toml")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1v9czq4hsyvdz7yx70y6sgq77wmrgfmn09r9cj4w85z38jqnamv7"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/BurntSushi/toml"))
+ (home-page "https://github.com/BurntSushi/toml")
+ (synopsis "Toml parser and encoder for Go")
+ (description
+ "This package is toml parser and encoder for Go. The interface is
+similar to Go's standard library @code{json} and @code{xml} package.")
+ (license license:expat)))
+
(define-public go-github-com-cyberdelia-go-metrics-graphite
(package
(name "go-github-com-cyberdelia-go-metrics-graphite")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 269bfdec95..5a2972427c 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3808,29 +3808,6 @@ The specific case of loading packages should still be
done by invoking the
loading algorithms.")
(license license:bsd-3))))
-(define-public go-github-com-burntsushi-toml
- (package
- (name "go-github-com-burntsushi-toml")
- (version "1.2.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/BurntSushi/toml")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1v9czq4hsyvdz7yx70y6sgq77wmrgfmn09r9cj4w85z38jqnamv7"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/BurntSushi/toml"))
- (home-page "https://github.com/BurntSushi/toml")
- (synopsis "Toml parser and encoder for Go")
- (description
- "This package is toml parser and encoder for Go. The interface
-is similar to Go's standard library @code{json} and @code{xml} package.")
- (license license:expat)))
-
(define-public go-github-com-hashicorp-go-uuid
(package
(name "go-github-com-hashicorp-go-uuid")
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index 00352dc327..48c5250c8c 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -51,6 +51,7 @@
#:use-module (gnu packages check)
#:use-module (gnu packages flex)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-xyz)
#:use-module (gnu packages libunistring)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages pcre)
- branch master updated (e9a6c70948 -> 8a0910e042), guix-commits, 2024/02/13
- 02/31: gnu: Add (gnu packages golang-compression) module., guix-commits, 2024/02/13
- 01/31: gnu: Add (gnu packages golang-build) module., guix-commits, 2024/02/13
- 05/31: gnu: go-github-com-mreiferson-go-options: Move to golang-xyz., guix-commits, 2024/02/13
- 06/31: gnu: go-golang-org-x-sys: Move to golang-build., guix-commits, 2024/02/13
- 04/31: gnu: go-github-com-golang-snappy: Mmove to golang-compression., guix-commits, 2024/02/13
- 07/31: gnu: go-github-com-mreiferson-go-svc: Move to golang-xyz., guix-commits, 2024/02/13
- 08/31: gnu: go-github-com-nsqio-go-nsq: Move to golang-xyz., guix-commits, 2024/02/13
- 10/31: gnu: go-github-com-davecgh-go-spew: Move to golang-check., guix-commits, 2024/02/13
- 11/31: gnu: go-github-com-burntsushi-toml: Move to golang-xyz.,
guix-commits <=
- 14/31: gnu: go-github-com-bitly-timer-metrics: Move to golang-xyz., guix-commits, 2024/02/13
- 03/31: gnu: go-golang-org-x-net: Move to golang-build., guix-commits, 2024/02/13
- 09/31: gnu: go-github-com-nsqio-go-diskqueue: Move to golang-xyz., guix-commits, 2024/02/13
- 12/31: gnu: go-github-com-bmizerany-perks-quantile: Move to golang-xyz., guix-commits, 2024/02/13
- 13/31: gnu: go-github-com-blang-semver: Move to golang-xyz., guix-commits, 2024/02/13
- 16/31: gnu: go-golang-org-x-exp: Move to golang-build., guix-commits, 2024/02/13
- 17/31: gnu: go-golang-org-x-mod: Move to golang-build., guix-commits, 2024/02/13
- 15/31: gnu: go-github-com-bitly-go-hostpool: Move to golang-xyz., guix-commits, 2024/02/13
- 18/31: gnu: go-golang-org-x-xerrors: Move to golang-build., guix-commits, 2024/02/13
- 19/31: gnu: go-golang.org-x-sync-errgroup: Move to golang-build., guix-commits, 2024/02/13