* [bug#59411] [PATCH 0/2] gnu: Add cl-one-more-re-nightmare.
@ 2022-11-20 14:34 Paul A. Patience
2022-11-20 14:37 ` [bug#59411] [PATCH 1/2] gnu: Add cl-stealth-mixin Paul A. Patience
2022-11-21 9:12 ` bug#59411: [PATCH 0/2] " Guillaume Le Vaillant
0 siblings, 2 replies; 4+ messages in thread
From: Paul A. Patience @ 2022-11-20 14:34 UTC (permalink / raw)
To: 59411; +Cc: Paul A. Patience
Paul A. Patience (2):
gnu: Add cl-stealth-mixin.
gnu: Add cl-one-more-re-nightmare.
gnu/packages/lisp-xyz.scm | 85 +++++++++++++++++++++++++++++++++++++++
1 file changed, 85 insertions(+)
--
2.38.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#59411] [PATCH 1/2] gnu: Add cl-stealth-mixin.
2022-11-20 14:34 [bug#59411] [PATCH 0/2] gnu: Add cl-one-more-re-nightmare Paul A. Patience
@ 2022-11-20 14:37 ` Paul A. Patience
2022-11-20 14:37 ` [bug#59411] [PATCH 2/2] gnu: Add cl-one-more-re-nightmare Paul A. Patience
2022-11-21 9:12 ` bug#59411: [PATCH 0/2] " Guillaume Le Vaillant
1 sibling, 1 reply; 4+ messages in thread
From: Paul A. Patience @ 2022-11-20 14:37 UTC (permalink / raw)
To: 59411; +Cc: Paul A. Patience
* gnu/packages/lisp-xyz.scm (sbcl-stealth-mixin, cl-stealth-mixin,
ecl-stealth-mixin): New variables.
---
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 f4a4aad1e2..317651de21 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -23301,6 +23301,38 @@ (define-public cl-dynamic-mixins
(define-public ecl-dynamic-mixins
(sbcl-package->ecl-package sbcl-dynamic-mixins))
+(define-public sbcl-stealth-mixin
+ (let ((commit "2f853fcead554221d4be3b10522b502ea729e944")
+ (revision "0"))
+ (package
+ (name "sbcl-stealth-mixin")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/robert-strandh/Stealth-mixin")
+ (commit commit)))
+ (file-name (git-file-name "cl-stealth-mixin" version))
+ (sha256
+ (base32 "0ar9cdmbmdnqz1ywpw34n47hlh0vqmb6pl76f5vbfgip3c81xwyi"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-closer-mop))
+ (home-page "https://github.com/robert-strandh/Stealth-mixin")
+ (synopsis "Create stealth mixin classes")
+ (description
+ "Stealth-mixin is a Common Lisp library for creating stealth mixin classes.
+These are classes that are dynamically mixed into other classes without the
+latter being aware of it.")
+ (license license:bsd-2))))
+
+(define-public cl-stealth-mixin
+ (sbcl-package->cl-source-package sbcl-stealth-mixin))
+
+(define-public ecl-stealth-mixin
+ (sbcl-package->ecl-package sbcl-stealth-mixin))
+
(define-public sbcl-sealable-metaobjects
(let ((commit "e09ec97252e0844528f61abdc0c7ee256875f8ee"))
(package
--
2.38.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#59411] [PATCH 2/2] gnu: Add cl-one-more-re-nightmare.
2022-11-20 14:37 ` [bug#59411] [PATCH 1/2] gnu: Add cl-stealth-mixin Paul A. Patience
@ 2022-11-20 14:37 ` Paul A. Patience
0 siblings, 0 replies; 4+ messages in thread
From: Paul A. Patience @ 2022-11-20 14:37 UTC (permalink / raw)
To: 59411; +Cc: Paul A. Patience
* gnu/packages/lisp-xyz.scm (sbcl-one-more-re-nightmare,
cl-one-more-re-nightmare, ecl-one-more-re-nightmare): New variables.
---
gnu/packages/lisp-xyz.scm | 53 +++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 317651de21..e24c31b8db 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -1019,6 +1019,59 @@ (define-public cl-ppcre
(define-public ecl-cl-ppcre
(sbcl-package->ecl-package sbcl-cl-ppcre))
+(define-public sbcl-one-more-re-nightmare
+ (let ((commit "09c33feed35797512bf123ccca053cf8ba42bfbd")
+ (revision "0"))
+ (package
+ (name "sbcl-one-more-re-nightmare")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/telekons/one-more-re-nightmare")
+ (commit commit)))
+ (file-name (git-file-name "cl-one-more-re-nightmare" version))
+ (sha256
+ (base32 "0vc0lxvn3anjb63hr26r1l18aw5nbj80w9ja3a32fip6nbwfsrfv"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-test-systems '("one-more-re-nightmare-tests")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-tests
+ (lambda _
+ (substitute* "Tests/one-more-re-nightmare-tests.asd"
+ ((":depends-on")
+ (string-append
+ ":perform (test-op (o c) (symbol-call :one-more-re-nightmare-tests '#:run-tests))"
+ "\n :depends-on"))))))))
+ (native-inputs
+ (list sbcl-lparallel sbcl-parachute))
+ (inputs
+ (list sbcl-alexandria
+ sbcl-babel
+ sbcl-bordeaux-threads
+ sbcl-dynamic-mixins
+ sbcl-esrap
+ sbcl-stealth-mixin
+ sbcl-trivia
+ sbcl-trivial-indent))
+ (home-page "https://github.com/telekons/one-more-re-nightmare")
+ (synopsis "Regular expression compiler in Common Lisp")
+ (description "@code{one-more-re-nightmare} is a regular expression engine
+that uses the technique presented in Regular-expression derivatives
+re-examined (Owens, Reppy and Turon, 2009;
+@url{doi:10.1017/S0956796808007090}) to interpret and compile regular
+expressions.")
+ (license license:bsd-2))))
+
+(define-public cl-one-more-re-nightmare
+ (sbcl-package->cl-source-package sbcl-one-more-re-nightmare))
+
+(define-public ecl-one-more-re-nightmare
+ (sbcl-package->ecl-package sbcl-one-more-re-nightmare))
+
(define-public sbcl-parse
(let ((commit "2351ee78acac065fcf10b8713d3f404e2e910786")
(revision "1"))
--
2.38.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* bug#59411: [PATCH 0/2] gnu: Add cl-one-more-re-nightmare.
2022-11-20 14:34 [bug#59411] [PATCH 0/2] gnu: Add cl-one-more-re-nightmare Paul A. Patience
2022-11-20 14:37 ` [bug#59411] [PATCH 1/2] gnu: Add cl-stealth-mixin Paul A. Patience
@ 2022-11-21 9:12 ` Guillaume Le Vaillant
1 sibling, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2022-11-21 9:12 UTC (permalink / raw)
To: Paul A. Patience; +Cc: 59411-done
[-- Attachment #1: Type: text/plain, Size: 82 bytes --]
Patches pushed as 7245773eb60460e79d3629e7b5e8f93b3748882c and
following.
Thanks.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-11-21 9:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-20 14:34 [bug#59411] [PATCH 0/2] gnu: Add cl-one-more-re-nightmare Paul A. Patience
2022-11-20 14:37 ` [bug#59411] [PATCH 1/2] gnu: Add cl-stealth-mixin Paul A. Patience
2022-11-20 14:37 ` [bug#59411] [PATCH 2/2] gnu: Add cl-one-more-re-nightmare Paul A. Patience
2022-11-21 9:12 ` bug#59411: [PATCH 0/2] " Guillaume Le Vaillant
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).