[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#66619] [PATCH 12/19] gnu: go-github-com-cheekybits-is: Move to (gnu
From: |
Sharlatan Hellseher |
Subject: |
[bug#66619] [PATCH 12/19] gnu: go-github-com-cheekybits-is: Move to (gnu packages golang-check). |
Date: |
Thu, 19 Oct 2023 02:29:05 +0100 |
* gnu/packages/golang-check.scm (go-github-com-cheekybits-is): Move from
here...
* gnu/packages/golang.scm: ... to here.
---
gnu/packages/golang-check.scm | 33 +++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 32 --------------------------------
2 files changed, 33 insertions(+), 32 deletions(-)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 9fdb5b0d9e..d10eced626 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -1,4 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
@@ -41,6 +42,38 @@ (define-module (gnu packages golang-check)
;;;
;;; Code:
+(define-public go-github-com-cheekybits-is
+ (let ((commit "68e9c0620927fb5427fda3708222d0edee89eae9")
+ (revision "0"))
+ (package
+ (name "go-github-com-cheekybits-is")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cheekybits/is")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1mkbyzhwq3rby832ikq00nxv3jnckxsm3949wkxd8ya9js2jmg4d"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/cheekybits/is"))
+ (home-page "https://github.com/cheekybits/is")
+ (synopsis "Mini testing helper for Go")
+ (description "A mini testing helper for Go.
+
+@itemize
+@item It has a simple interface (@command{is.OK} and @command{is.Equal}).
+@item It plugs into existing Go toolchain (uses @command{testing.T}).
+@item It's obvious for newcomers.
+@item It also gives you @command{is.Panic} and @command{is.PanicWith} helpers
+- because testing panics is ugly.
+@end itemize\n")
+ (license license:expat))))
+
(define-public go-github-com-google-gofuzz
(let ((commit "fd52762d25a41827db7ef64c43756fd4b9f7e382")
(revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1e78bfd5bd..d43b43f905 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6806,38 +6806,6 @@ (define-public go-github-com-whyrusleeping-tar-utils
(description "Tar utilities extracted from @command{go-ipfs} codebase.")
(license license:expat))))
-(define-public go-github-com-cheekybits-is
- (let ((commit "68e9c0620927fb5427fda3708222d0edee89eae9")
- (revision "0"))
- (package
- (name "go-github-com-cheekybits-is")
- (version (git-version "0.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/cheekybits/is")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1mkbyzhwq3rby832ikq00nxv3jnckxsm3949wkxd8ya9js2jmg4d"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/cheekybits/is"))
- (home-page "https://github.com/cheekybits/is")
- (synopsis "Mini testing helper for Go")
- (description "A mini testing helper for Go.
-
-@itemize
-@item It has a simple interface (@command{is.OK} and @command{is.Equal}).
-@item It plugs into existing Go toolchain (uses @command{testing.T}).
-@item It's obvious for newcomers.
-@item It also gives you @command{is.Panic} and @command{is.PanicWith} helpers
-- because testing panics is ugly.
-@end itemize\n")
- (license license:expat))))
-
(define-public go-github-com-sabhiram-go-gitignore
(let ((commit "525f6e181f062064d83887ed2530e3b1ba0bc95a")
(revision "1"))
--
2.41.0
- [bug#66619] [PATCH 03/19] gnu: go-github-com-jacobsa-oglemock: Move to (gnu packages golang-check), (continued)
- [bug#66619] [PATCH 03/19] gnu: go-github-com-jacobsa-oglemock: Move to (gnu packages golang-check), Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 05/19] gnu: go-gopkg-in-check-v1: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 06/19] gnu: go-github-com-jacobsa-oglematchers: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 09/19] gnu: go-github-com-tdewolff-test: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 07/19] gnu: go-github-com-golangplus-testing: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 08/19] gnu: go-gopkg-in-go-playground-assert-v1: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 11/19] gnu: go-github-com-google-gofuzz: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 15/19] gnu: go-github-com-onsi-ginkgo: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 14/19] gnu: go-github-com-google-go-cmdtest: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 10/19] gnu: go-github-com-jacobsa-ogletest: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 12/19] gnu: go-github-com-cheekybits-is: Move to (gnu packages golang-check).,
Sharlatan Hellseher <=
- [bug#66619] [PATCH 16/19] gnu: go-honnef-co-go-tools: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 19/19] gnu: go-github-com-alecthomas-assert: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 13/19] gnu: go-github-com-frankban-quicktest: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 17/19] gnu: go-golang-org-x-lint: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- [bug#66619] [PATCH 18/19] gnu: go-golang-org-sql-mock: Move to (gnu packages golang-check)., Sharlatan Hellseher, 2023/10/18
- bug#66619: [PATCH 00/19] Split (gnu packages golang) part I, Maxim Cournoyer, 2023/10/22
- [bug#66627] close, Sharlatan Hellseher, 2023/10/27
- bug#66627:, Sharlatan Hellseher, 2023/10/27