all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#53979] [PATCH] gnu: Add cl-wordnet.
@ 2022-02-13 20:10 jgart via Guix-patches via
  2022-02-14  9:09 ` bug#53979: " Guillaume Le Vaillant
  0 siblings, 1 reply; 2+ messages in thread
From: jgart via Guix-patches via @ 2022-02-13 20:10 UTC (permalink / raw)
  To: 53979; +Cc: jgart

* gnu/packages/lisp-xyz.scm (cl-wordnet): New variable.
---
 gnu/packages/lisp-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 8b89f9cf2a..7ab0d306f4 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -20552,6 +20552,41 @@ (define-public cl-nhooks
 (define-public ecl-nhooks
   (sbcl-package->ecl-package sbcl-nhooks))
 
+(define-public sbcl-wordnet
+  (let ((commit "8cd0db8f5e84e7a930fa74e590ecddf75cd8e5d6")
+        (revision "0"))
+    (package
+      (name "sbcl-wordnet")
+      (version (git-version "20220213" revision commit))
+      (source
+        (origin
+          (method git-fetch)
+          (uri (git-reference
+                (url "https://github.com/phoe/wordnet")
+                (commit commit)))
+          (sha256
+           (base32 "07p60k295fsfcp0gmkqhrxd68hb38aqva8f4k8xk8bqqxxf42vkq"))
+          (file-name (git-file-name name commit))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       `(#:tests? #f ; There are no tests.
+         #:asd-files '("wordnet.asd")
+         #:asd-systems '("wordnet")))
+      (inputs
+        (list sbcl-split-sequence))
+      (home-page "https://github.com/phoe/wordnet")
+      (synopsis "Common Lisp interface to WordNet")
+      (description
+"This software provides an interface by which Common Lisp programs can
+access lexicographic data from WordNet.")
+      (license license:expat))))
+
+(define-public cl-wordnet
+  (sbcl-package->cl-source-package sbcl-wordnet))
+
+(define-public ecl-wordnet
+  (sbcl-package->ecl-package sbcl-wordnet))
+
 (define-public sbcl-nfiles
   (package
    (name "sbcl-nfiles")
-- 
2.35.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#53979: [PATCH] gnu: Add cl-wordnet.
  2022-02-13 20:10 [bug#53979] [PATCH] gnu: Add cl-wordnet jgart via Guix-patches via
@ 2022-02-14  9:09 ` Guillaume Le Vaillant
  0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2022-02-14  9:09 UTC (permalink / raw)
  To: jgart; +Cc: 53979-done

[-- Attachment #1: Type: text/plain, Size: 91 bytes --]

Patch pushed as ecaada08ea555310c3d7c3aef868cbb42c25a62d with a few
modifications.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-14  9:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-13 20:10 [bug#53979] [PATCH] gnu: Add cl-wordnet jgart via Guix-patches via
2022-02-14  9:09 ` bug#53979: " Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.