GNU bug report logs -
#58995
[PATCH] gnu: Add cl-numerical-utilities.
Previous Next
Reported by: jgart <jgart <at> dismail.de>
Date: Thu, 3 Nov 2022 17:04:01 UTC
Severity: normal
Tags: patch
Done: Guillaume Le Vaillant <glv <at> posteo.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 58995 in the body.
You can then email your comments to 58995 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#58995
; Package
guix-patches
.
(Thu, 03 Nov 2022 17:04:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
jgart <jgart <at> dismail.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 03 Nov 2022 17:04:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/lisp-xyz.scm (cl-numerical-utilities,
ecl-numerical-utilities, sbcl-numerical-utilities): New variables.
---
gnu/packages/lisp-xyz.scm | 40 +++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e3118710a8..1880e3ef30 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24337,6 +24337,46 @@ (define-public cl-definitions-systems
(define-public ecl-definitions-systems
(sbcl-package->ecl-package sbcl-definitions-systems))
+(define-public sbcl-numerical-utilities
+ (let ((commit "e50b2f1b0b7fc0620a6157e2aae2626f07270fbb")
+ (revision "0"))
+ (package
+ (name "sbcl-numerical-utilities")
+ (version (git-version "0.3.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Lisp-Stat/numerical-utilities")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0csm9z6gady6810aw0mmifj6y3zkyi0khsd0hdmk66qdgdm4rb37"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-systems '("num-utils" "num-utils/tests")))
+ (inputs
+ (list sbcl-alexandria
+ sbcl-anaphora
+ sbcl-let-plus
+ sbcl-array-operations))
+ (native-inputs
+ (list sbcl-fiveam
+ sbcl-select))
+ (home-page "https://lisp-stat.github.io/numerical-utilities")
+ (synopsis "Utilities for numerical programming")
+ (description
+"@code{cl-numerical-utilities} is a collection of packages useful in numerical
+applications, each big enough to be its own package, but too small to
+split out into a separate ASDF system.")
+ (license license:ms-pl))))
+
+(define-public cl-numerical-utilities
+ (sbcl-package->cl-source-package sbcl-numerical-utilities))
+
+(define-public ecl-numerical-utilities
+ (sbcl-package->ecl-package sbcl-numerical-utilities))
+
(define-public sbcl-zr-utils
(let ((commit "e7eaffcb71811f6e1ab85fb15a079bcac4038eeb")
(revision "0"))
--
2.38.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58995
; Package
guix-patches
.
(Sat, 05 Nov 2022 12:15:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 58995 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
jgart via Guix-patches via <guix-patches <at> gnu.org> skribis:
> [...]
> +(define-public sbcl-numerical-utilities
> + (let ((commit "e50b2f1b0b7fc0620a6157e2aae2626f07270fbb")
> + (revision "0"))
> + (package
> + (name "sbcl-numerical-utilities")
> + (version (git-version "0.3.0" revision commit))
> [...]
It looks like the current upstream version is 1.2.0 (at commit
44f45ba952b35675640630e40cf90df6f8279746).
Is there a reason to package an older version? If not, could you send an
updated patch for the latest version?
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#58995
; Package
guix-patches
.
(Sat, 05 Nov 2022 15:09:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 58995 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/lisp-xyz.scm (cl-numerical-utilities,
ecl-numerical-utilities, sbcl-numerical-utilities): New variables.
Hi Guillaume,
Here is the updated patch to version 2 with your suggestions.
thanks,
jgart
---
gnu/packages/lisp-xyz.scm | 41 +++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 34ad0af1fb..01dcf4f46d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24435,6 +24435,47 @@ (define-public cl-definitions-systems
(define-public ecl-definitions-systems
(sbcl-package->ecl-package sbcl-definitions-systems))
+(define-public sbcl-numerical-utilities
+ (let ((commit "44f45ba952b35675640630e40cf90df6f8279746")
+ (revision "0"))
+ (package
+ (name "sbcl-numerical-utilities")
+ (version (git-version "1.2.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Lisp-Stat/numerical-utilities")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dwz8zxhqzi31qp863zj1cn1lgljny14snycb9nk871qs121kmsd"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-systems '("num-utils" "num-utils/tests")))
+ (inputs
+ (list sbcl-alexandria
+ sbcl-alexandria-plus
+ sbcl-anaphora
+ sbcl-let-plus
+ sbcl-array-operations))
+ (native-inputs
+ (list sbcl-fiveam
+ sbcl-select))
+ (home-page "https://lisp-stat.github.io/numerical-utilities")
+ (synopsis "Utilities for numerical programming")
+ (description
+"@code{cl-numerical-utilities} is a collection of packages useful in numerical
+applications, each big enough to be its own package, but too small to
+split out into a separate ASDF system.")
+ (license license:ms-pl))))
+
+(define-public cl-numerical-utilities
+ (sbcl-package->cl-source-package sbcl-numerical-utilities))
+
+(define-public ecl-numerical-utilities
+ (sbcl-package->ecl-package sbcl-numerical-utilities))
+
(define-public sbcl-zr-utils
(let ((commit "e7eaffcb71811f6e1ab85fb15a079bcac4038eeb")
(revision "0"))
--
2.38.1
Reply sent
to
Guillaume Le Vaillant <glv <at> posteo.net>
:
You have taken responsibility.
(Sun, 06 Nov 2022 09:40:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
jgart <jgart <at> dismail.de>
:
bug acknowledged by developer.
(Sun, 06 Nov 2022 09:40:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 58995-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Patch pushed as f1b0b2344c4c6465cd6033128366e86fa16e5f23.
Thanks.
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 04 Dec 2022 12:24:10 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 200 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.