summaryrefslogtreecommitdiff
path: root/gnu/packages/lisp-xyz.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/lisp-xyz.scm')
-rw-r--r--gnu/packages/lisp-xyz.scm251
1 files changed, 247 insertions, 4 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index b647c1aa3d..45fcb108f0 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -8934,8 +8934,8 @@ doesn't support them.")
(sbcl-package->ecl-package sbcl-cl-interpol))
(define-public sbcl-symbol-munger
- (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
- (revision "1"))
+ (let ((commit "e96558e8315b8eef3822be713354787b2348b25e")
+ (revision "2"))
(package
(name "sbcl-symbol-munger")
(version (git-version "0.0.1" revision commit))
@@ -8945,10 +8945,10 @@ doesn't support them.")
(uri (git-reference
(url "https://github.com/AccelerationNet/symbol-munger")
(commit commit)))
- (file-name (git-file-name name version))
+ (file-name (git-file-name "cl-symbol-munger" version))
(sha256
(base32
- "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
+ "16fshnxp9212503z1vjlmx5pafv14bzpihn486x1ljakqjigfnfz"))))
(build-system asdf-build-system/sbcl)
(inputs
`(("alexandria" ,sbcl-alexandria)
@@ -14717,6 +14717,37 @@ for debugging and profiling real world applications.")
(define-public ecl-supertrace
(sbcl-package->ecl-package sbcl-supertrace))
+(define-public sbcl-flamegraph
+ (let ((commit "1ed7a718eae88bd35e1649a1c716d46c59dc0a24")
+ (revision "0"))
+ (package
+ (name "sbcl-flamegraph")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ ;; This is a fork with fixes for latest SBCL.
+ (url "https://github.com/ruricolist/cl-flamegraph")
+ (commit commit)))
+ (file-name (git-file-name "cl-flamegraph" version))
+ (sha256
+ (base32 "1aj7hhvav9j9c66ssy11ry3p6xqb912yafi91g6sin6pdx84c2lw"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-alexandria))
+ (home-page "https://github.com/40ants/cl-flamegraph")
+ (synopsis "Generate flamegraphs of Common Lisp code")
+ (description
+ "@code{cl-flamegraph} is a wrapper around SBCL's statistical profiler.
+It saves stack traces of profiled code in a form suitable for processing by
+the @command{flamegraph.pl} script, which is available in the Guix package
+@code{flamegraph}.")
+ (license license:bsd-3))))
+
+(define-public cl-flamegraph
+ (sbcl-package->cl-source-package sbcl-flamegraph))
+
(define-public sbcl-trivial-benchmark
(let ((commit "42d76733dd2e873471c6f1e27d39113293f7dd5c"))
(package
@@ -17296,6 +17327,42 @@ implementation, for example drawing calls of GUI applications.")
(define-public cl-trivial-main-thread
(sbcl-package->cl-source-package sbcl-trivial-main-thread))
+(define-public sbcl-moira
+ (let ((commit "21f1cfd5942fcaea2ed2e4f6055b2a5a39ac4c6e")
+ (revision "0"))
+ (package
+ (name "sbcl-moira")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ruricolist/moira")
+ (commit commit)))
+ (file-name (git-file-name "cl-moira" version))
+ (sha256
+ (base32 "0r6hvq8j04y1i85f8jwhhafylgfrkg8c1z5746nsbv0v0348sf5h"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-alexandria
+ sbcl-bordeaux-threads
+ sbcl-osicat
+ sbcl-serapeum
+ sbcl-trivial-features
+ sbcl-trivial-garbage))
+ (home-page "https://github.com/ruricolist/moira")
+ (synopsis "Monitor and restart background threads")
+ (description
+ "Moira is a library for monitoring and, if necessary, restarting
+long-running threads. In principle, it is like an in-Lisp process supervisor.")
+ (license license:expat))))
+
+(define-public cl-moira
+ (sbcl-package->cl-source-package sbcl-moira))
+
+(define-public ecl-moira
+ (sbcl-package->ecl-package sbcl-moira))
+
(define-public sbcl-cl-package-locks
(let ((commit "96a358ede7cef416d61d2f699e724fe1d9de602c")
(revision "1"))
@@ -19999,6 +20066,44 @@ libyaml.")
(define-public ecl-cl-yaml
(sbcl-package->ecl-package sbcl-cl-yaml))
+(define-public sbcl-clop
+ (let ((commit "c0c3fe7efa5ac95ba1644febfb2c2acab757fcda")
+ (revision "0"))
+ (package
+ (name "sbcl-clop")
+ ;; ASD file indicates 0.1.0, but changelog 1.0.1.
+ (version (git-version "1.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/sheepduke/clop")
+ (commit commit)))
+ (file-name (git-file-name "cl-clop" version))
+ (sha256
+ (base32 "1q7rlizr8gcbfz4a9660gdbw7d2zbld18akjpibg54j7jh5kb8gc"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-fiveam))
+ (inputs
+ (list sbcl-alexandria
+ sbcl-cl-str
+ sbcl-esrap
+ sbcl-local-time
+ sbcl-parse-number))
+ (home-page "https://github.com/sheepduke/clop")
+ (synopsis "TOML parser for Common Lisp")
+ (description
+ "Clop is a Common Lisp library for parsing strings in the TOML
+configuration file format.")
+ (license license:expat))))
+
+(define-public cl-clop
+ (sbcl-package->cl-source-package sbcl-clop))
+
+(define-public ecl-clop
+ (sbcl-package->ecl-package sbcl-clop))
+
(define-public sbcl-linedit
(let ((commit "0561c97dfca2f5854fcc66558a567a9875ddcb8f")
(revision "1"))
@@ -20482,6 +20587,69 @@ command in Common Lisp.")
(define-public ecl-which
(sbcl-package->ecl-package sbcl-which))
+(define-public sbcl-wu-decimal
+ (let ((commit "5b348bdb32a0f83e80e17aa68cd51787ae8c8a45")
+ (revision "0"))
+ (package
+ (name "sbcl-wu-decimal")
+ (version (git-version "2.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Wukix/wu-decimal")
+ (commit commit)))
+ (file-name (git-file-name "cl-wu-decimal" version))
+ (sha256
+ (base32 "1p7na4hic7297amwm4idfwkyx664ny8cdssncyra37pmv4wzp8dm"))))
+ (build-system asdf-build-system/sbcl)
+ (home-page "https://github.com/Wukix/wu-decimal")
+ (synopsis "Arbitrary-precision decimal arithmetic")
+ (description
+ "Wu-Decimal enables convenient, arbitrary-precision decimal arithmetic
+through a reader macro, @code{#$}, and an update to the @code{pprint} dispatch
+table. Wu-Decimal uses the CL rational type to store decimals, which enables
+numeric functions such as @code{+}, @code{-}, etc., to operate on decimal
+numbers in a natural way.")
+ (license license:bsd-2))))
+
+(define-public cl-wu-decimal
+ (sbcl-package->cl-source-package sbcl-wu-decimal))
+
+(define-public ecl-wu-decimal
+ (sbcl-package->ecl-package sbcl-wu-decimal))
+
+(define-public sbcl-infix-math
+ (let ((commit "f5155ae9709e518061ace79887d78f8e79c61cac")
+ (revision "0"))
+ (package
+ (name "sbcl-infix-math")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ruricolist/infix-math")
+ (commit commit)))
+ (file-name (git-file-name "cl-infix-math" version))
+ (sha256
+ (base32 "1h6p254xl793wfq3qla5y95k6zimy477f8brblx6ran3rg3bydbg"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ (list sbcl-alexandria sbcl-parse-number sbcl-serapeum sbcl-wu-decimal))
+ (home-page "https://github.com/ruricolist/infix-math")
+ (synopsis "Extensible infix syntax for math in Common Lisp")
+ (description
+ "Infix-Math is a library that provides a special-purpose syntax for
+transcribing mathematical formulas into Lisp.")
+ (license license:expat))))
+
+(define-public cl-infix-math
+ (sbcl-package->cl-source-package sbcl-infix-math))
+
+(define-public ecl-infix-math
+ (sbcl-package->ecl-package sbcl-infix-math))
+
(define-public sbcl-cl-num-utils
(let ((commit "97a88cd34540acf52e872a82ebfef3da0a34fa12")
(revision "1"))
@@ -20665,6 +20833,42 @@ density, distribution and quantiles for these distributions.")
(define-public ecl-cl-random
(sbcl-package->ecl-package sbcl-cl-random))
+(define-public sbcl-random-sample
+ (let ((commit "46b70374ed796b84ea003e83c1db97b0caf97e22")
+ (revision "0"))
+ (package
+ (name "sbcl-random-sample")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ruricolist/random-sample")
+ (commit commit)))
+ (file-name (git-file-name "cl-random-sample" version))
+ (sha256
+ (base32 "0nhgca6wf754wbg91h40gx7xq22rawg2pn6l7h02wv1jxac4q6nh"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-fiveam))
+ (inputs
+ (list sbcl-alexandria
+ sbcl-infix-math
+ sbcl-named-readtables
+ sbcl-serapeum))
+ (home-page "https://github.com/ruricolist/random-sample")
+ (synopsis "Take a random sample from a sequence")
+ (description
+ "Random-Sample is a library for reliably taking a random sample from a
+sequence.")
+ (license license:expat))))
+
+(define-public cl-random-sample
+ (sbcl-package->cl-source-package sbcl-random-sample))
+
+(define-public ecl-random-sample
+ (sbcl-package->ecl-package sbcl-random-sample))
+
(define-public sbcl-mgl-gpr
(let ((commit "cb6ce51e2f87bf1d589f3703c13eea6e25780afe")
(revision "1"))
@@ -24751,6 +24955,45 @@ roman numeral given in the key.")
(define-public ecl-triads
(sbcl-package->ecl-package sbcl-triads))
+(define-public sbcl-closure-template
+ ;; There are no releases since 2015.
+ (let ((commit "f1983aa525045691e128027d2a2d74831c873d6e")
+ (revision "0"))
+ (package
+ (name "sbcl-closure-template")
+ (version (git-version "0.2.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/archimag/cl-closure-template")
+ (commit commit)))
+ (file-name (git-file-name "cl-closure-template" version))
+ (sha256
+ (base32 "16h0fs6bjjd4n9pbkwcprpgyj26vsw2akk3q08m7xmsmqi05dppv"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs (list sbcl-lift))
+ (inputs
+ (list sbcl-alexandria
+ sbcl-babel
+ sbcl-closer-mop
+ sbcl-esrap
+ sbcl-iterate
+ sbcl-parse-number
+ sbcl-split-sequence))
+ (synopsis "Lisp implementation of Google Closure Templates")
+ (description
+ "This package provides a Common Lisp implementation of Google
+Closure Templates.")
+ (home-page "https://github.com/archimag/cl-closure-template/")
+ (license license:llgpl))))
+
+(define-public cl-closure-template
+ (sbcl-package->cl-source-package sbcl-closure-template))
+
+(define-public ecl-closure-template
+ (sbcl-package->ecl-package sbcl-closure-template))
+
(define-public sbcl-cl-morse
(package
(name "sbcl-cl-morse")