~ruther/guix-local

9358929873d235e01461a45b8a2a9789fdb6c5f0 — Sharlatan Hellseher 2 years ago 8ac6bd7
gnu: go-gopkg-in-natefinch-lumberjack.v2: Move to golang-xyz.

* gnu/packages/golang.scm (go-gopkg-in-natefinch-lumberjack.v2): Move
from here ...
* gnu/packages/golang-xyz.scm: ... to here.

* gnu/packages/finance.scm: Add (gnu packages golang-xyz) module.

Change-Id: Ib31fe5787f7b9a5c10e527ea344adaf587aeea13
3 files changed, 29 insertions(+), 27 deletions(-)

M gnu/packages/finance.scm
M gnu/packages/golang-xyz.scm
M gnu/packages/golang.scm
M gnu/packages/finance.scm => gnu/packages/finance.scm +1 -0
@@ 97,6 97,7 @@
  #:use-module (gnu packages gnupg)
  #:use-module (gnu packages golang)
  #:use-module (gnu packages golang-web)
  #:use-module (gnu packages golang-xyz)
  #:use-module (gnu packages graphviz)
  #:use-module (gnu packages groff)
  #:use-module (gnu packages gsasl)

M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +28 -1
@@ 8,10 8,10 @@
;;; Copyright © 2019-2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020, 2021 Martin Becze <mjbecze@riseup.net>
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Martin Becze <mjbecze@riseup.net>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>


@@ 2331,6 2331,33 @@ Go.")
     (list
      #:import-path "gopkg.in/cheggaaa/pb.v1"))))

(define-public go-gopkg-in-natefinch-lumberjack.v2
  (package
    (name "go-gopkg-in-natefinch-lumberjack.v2")
    (version "2.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/natefinch/lumberjack")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "1l3vlv72b7rfkpy1164kwd3qzrqmmjnb67akzxqp2mlvc66k6p3d"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "gopkg.in/natefinch/lumberjack.v2"))
    (propagated-inputs
     (list go-github-com-burntsushi-toml
           go-gopkg-in-yaml-v2))
    (home-page "https://github.com/natefinch/lumberjack")
    (synopsis "Rolling logger for Go")
    (description
     "Lumberjack is a Go package for writing logs to rolling files.")
    (license license:expat)))

(define-public go-gopkg-in-op-go-logging-v1
  (package
    (inherit go-github-com-op-go-logging)

M gnu/packages/golang.scm => gnu/packages/golang.scm +0 -26
@@ 3173,32 3173,6 @@ termination.")
                      "t.Fatalf(`Killf(\"BO%%s")))))))
    (home-page "https://gopkg.in/tomb.v1")))

(define-public go-gopkg-in-natefinch-lumberjack.v2
  (package
    (name "go-gopkg-in-natefinch-lumberjack.v2")
    (version "2.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/natefinch/lumberjack")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32
         "1l3vlv72b7rfkpy1164kwd3qzrqmmjnb67akzxqp2mlvc66k6p3d"))))
    (build-system go-build-system)
    (arguments
     '(#:import-path "gopkg.in/natefinch/lumberjack.v2"))
    (propagated-inputs
     `(("github.com/burntsush/toml" ,go-github-com-burntsushi-toml)
       ("gopkg.in/yaml.v2" ,go-gopkg-in-yaml-v2)))
    (home-page "https://github.com/natefinch/lumberjack")
    (synopsis "Rolling logger for Go")
    (description
     "Lumberjack is a Go package for writing logs to rolling files.")
    (license license:expat)))

(define-public go-github.com-jtolds-gls
  (package
    (name "go-github.com-jtolds-gls")