1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 04:20:44 +02:00

gnu: go-github-com-maruel-panicparse: Move to golang-check.

* gnu/packages/golang.scm (go-github-com-maruel-panicparse): Move from
here ...
* gnu/packages/golang-check.scm: ... to here.

Change-Id: Ib11a56341d3c77bb87a1eef21956482df7e1b50d
This commit is contained in:
Sharlatan Hellseher 2024-12-29 20:41:42 +00:00
parent 11286f4b0d
commit 9a1a5f174c
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 48 additions and 47 deletions

View file

@ -9,21 +9,21 @@
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz> ;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com> ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com> ;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
;;; Copyright © 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev> ;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2022 ( <paren@disroot.org> ;;; Copyright © 2022 ( <paren@disroot.org>
;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr> ;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com> ;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com>
;;; Copyright © 2023 Fries <fries1234@protonmail.com> ;;; Copyright © 2023 Fries <fries1234@protonmail.com>
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space> ;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com> ;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2024 Greg Hogan <code@greghogan.com> ;;; Copyright © 2024 Greg Hogan <code@greghogan.com>
;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com> ;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -936,6 +936,51 @@ Many times certain facilities are not available, or tests must run
differently.") differently.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-maruel-panicparse
(package
(name "go-github-com-maruel-panicparse")
(version "1.6.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/maruel/panicparse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "07hj3z47v4mzppi8r7ja20arh2kd0dih913xgb9ylapf7w5q98bn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/maruel/panicparse"
#:test-flags
#~(list "-skip"
(string-join
;; Failed with panic.
(list "TestAugment"
"TestPanic"
"TestPanicweb"
"TestProcessTwoSnapshots"
"TestSnapshotHandler"
"TestSnapshotHandler_Err"
"TestSnapshotHandler_LargeMemory"
)
"|"))))
(native-inputs
(list go-github-com-google-go-cmp))
(propagated-inputs
(list go-github-com-mattn-go-colorable
go-github-com-mattn-go-isatty
go-github-com-mgutz-ansi
go-golang-org-x-sys))
(home-page "https://github.com/maruel/panicparse")
(synopsis "Toolkit for parsing Go stack traces")
(description
"This package provides a toolkit for parsing Go language panic stack
traces. It simplifies the traces to make salient information more visible and
aid debugging.")
(license license:asl2.0)))
(define-public go-github-com-marvinjwendt-testza (define-public go-github-com-marvinjwendt-testza
(package (package
(name "go-github-com-marvinjwendt-testza") (name "go-github-com-marvinjwendt-testza")

View file

@ -3884,50 +3884,6 @@ designed to clean up raw terminal output by stripping escape sequences,
optionally preserving color.") optionally preserving color.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-maruel-panicparse
(package
(name "go-github-com-maruel-panicparse")
(version "1.6.2")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/maruel/panicparse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"07hj3z47v4mzppi8r7ja20arh2kd0dih913xgb9ylapf7w5q98bn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/maruel/panicparse"
#:test-flags
#~(list "-skip"
(string-join
;; Failed with panic.
(list "TestAugment"
"TestPanic"
"TestPanicweb"
"TestProcessTwoSnapshots"
"TestSnapshotHandler"
"TestSnapshotHandler_Err"
"TestSnapshotHandler_LargeMemory"
)
"|"))))
(native-inputs
(list go-github-com-google-go-cmp))
(propagated-inputs
(list go-github-com-mattn-go-colorable
go-github-com-mattn-go-isatty
go-github-com-mgutz-ansi
go-golang-org-x-sys))
(synopsis "Toolkit for parsing Go stack traces")
(description "This package provides a toolkit for parsing Go language panic
stack traces. It simplifies the traces to make salient information more visible
and aid debugging.")
(home-page "https://github.com/maruel/panicparse")
(license license:asl2.0)))
(define-public go-github-com-robfig-cron (define-public go-github-com-robfig-cron
(package (package
(name "go-github-com-robfig-cron") (name "go-github-com-robfig-cron")