diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-16 23:05:29 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-02-19 23:32:32 +0000 |
commit | ce3394eddef97e2d3c3286ac112171514cee00d4 (patch) | |
tree | 055d3a09dea4b8411084af4858f3de54bb24b451 /gnu | |
parent | 5890d3b70f94fa84001c39c989fb48b00cd9b4a6 (diff) | |
download | guix-ce3394eddef97e2d3c3286ac112171514cee00d4.tar.gz guix-ce3394eddef97e2d3c3286ac112171514cee00d4.zip |
gnu: go-github-com-alecthomas-assert: Depricate package.
The package go-github-com-alecthomas-assert is succeeded by
go-github-com-alecthomas-assert-v2 not in use by any others and
failed to build, see <https://ci.guix.gnu.org/build/3490314/log/raw>.
* gnu/packages/golang-check.scm (go-github-com-alecthomas-assert):
Remove variable.
Change-Id: Ia3f7b039c4de9b1b2956f0bfc2629d791aa9cf5a
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-check.scm | 46 |
1 files changed, 10 insertions, 36 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 4874e0c9ae..64d0c68081 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -60,43 +60,8 @@ ;;; Libraries: ;;; -(define-public go-github-com-alecthomas-assert - (let ((commit "405dbfeb8e38effee6e723317226e93fff912d06") - (revision "1")) - (package - (name "go-github-com-alecthomas-assert") - (version (git-version "0.0.1" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/alecthomas/assert") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1l567pi17k593nrd1qlbmiq8z9jy3qs60px2a16fdpzjsizwqx8l")))) - (build-system go-build-system) - (arguments - `(#:import-path "github.com/alecthomas/assert")) - (native-inputs - (list go-github-com-alecthomas-colour - go-github-com-mattn-go-isatty - go-github-com-alecthomas-repr - go-github-com-sergi-go-diff)) - (home-page "https://github.com/alecthomas/assert/") - (synopsis "Go assertion library") - (description "Assertion library that: -@itemize -@item makes spotting differences in equality much easier -@item uses repr and diffmatchpatch to display structural differences in colour -@item aborts tests on first assertion failure -@end itemize\n") - (license license:expat)))) - (define-public go-github-com-alecthomas-assert-v2 (package - (inherit go-github-com-alecthomas-assert) (name "go-github-com-alecthomas-assert-v2") (version "2.2.2") (source @@ -108,13 +73,22 @@ (file-name (git-file-name name version)) (sha256 (base32 "055w46gr47rrn5g2hh7z6hj3x2b8advbcph8gs8szrpzlympyyz0")))) + (build-system go-build-system) (arguments (list #:go go-1.18 #:import-path "github.com/alecthomas/assert/v2")) (propagated-inputs (list go-github-com-alecthomas-repr go-github-com-hexops-gotextdiff)) - (native-inputs '()))) + (home-page "https://github.com/alecthomas/assert/") + (synopsis "Go assertion library") + (description "Assertion library that: +@itemize +@item makes spotting differences in equality much easier +@item uses repr and diffmatchpatch to display structural differences in colour +@item aborts tests on first assertion failure +@end itemize") + (license license:expat))) (define-public go-github-com-cheekybits-is (let ((commit "68e9c0620927fb5427fda3708222d0edee89eae9") |