diff options
author | jgart <jgart@dismail.de> | 2024-09-26 10:19:15 -0500 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-09-26 10:22:53 -0500 |
commit | 8172b25ea22762b361b14600292c154a10579b47 (patch) | |
tree | 6fa7a1ad6c684a879f54a4b35e43eb62f3113532 /gnu | |
parent | 3171ff971c1c8d230e4a22091c9322e87b8b6c9d (diff) | |
download | guix-8172b25ea22762b361b14600292c154a10579b47.tar guix-8172b25ea22762b361b14600292c154a10579b47.tar.gz |
gnu: lisp-xyz: Sort packages.
* gnu/packages/lisp-xyz.scm: Sort packages.
Change-Id: I4eada8fa1a8a99b9ee888c735ac0793ed1f1cea8
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 140 |
1 files changed, 70 insertions, 70 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 8c570bece7..d3c6fde93d 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -2922,76 +2922,6 @@ formulas.") (define-public ecl-cells (sbcl-package->ecl-package sbcl-cells)) -(define libasyncprocess - (let ((commit "9690530fc92b59636d9f17d821afa7697e7c8ca4") - (revision "0")) - (package - (name "libasyncprocess") - (version (git-version "0.0.1" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/lem-project/async-process") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1m2sfgfg6c0gqqy1pqsahsiw3j25y473mfw7sx0akkqbhwhm7mjb")) - (modules '((guix build utils))) - (snippet - ;; Delete precompiled artifacts. - `(begin - (for-each delete-file-recursively - (list "static" - "static_old0001-819cbf6")))))) - (build-system gnu-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (replace 'bootstrap - (lambda _ - (invoke "libtoolize") - (invoke "aclocal") - (invoke "autoheader") - (invoke "automake" "-a") - (invoke "autoconf")))))) - (native-inputs (list autoconf automake libtool)) - (home-page "https://github.com/lem-project/async-process") - (synopsis "C library component for @code{cl-async-process}") - (description - "This package provides the C library component for @code{cl-async-process}.") - (license license:expat)))) - -(define-public sbcl-async-process - (package - (inherit libasyncprocess) - (name "sbcl-async-process") - (build-system asdf-build-system/sbcl) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'fix-paths - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "src/async-process.lisp" - (("libasyncprocess\\.so") - (search-input-file inputs - "/lib/async-process/libasyncprocess.so")))))))) - (inputs - (modify-inputs (package-inputs libasyncprocess) - (prepend libasyncprocess sbcl-cffi))) - (home-page "https://github.com/lem-project/async-process") - (synopsis "Asynchronous process execution for Common Lisp") - (description "This library provides an asynchronous process -execution mechanism for Common Lisp."))) - -(define-public cl-async-process - (sbcl-package->cl-source-package sbcl-async-process)) - -(define-public ecl-async-process - (sbcl-package->ecl-package sbcl-async-process)) - (define-public sbcl-cephes (let ((commit "d87146fa38c8425ffb5fe425eee5eb3e818bacd4") (revision "0")) @@ -4180,6 +4110,76 @@ to cl-async.") (define-public ecl-cl-async-future (sbcl-package->ecl-package sbcl-cl-async-future)) +(define libasyncprocess + (let ((commit "9690530fc92b59636d9f17d821afa7697e7c8ca4") + (revision "0")) + (package + (name "libasyncprocess") + (version (git-version "0.0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lem-project/async-process") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1m2sfgfg6c0gqqy1pqsahsiw3j25y473mfw7sx0akkqbhwhm7mjb")) + (modules '((guix build utils))) + (snippet + ;; Delete precompiled artifacts. + `(begin + (for-each delete-file-recursively + (list "static" + "static_old0001-819cbf6")))))) + (build-system gnu-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'bootstrap + (lambda _ + (invoke "libtoolize") + (invoke "aclocal") + (invoke "autoheader") + (invoke "automake" "-a") + (invoke "autoconf")))))) + (native-inputs (list autoconf automake libtool)) + (home-page "https://github.com/lem-project/async-process") + (synopsis "C library component for @code{cl-async-process}") + (description + "This package provides the C library component for @code{cl-async-process}.") + (license license:expat)))) + +(define-public sbcl-async-process + (package + (inherit libasyncprocess) + (name "sbcl-async-process") + (build-system asdf-build-system/sbcl) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-paths + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "src/async-process.lisp" + (("libasyncprocess\\.so") + (search-input-file inputs + "/lib/async-process/libasyncprocess.so")))))))) + (inputs + (modify-inputs (package-inputs libasyncprocess) + (prepend libasyncprocess sbcl-cffi))) + (home-page "https://github.com/lem-project/async-process") + (synopsis "Asynchronous process execution for Common Lisp") + (description "This library provides an asynchronous process +execution mechanism for Common Lisp."))) + +(define-public cl-async-process + (sbcl-package->cl-source-package sbcl-async-process)) + +(define-public ecl-async-process + (sbcl-package->ecl-package sbcl-async-process)) + (define-public sbcl-cl-autowrap (let ((revision "2") (commit "a5d71ebd7c21b87f449db1e16ab815750d7c0ea4")) |