guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/21: gnu: go-gopkg-in-ini-v1: Move to golang-xyz.


From: guix-commits
Subject: 08/21: gnu: go-gopkg-in-ini-v1: Move to golang-xyz.
Date: Fri, 26 Jul 2024 18:47:31 -0400 (EDT)

sharlatan pushed a commit to branch go-team
in repository guix.

commit bb611d3213c3d86c675b08fe26ecb6f918746f35
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Fri Jul 26 13:37:13 2024 +0100

    gnu: go-gopkg-in-ini-v1: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-gopkg-in-ini-v1): Move from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: Ie75a3d46253e28ba886db80f9c56407efa7c4675
---
 gnu/packages/golang-xyz.scm | 27 ++++++++++++++++++++++++++-
 gnu/packages/golang.scm     | 24 ------------------------
 2 files changed, 26 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index ea41dddbcc..00c89761e3 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2019-2022 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2020 Alex Griffin <a@ajgrf.com>
 ;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
+;;; 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, 2021 raingloom <raingloom@riseup.net>
@@ -35,8 +36,8 @@
 ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
 ;;; Copyright © 2024 Jesse Eisses <jesse@eisses.email>
-;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
 ;;; Copyright © 2024 Luis Higino <luishenriquegh2701@gmail.com>
+;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5344,6 +5345,30 @@ Go.")
      (list
       #:import-path "gopkg.in/alecthomas/kingpin.v2"))))
 
+(define-public go-gopkg-in-ini-v1
+  (package
+    (name "go-gopkg-in-ini-v1")
+    (version "1.67.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/go-ini/ini";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vpzkjmrwp7bqqsijp61293kk2vn6lcck56j8m5y6ks6cf21lpap"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "gopkg.in/ini.v1"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (home-page "https://gopkg.in/ini.v1";)
+    (synopsis "Go library for ini files")
+    (description "Go library for ini files")
+    (license license:asl2.0)))
+
 (define-public go-gopkg-in-natefinch-lumberjack.v2
   (package
     (name "go-gopkg-in-natefinch-lumberjack.v2")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index fb8f488482..acb607e0dd 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4037,30 +4037,6 @@ which satisfies the cron expression.")
       (license (list license:gpl3+
                      license:asl2.0)))))
 
-(define-public go-gopkg-in-ini-v1
-  (package
-    (name "go-gopkg-in-ini-v1")
-    (version "1.67.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/go-ini/ini";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1vpzkjmrwp7bqqsijp61293kk2vn6lcck56j8m5y6ks6cf21lpap"))))
-    (build-system go-build-system)
-    (arguments
-     (list
-      #:import-path "gopkg.in/ini.v1"))
-    (native-inputs
-     (list go-github-com-stretchr-testify))
-    (home-page "https://gopkg.in/ini.v1";)
-    (synopsis "Go library for ini files")
-    (description "Go library for ini files")
-    (license license:asl2.0)))
-
 (define-public go-gopkg-in-yaml-v3
   (package
     (name "go-gopkg-in-yaml-v3")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]