[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/172: gnu: go-github-com-lithammer-fuzzysearch: Move to golang-xyz.
From: |
guix-commits |
Subject: |
02/172: gnu: go-github-com-lithammer-fuzzysearch: Move to golang-xyz. |
Date: |
Tue, 5 Nov 2024 16:04:45 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 593bccae289b88904507b52c392d10ee3a104788
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Tue Sep 3 19:35:40 2024 +0100
gnu: go-github-com-lithammer-fuzzysearch: Move to golang-xyz.
gnu/packages/golang.scm (go-github-com-lithammer-fuzzysearch): Move from
here ...
gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Ica80efe706f97694f5f6584fe64f9a764e5d082b
---
gnu/packages/golang-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 34 ----------------------------------
2 files changed, 34 insertions(+), 34 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0d6debcac4..c07a3a30a3 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -4328,6 +4328,40 @@ allocator. This is primarily useful for long lived
buffers that usually sit emp
length-delimited slices. It's helpful for building wire protocols.")
(license license:expat)))
+(define-public go-github-com-lithammer-fuzzysearch
+ (package
+ (name "go-github-com-lithammer-fuzzysearch")
+ (version "1.1.8")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/lithammer/fuzzysearch")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0fp00gzbrr5fnz01lmkjqcs5z24zjrsp4r13ia0x0wslp5r13hv8"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/lithammer/fuzzysearch"
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; XXX: Replace when go-build-system supports nested path.
+ (delete 'build)
+ (replace 'check
+ (lambda* (#:key import-path tests? #:allow-other-keys)
+ (when tests?
+ (with-directory-excursion (string-append "src/" import-path)
+ (invoke "go" "test" "-v" "./..."))))))))
+ (propagated-inputs (list go-golang-org-x-text))
+ (home-page "https://github.com/lithammer/fuzzysearch")
+ (synopsis "Tiny and fast fuzzy search in Go")
+ (description
+ "A speedy fuzzy matching package for Go inspired by the JavaScript
+library bevacqua/fuzzysearch.")
+ (license license:expat)))
+
(define-public go-github-com-liyue201-gostl
(package
(name "go-github-com-liyue201-gostl")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index f0753d97ed..bb72caae27 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -8234,40 +8234,6 @@ useful during debugging, to avoid wrapping long output
lines in the
terminal.")
(license license:expat)))
-(define-public go-github-com-lithammer-fuzzysearch
- (package
- (name "go-github-com-lithammer-fuzzysearch")
- (version "1.1.8")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/lithammer/fuzzysearch")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0fp00gzbrr5fnz01lmkjqcs5z24zjrsp4r13ia0x0wslp5r13hv8"))))
- (build-system go-build-system)
- (propagated-inputs (list go-golang-org-x-text))
- (arguments
- (list
- #:import-path "github.com/lithammer/fuzzysearch"
- #:phases
- #~(modify-phases %standard-phases
- ;; XXX: Replace when go-build-system supports nested path.
- (delete 'build)
- (replace 'check
- (lambda* (#:key import-path tests? #:allow-other-keys)
- (when tests?
- (with-directory-excursion (string-append "src/" import-path)
- (invoke "go" "test" "-v" "./..."))))))))
- (home-page "https://github.com/lithammer/fuzzysearch")
- (synopsis "Tiny and fast fuzzy search in Go")
- (description
- "A speedy fuzzy matching package for Go inspired by the JavaScript
-library bevacqua/fuzzysearch.")
- (license license:expat)))
-
;;;
;;; 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
- 92/172: gnu: Add go-github-com-rs-zerolog., (continued)
- 92/172: gnu: Add go-github-com-rs-zerolog., guix-commits, 2024/11/05
- 96/172: gnu: Add go-go-opentelemetry-io-otel-sdk., guix-commits, 2024/11/05
- 97/172: gnu: go-github-com-go-openapi-loads: Simplify phases., guix-commits, 2024/11/05
- 101/172: gnu: Add go-github-com-golang-mock., guix-commits, 2024/11/05
- 104/172: gnu: Add go-github-com-hashicorp-go-retryablehttp., guix-commits, 2024/11/05
- 106/172: gnu: Add go-github-com-circonus-labs-go-apiclient., guix-commits, 2024/11/05
- 109/172: gnu: Add go-github-com-pascaldekloe-goe., guix-commits, 2024/11/05
- 117/172: guix: Add copyright records., guix-commits, 2024/11/05
- 130/172: gnu: Add go-github-com-aead-ecdh., guix-commits, 2024/11/05
- 138/172: gnu: go-github.com-smartystreets-goconvey: Rename variable., guix-commits, 2024/11/05
- 02/172: gnu: go-github-com-lithammer-fuzzysearch: Move to golang-xyz.,
guix-commits <=
- 11/172: gnu: go-github-com-deckarep-golang-set: Move to golang-xyz., guix-commits, 2024/11/05
- 27/172: gnu: go-golang-org-x-sys: Update to 0.25.0., guix-commits, 2024/11/05
- 24/172: gnu: go-golang-org-x-image: Update to 0.20.0., guix-commits, 2024/11/05
- 28/172: gnu: go-golang-org-x-term: Update to 0.24.0., guix-commits, 2024/11/05
- 19/172: gnu: go-1.20: Build with gccgo-12 on some systems., guix-commits, 2024/11/05
- 38/172: gnu: go-github-com-libp2p-go-msgio: Fix build., guix-commits, 2024/11/05
- 40/172: gnu: go-github-com-prometheus-common: Fix build., guix-commits, 2024/11/05
- 57/172: gnu: go-golang-org-x-vuln: Enable tests., guix-commits, 2024/11/05
- 71/172: gnu: go-github-com-jonboulle-clockwork: Move to golang-xyz., guix-commits, 2024/11/05
- 54/172: gnu: go-github-com-google-go-cmdtest: Move to golang-build., guix-commits, 2024/11/05