GNU bug report logs -
#75815
[PATCH] gnu: Add cl-fuzzy-match
Previous Next
Reported by: Junker <dk <at> junkeria.club>
Date: Fri, 24 Jan 2025 21:32:01 UTC
Severity: normal
Tags: patch
Done: Guillaume Le Vaillant <glv <at> posteo.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 75815 in the body.
You can then email your comments to 75815 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#75815
; Package
guix-patches
.
(Fri, 24 Jan 2025 21:32:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Junker <dk <at> junkeria.club>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Fri, 24 Jan 2025 21:32:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Change-Id: I5927d0ce1c737885e2447cd73b1f3d2e8c59e5a3
---
gnu/packages/lisp-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index f00f0d30e2..7a5db300e5 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5953,6 +5953,38 @@ (define-public cl-ftp
(define-public ecl-cl-ftp
(sbcl-package->ecl-package sbcl-cl-ftp))
+(define-public sbcl-fuzzy-match
+ (let ((commit "e46ca41ef4641461f7be006782e3cfdcf73ba98a")
+ (revision "1"))
+ (package
+ (name "sbcl-fuzzy-match")
+ (version (git-version "0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vindarel/fuzzy-match")
+ (commit commit)))
+ (file-name (git-file-name "cl-fuzzy-match" version))
+ (sha256
+ (base32 "1lawndmzkl6f9sviy7ngn2s3xkc4akp8l505kvpslaz6qq0ayyqv"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs (list sbcl-cl-str
+ sbcl-mk-string-metrics))
+ (home-page "htstps://github.com/Lautaro-Garcia/cl-notify")
+ (synopsis "Common Lisp library for fuzzy matching candidates from an
+input string")
+ (description
+ "From a string input and a list of candidates, return the most relevant
+candidates first")
+ (license license:expat))))
+
+(define-public cl-fuzzy-match
+ (sbcl-package->cl-source-package sbcl-fuzzy-match))
+
+(define-public ecl-fuzzy-match
+ (sbcl-package->ecl-package sbcl-fuzzy-match))
+
(define-public sbcl-cl-gamepad
(let ((commit "d5b99fbaa2e39294d23061699e8f1e761eda7205")
(revision "3"))
base-commit: ea7a6fa8c66ef3cfd0ccdec6c0a7a3e7ab3dfc9c
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75815
; Package
guix-patches
.
(Wed, 29 Jan 2025 11:12:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 75815 <at> debbugs.gnu.org (full text, mbox):
Fixed homege URL.
Change-Id: I7b9ec909e56cff315b53d42862967fbaaef3f6bc
---
gnu/packages/lisp-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index f00f0d30e2..631f52de18 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5953,6 +5953,32 @@ (define-public cl-ftp
(define-public ecl-cl-ftp
(sbcl-package->ecl-package sbcl-cl-ftp))
+(define-public sbcl-fuzzy-match
+ (let ((commit "e46ca41ef4641461f7be006782e3cfdcf73ba98a")
+ (revision "1"))
+ (package
+ (name "sbcl-fuzzy-match")
+ (version (git-version "0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vindarel/fuzzy-match")
+ (commit commit)))
+ (file-name (git-file-name "cl-fuzzy-match" version))
+ (sha256
+ (base32 "1lawndmzkl6f9sviy7ngn2s3xkc4akp8l505kvpslaz6qq0ayyqv"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs (list sbcl-cl-str
+ sbcl-mk-string-metrics))
+ (home-page "https://github.com/vindarel/fuzzy-match")
+ (synopsis "Common Lisp library for fuzzy matching candidates from an
+input string")
+ (description
+ "From a string input and a list of candidates, return the most relevant
+candidates first")
+ (license license:expat))))
+
(define-public sbcl-cl-gamepad
(let ((commit "d5b99fbaa2e39294d23061699e8f1e761eda7205")
(revision "3"))
base-commit: ea7a6fa8c66ef3cfd0ccdec6c0a7a3e7ab3dfc9c
--
2.47.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#75815
; Package
guix-patches
.
(Fri, 31 Jan 2025 13:00:03 GMT)
Full text and
rfc822 format available.
Message #11 received at 75815 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/lisp-xyz.scm (cl-fuzzy-match,
ecl-fuzzy-match, sbcl-fuzzy-match): New variables.
Change-Id: I65be6ab95bfec08e69bd4bf9658b140af3ea2025
---
gnu/packages/lisp-xyz.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index f00f0d30e2..ef0a30133e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -5953,6 +5953,38 @@ (define-public cl-ftp
(define-public ecl-cl-ftp
(sbcl-package->ecl-package sbcl-cl-ftp))
+(define-public sbcl-fuzzy-match
+ (let ((commit "e46ca41ef4641461f7be006782e3cfdcf73ba98a")
+ (revision "1"))
+ (package
+ (name "sbcl-fuzzy-match")
+ (version (git-version "0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vindarel/fuzzy-match")
+ (commit commit)))
+ (file-name (git-file-name "cl-fuzzy-match" version))
+ (sha256
+ (base32 "1lawndmzkl6f9sviy7ngn2s3xkc4akp8l505kvpslaz6qq0ayyqv"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs (list sbcl-cl-str
+ sbcl-mk-string-metrics))
+ (home-page "https://github.com/vindarel/fuzzy-match")
+ (synopsis "Common Lisp library for fuzzy matching candidates from an
+input string")
+ (description
+ "From a string input and a list of candidates, return the most relevant
+candidates first")
+ (license license:expat))))
+
+(define-public cl-fuzzy-match
+ (sbcl-package->cl-source-package sbcl-fuzzy-match))
+
+(define-public ecl-fuzzy-match
+ (sbcl-package->ecl-package sbcl-fuzzy-match))
+
(define-public sbcl-cl-gamepad
(let ((commit "d5b99fbaa2e39294d23061699e8f1e761eda7205")
(revision "3"))
base-commit: ea7a6fa8c66ef3cfd0ccdec6c0a7a3e7ab3dfc9c
--
2.48.1
Reply sent
to
Guillaume Le Vaillant <glv <at> posteo.net>
:
You have taken responsibility.
(Thu, 06 Feb 2025 14:01:03 GMT)
Full text and
rfc822 format available.
Notification sent
to
Junker <dk <at> junkeria.club>
:
bug acknowledged by developer.
(Thu, 06 Feb 2025 14:01:03 GMT)
Full text and
rfc822 format available.
Message #16 received at 75815-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Patch applied as 431f2ad7308532e9f70b6bdea5d129abf3110c1d.
Thanks.
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 07 Mar 2025 12:24:08 GMT)
Full text and
rfc822 format available.
This bug report was last modified 6 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.