* [bug#57656] [PATCH] gnu: Add cl-wordnet.
@ 2022-09-08 1:08 jgart via Guix-patches via
2022-09-08 1:32 ` [bug#57656] [PATCH v2] " jgart via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-09-08 1:08 UTC (permalink / raw)
To: 57656; +Cc: jgart
* gnu/packages/lisp-xyz.scm (cl-wordnet, ecl-wordnet, sbcl-wordnet):
New variables.
---
guixrus/packages/common/lisp.scm | 35 --------------------------------
1 file changed, 35 deletions(-)
diff --git a/guixrus/packages/common/lisp.scm b/guixrus/packages/common/lisp.scm
index 634a297..e8b7470 100644
--- a/guixrus/packages/common/lisp.scm
+++ b/guixrus/packages/common/lisp.scm
@@ -199,41 +199,6 @@ generators.")
(define-public ecl-scribble
(sbcl-package->ecl-package sbcl-scribble))
-(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)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "07p60k295fsfcp0gmkqhrxd68hb38aqva8f4k8xk8bqqxxf42vkq"))))
- (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-cxp
(let ((commit "cdea8984d7dcf7fa075200973482bf9a27341003")
(revision "0"))
--
2.37.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#57656] [PATCH v2] gnu: Add cl-wordnet.
2022-09-08 1:08 [bug#57656] [PATCH] gnu: Add cl-wordnet jgart via Guix-patches via
@ 2022-09-08 1:32 ` jgart via Guix-patches via
2022-09-09 12:36 ` bug#57656: " Guillaume Le Vaillant
0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-09-08 1:32 UTC (permalink / raw)
To: 57656; +Cc: jgart
* gnu/packages/lisp-xyz.scm (cl-wordnet, ecl-wordnet, sbcl-wordnet):
New variables.
oops, I sent the wrong the patch.
use this version 2 instead
all best,
jgart
---
gnu/packages/lisp-xyz.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 1b7096a05d..cc24426d47 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -493,6 +493,39 @@ (define-public cl-irc
(define-public ecl-cl-irc
(sbcl-package->ecl-package sbcl-cl-irc))
+(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)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "07p60k295fsfcp0gmkqhrxd68hb38aqva8f4k8xk8bqqxxf42vkq"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ `(#:tests? #f)) ; There are no tests.
+ (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-tripod
(let ((commit "bcea16610b4961a927e417e4413fffe686d71c83")
(revision "0"))
--
2.37.3
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#57656: [PATCH v2] gnu: Add cl-wordnet.
2022-09-08 1:32 ` [bug#57656] [PATCH v2] " jgart via Guix-patches via
@ 2022-09-09 12:36 ` Guillaume Le Vaillant
0 siblings, 0 replies; 3+ messages in thread
From: Guillaume Le Vaillant @ 2022-09-09 12:36 UTC (permalink / raw)
To: jgart; +Cc: 57656-close
[-- Attachment #1: Type: text/plain, Size: 130 bytes --]
It looks like you already sent this patch in February. It was merged in
commit ecaada08ea555310c3d7c3aef868cbb42c25a62d.
Closing.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-09-09 12:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-08 1:08 [bug#57656] [PATCH] gnu: Add cl-wordnet jgart via Guix-patches via
2022-09-08 1:32 ` [bug#57656] [PATCH v2] " jgart via Guix-patches via
2022-09-09 12:36 ` bug#57656: " 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.