unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#58995] [PATCH] gnu: Add cl-numerical-utilities.
@ 2022-11-03 17:03 jgart via Guix-patches via
  2022-11-05 12:10 ` Guillaume Le Vaillant
  2022-11-05 15:06 ` [bug#58995] [PATCH v2] " jgart via Guix-patches via
  0 siblings, 2 replies; 4+ messages in thread
From: jgart via Guix-patches via @ 2022-11-03 17:03 UTC (permalink / raw)
  To: 58995; +Cc: jgart

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#58995] [PATCH] gnu: Add cl-numerical-utilities.
  2022-11-03 17:03 [bug#58995] [PATCH] gnu: Add cl-numerical-utilities jgart via Guix-patches via
@ 2022-11-05 12:10 ` Guillaume Le Vaillant
  2022-11-05 15:06 ` [bug#58995] [PATCH v2] " jgart via Guix-patches via
  1 sibling, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2022-11-05 12:10 UTC (permalink / raw)
  To: jgart; +Cc: 58995

[-- Attachment #1: Type: text/plain, Size: 543 bytes --]

jgart via Guix-patches via <guix-patches@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?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#58995] [PATCH v2] gnu: Add cl-numerical-utilities.
  2022-11-03 17:03 [bug#58995] [PATCH] gnu: Add cl-numerical-utilities jgart via Guix-patches via
  2022-11-05 12:10 ` Guillaume Le Vaillant
@ 2022-11-05 15:06 ` jgart via Guix-patches via
  2022-11-06  9:39   ` bug#58995: " Guillaume Le Vaillant
  1 sibling, 1 reply; 4+ messages in thread
From: jgart via Guix-patches via @ 2022-11-05 15:06 UTC (permalink / raw)
  To: 58995; +Cc: Guillaume Le Vaillant, jgart

* 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





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#58995: [PATCH v2] gnu: Add cl-numerical-utilities.
  2022-11-05 15:06 ` [bug#58995] [PATCH v2] " jgart via Guix-patches via
@ 2022-11-06  9:39   ` Guillaume Le Vaillant
  0 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2022-11-06  9:39 UTC (permalink / raw)
  To: jgart; +Cc: 58995-done

[-- Attachment #1: Type: text/plain, Size: 66 bytes --]

Patch pushed as f1b0b2344c4c6465cd6033128366e86fa16e5f23.
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-06  9:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-03 17:03 [bug#58995] [PATCH] gnu: Add cl-numerical-utilities jgart via Guix-patches via
2022-11-05 12:10 ` Guillaume Le Vaillant
2022-11-05 15:06 ` [bug#58995] [PATCH v2] " jgart via Guix-patches via
2022-11-06  9:39   ` bug#58995: " 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).