[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
17/19: gnu: go-golang-org-x-lint: Move to (gnu packages golang-check).
From: |
guix-commits |
Subject: |
17/19: gnu: go-golang-org-x-lint: Move to (gnu packages golang-check). |
Date: |
Sun, 22 Oct 2023 22:24:28 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit f6a03a8ba69ead8ab3bc39f9f750ac6d036c6b0b
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Thu Oct 19 02:29:10 2023 +0100
gnu: go-golang-org-x-lint: Move to (gnu packages golang-check).
* gnu/packages/golang-check.scm (go-golang-org-x-lint): Move from
here...
* gnu/packages/golang.scm: ... to here.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/golang-check.scm | 28 ++++++++++++++++++++++++++++
gnu/packages/golang.scm | 28 ----------------------------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 011198231d..56f412224e 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -458,6 +458,34 @@ such as readers and writers that fail after N consecutive
reads/writes.")
custom assertions to be used alongside native Go testing.")
(license license:expat)))
+(define-public go-golang-org-x-lint
+ (let ((commit "83fdc39ff7b56453e3793356bcff3070b9b96445")
+ (revision "0"))
+ (package
+ (name "go-golang-org-x-lint")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://go.googlesource.com/lint")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3"))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "golang.org/x/lint"
+ #:tests? #f)) ;; TODO: Fix tests
+ (propagated-inputs
+ (list go-golang-org-x-tools))
+ (home-page "https://golang.org/x/lint")
+ (synopsis "Linter for Go source code")
+ (description
+ "This is a linter for Go source code. Unlike gofmt, it doesn't
+reformat the source code, it only prints out style mistakes.")
+ (license license:bsd-3))))
+
;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 2503fca0b6..e5dd116766 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -11477,34 +11477,6 @@ be used as both a binary and a library.")
(native-inputs '())
(inputs '())))
-(define-public go-golang-org-x-lint
- (let ((commit "83fdc39ff7b56453e3793356bcff3070b9b96445")
- (revision "0"))
- (package
- (name "go-golang-org-x-lint")
- (version (git-version "0.0.0" revision commit))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://go.googlesource.com/lint")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "golang.org/x/lint"
- #:tests? #f)) ;; TODO: Fix tests
- (propagated-inputs
- (list go-golang-org-x-tools))
- (home-page "https://golang.org/x/lint")
- (synopsis "Linter for Go source code")
- (description
- "This is a linter for Go source code. Unlike gofmt, it doesn't
-reformat the source code, it only prints out style mistakes.")
- (license license:bsd-3))))
-
(define-public go-github-com-kisielk-gotool
(package
(name "go-github-com-kisielk-gotool")
- 05/19: gnu: go-gopkg-in-check-v1: Move to (gnu packages golang-check)., (continued)
- 05/19: gnu: go-gopkg-in-check-v1: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 10/19: gnu: go-github-com-jacobsa-ogletest: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 09/19: gnu: go-github-com-tdewolff-test: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 11/19: gnu: go-github-com-google-gofuzz: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 12/19: gnu: go-github-com-cheekybits-is: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 13/19: gnu: go-github-com-frankban-quicktest: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 14/19: gnu: go-github-com-google-go-cmdtest: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 16/19: gnu: go-honnef-co-go-tools: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 07/19: gnu: go-github-com-golangplus-testing: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 08/19: gnu: go-gopkg-in-go-playground-assert-v1: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 17/19: gnu: go-golang-org-x-lint: Move to (gnu packages golang-check).,
guix-commits <=
- 15/19: gnu: go-github-com-onsi-ginkgo: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 18/19: gnu: go-golang-org-sql-mock: Move to (gnu packages golang-check)., guix-commits, 2023/10/22
- 19/19: gnu: go-github-com-alecthomas-assert: Move to (gnu packages golang-check)., guix-commits, 2023/10/22