all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#68137] [PATCH 0/3] gnu: Add cl-3d-spaces.
@ 2023-12-30  6:23 Paul A. Patience
  2023-12-30  6:28 ` [bug#68137] [PATCH 1/3] gnu: Add cl-type-templates Paul A. Patience
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-12-30  6:23 UTC (permalink / raw)
  To: 68137; +Cc: Paul A. Patience

Paul A. Patience (3):
  gnu: Add cl-type-templates.
  gnu: Add cl-3d-math.
  gnu: Add cl-3d-spaces.

 gnu/packages/lisp-xyz.scm | 112 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 112 insertions(+)


base-commit: d4cef7edffe0283949fc0f06d7796cea3543b92f
-- 
2.41.0






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

* [bug#68137] [PATCH 1/3] gnu: Add cl-type-templates.
  2023-12-30  6:23 [bug#68137] [PATCH 0/3] gnu: Add cl-3d-spaces Paul A. Patience
@ 2023-12-30  6:28 ` Paul A. Patience
  2023-12-30  6:28 ` [bug#68137] [PATCH 2/3] gnu: Add cl-3d-math Paul A. Patience
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-12-30  6:28 UTC (permalink / raw)
  To: 68137; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-type-templates):
  (cl-type-templates, ecl-type-templates): New variables.

Change-Id: I001451f5cdc3a5a65941982f11d756ecd7a1678a
---
 gnu/packages/lisp-xyz.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 1625197550..51bdc08b60 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -20561,6 +20561,44 @@ (define-public sbcl-3d-transforms
 (define-public cl-3d-transforms
   (sbcl-package->cl-source-package sbcl-3d-transforms))
 
+(define-public sbcl-type-templates
+  (let ((commit "5b389ebcff61b81585a64d0b899b69fa12aa5f96")
+        (revision "0"))
+    (package
+      (name "sbcl-type-templates")
+      (version (git-version "4.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Shinmera/type-templates")
+               (commit commit)))
+         (file-name (git-file-name "cl-type-templates" version))
+         (sha256
+          (base32 "1zmz3bmwg8ncqbnjwimn8n7q9ik9arnhd5ijd22ap1nwhbnmk1rj"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       ;; No tests
+       (list #:tests? #f))
+      (inputs
+       (list sbcl-alexandria
+             sbcl-documentation-utils
+             sbcl-form-fiddle))
+      (home-page "https://shinmera.github.io/type-templates/")
+      (synopsis "Library for defining and expanding templated functions")
+      (description
+       "The Type-Templates library allows you to define types and “template
+functions” that can be expanded into various type-specialized versions to
+eliminate runtime dispatch overhead.  It was specifically designed to
+implement low-level numerical data types and functionality.")
+      (license license:zlib))))
+
+(define-public cl-type-templates
+  (sbcl-package->cl-source-package sbcl-type-templates))
+
+(define-public ecl-type-templates
+  (sbcl-package->ecl-package sbcl-type-templates))
+
 (define-public sbcl-glsl-toolkit
   (let ((commit "4c4889e75c635772c4df70b11d6f14e7a596da43")
         (revision "2"))
-- 
2.41.0






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

* [bug#68137] [PATCH 2/3] gnu: Add cl-3d-math.
  2023-12-30  6:23 [bug#68137] [PATCH 0/3] gnu: Add cl-3d-spaces Paul A. Patience
  2023-12-30  6:28 ` [bug#68137] [PATCH 1/3] gnu: Add cl-type-templates Paul A. Patience
@ 2023-12-30  6:28 ` Paul A. Patience
  2023-12-30  6:28 ` [bug#68137] [PATCH 3/3] gnu: Add cl-3d-spaces Paul A. Patience
  2024-01-04 14:19 ` bug#68137: [PATCH 0/3] " Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-12-30  6:28 UTC (permalink / raw)
  To: 68137; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-3d-math, cl-3d-math):
  (ecl-3d-math): New variables.

Change-Id: Iaa5c63d7fb535b37c11528f5d7802ea62ebd0894
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 51bdc08b60..7442e7e908 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -20599,6 +20599,43 @@ (define-public cl-type-templates
 (define-public ecl-type-templates
   (sbcl-package->ecl-package sbcl-type-templates))
 
+(define-public sbcl-3d-math
+  (let ((commit "3831b1706d225def95a7301ef48b393b563f0114")
+        (revision "0"))
+    (package
+      (name "sbcl-3d-math")
+      (version (git-version "1.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Shinmera/3d-math")
+               (commit commit)))
+         (file-name (git-file-name "cl-3d-math" version))
+         (sha256
+          (base32 "052vzx5j7bag9dxvl0j0wrm244js1djldyn31rwxgkq7965rmi5r"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs
+       (list sbcl-parachute))
+      (inputs
+       (list sbcl-documentation-utils
+             sbcl-type-templates))
+      (home-page "https://shinmera.github.io/3d-math/")
+      (synopsis "Linear algebra for 2D and 3D computations")
+      (description
+       "The @code{3d-math} library implements types, operators, and algorithms
+commonly used in math for 2D and 3D graphics.  It supersedes and combines the
+prior libraries @code{3d-vectors}, @code{3d-matrices}, @code{3d-quaternions},
+and @code{3d-transforms}.  The new API is largely but not entirely backwards
+compatible, and adds new functionality.")
+      (license license:zlib))))
+
+(define-public cl-3d-math
+  (sbcl-package->cl-source-package sbcl-3d-math))
+
+(define-public ecl-3d-math
+  (sbcl-package->ecl-package sbcl-3d-math))
+
 (define-public sbcl-glsl-toolkit
   (let ((commit "4c4889e75c635772c4df70b11d6f14e7a596da43")
         (revision "2"))
-- 
2.41.0






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

* [bug#68137] [PATCH 3/3] gnu: Add cl-3d-spaces.
  2023-12-30  6:23 [bug#68137] [PATCH 0/3] gnu: Add cl-3d-spaces Paul A. Patience
  2023-12-30  6:28 ` [bug#68137] [PATCH 1/3] gnu: Add cl-type-templates Paul A. Patience
  2023-12-30  6:28 ` [bug#68137] [PATCH 2/3] gnu: Add cl-3d-math Paul A. Patience
@ 2023-12-30  6:28 ` Paul A. Patience
  2024-01-04 14:19 ` bug#68137: [PATCH 0/3] " Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Paul A. Patience @ 2023-12-30  6:28 UTC (permalink / raw)
  To: 68137; +Cc: Paul A. Patience

* gnu/packages/lisp-xyz.scm (sbcl-3d-spaces, cl-3d-spaces):
  (ecl-3d-spaces): New variables.

Change-Id: Ib15c90168f36c10697d67f69457de9c4b7d28666
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 7442e7e908..aa89c4e747 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -20636,6 +20636,43 @@ (define-public cl-3d-math
 (define-public ecl-3d-math
   (sbcl-package->ecl-package sbcl-3d-math))
 
+(define-public sbcl-3d-spaces
+  (let ((commit "a93f4915affcf65617366297ad8bd2ec77bae702")
+        (revision "0"))
+    (package
+      (name "sbcl-3d-spaces")
+      (version (git-version "1.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Shirakumo/3d-spaces")
+               (commit commit)))
+         (file-name (git-file-name "cl-3d-spaces" version))
+         (sha256
+          (base32 "1m5cg5zy1731dcgkm1p4m53z1zsp387xligxh32pdrnrhc2lzhmf"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs
+       (list sbcl-parachute))
+      (inputs
+       (list sbcl-3d-math
+             sbcl-documentation-utils
+             sbcl-for
+             sbcl-trivial-extensible-sequences))
+      (home-page "https://shirakumo.github.io/3d-spaces/")
+      (synopsis "Implementations of various spatial query structures")
+      (description
+       "The 3D-Spaces library implements a number of spatial query data
+structures; structures that can answer spatial range queries for optimized
+lookup, particularly suited for games.")
+      (license license:zlib))))
+
+(define-public cl-3d-spaces
+  (sbcl-package->cl-source-package sbcl-3d-spaces))
+
+(define-public ecl-3d-spaces
+  (sbcl-package->ecl-package sbcl-3d-spaces))
+
 (define-public sbcl-glsl-toolkit
   (let ((commit "4c4889e75c635772c4df70b11d6f14e7a596da43")
         (revision "2"))
-- 
2.41.0






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

* bug#68137: [PATCH 0/3] gnu: Add cl-3d-spaces.
  2023-12-30  6:23 [bug#68137] [PATCH 0/3] gnu: Add cl-3d-spaces Paul A. Patience
                   ` (2 preceding siblings ...)
  2023-12-30  6:28 ` [bug#68137] [PATCH 3/3] gnu: Add cl-3d-spaces Paul A. Patience
@ 2024-01-04 14:19 ` Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Guillaume Le Vaillant @ 2024-01-04 14:19 UTC (permalink / raw)
  To: Paul A. Patience; +Cc: 68137-done

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

Patches applied as 6b8009510691b901ea292a89512c9f950f1509bd and
following.
Thanks.

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

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

end of thread, other threads:[~2024-01-04 14:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-30  6:23 [bug#68137] [PATCH 0/3] gnu: Add cl-3d-spaces Paul A. Patience
2023-12-30  6:28 ` [bug#68137] [PATCH 1/3] gnu: Add cl-type-templates Paul A. Patience
2023-12-30  6:28 ` [bug#68137] [PATCH 2/3] gnu: Add cl-3d-math Paul A. Patience
2023-12-30  6:28 ` [bug#68137] [PATCH 3/3] gnu: Add cl-3d-spaces Paul A. Patience
2024-01-04 14:19 ` bug#68137: [PATCH 0/3] " Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.