all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#75411] [PATCH] gnu: Add julia-manualmemory.
@ 2025-01-06 21:36 King, Spencer via Guix-patches via
  2025-01-12 18:00 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: King, Spencer via Guix-patches via @ 2025-01-06 21:36 UTC (permalink / raw)
  To: 75411

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



[-- Attachment #2: 0001-gnu-Add-julia-manualmemory.patch --]
[-- Type: application/octet-stream, Size: 1920 bytes --]

From 86e62dc5d05ac7780a81d6e90daf268d9af03fca Mon Sep 17 00:00:00 2001
Message-Id: <86e62dc5d05ac7780a81d6e90daf268d9af03fca.1736199277.git.spencer.king@geneoscopy.com>
From: Spencer King <spencer.king@geneoscopy.com>
Date: Mon, 6 Jan 2025 20:50:12 +0000
Subject: [PATCH] gnu: Add julia-manualmemory.

* gnu/packages/julia-xyz.scm (julia-manualmemory): New variable.

Change-Id: I8a5b2c1fb9dfa0b83864023ba71a2cb74fee1d8f
---
 gnu/packages/julia-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 6cae46dc2b..18c6f9a104 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -4266,6 +4266,31 @@ (define-public julia-macrotools
 that let you do deep transformations of code.")
     (license license:expat)))
 
+(define-public julia-manualmemory
+  (package
+    (name "julia-manualmemory")
+    (version "0.1.8")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/JuliaSIMD/ManualMemory.jl")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0ajd92q65cffyb9x6mb1x1aprr2afn8p52bfkbmf303dy5ac63lj"))))
+    (build-system julia-build-system)
+    ;; Tests have a dependency cycle with VectorizationBase
+    ;; VectorizationBase -> LayoutPointers -> ManualMemory -> VectorizationBase
+    (arguments
+     (list
+      #:tests? #f))
+    (home-page "https://github.com/JuliaSIMD/ManualMemory.jl")
+    (synopsis "Manual memory management utilities in Julia")
+    (description "This package provides manually managed memory buffers backed
+by @code{NTuples} in Julia.")
+    (license license:expat)))
+
 (define-public julia-mappedarrays
   (package
     (name "julia-mappedarrays")

base-commit: ee3673217b82d50e97434ae85145b8d68f077446
-- 
2.34.1


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

* [bug#75411] [PATCH] gnu: Add julia-manualmemory.
  2025-01-06 21:36 [bug#75411] [PATCH] gnu: Add julia-manualmemory King, Spencer via Guix-patches via
@ 2025-01-12 18:00 ` Ludovic Courtès
  2025-01-13 23:27   ` King, Spencer via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2025-01-12 18:00 UTC (permalink / raw)
  To: King, Spencer; +Cc: 75411, efraim, zimon.toutoune

Hi Spencer,

"King, Spencer" <spencer.king@wustl.edu> skribis:

> From 86e62dc5d05ac7780a81d6e90daf268d9af03fca Mon Sep 17 00:00:00 2001
> Message-Id: <86e62dc5d05ac7780a81d6e90daf268d9af03fca.1736199277.git.spencer.king@geneoscopy.com>
> From: Spencer King <spencer.king@geneoscopy.com>
> Date: Mon, 6 Jan 2025 20:50:12 +0000
> Subject: [PATCH] gnu: Add julia-manualmemory.
>
> * gnu/packages/julia-xyz.scm (julia-manualmemory): New variable.
>
> Change-Id: I8a5b2c1fb9dfa0b83864023ba71a2cb74fee1d8f

Applied as well.

BTW, it just occurred to me that the Julia team (currently consisting of
Simon and Efraim, Cc’d) isn’t Cc’d on your messages, and thus never
applies your patches.

Cc’ing the team happens automatically when using ‘git send-email’ but I
see you’re not using it.  Could you switch to ‘git send-email’ or follow
the guidelines at the bottom of
<https://guix.gnu.org/manual/devel/en/html_node/Teams.html> to Cc the
Julia team (or any other relevant team) for your patches?

I would also invite you to consider joining the Julia team!

Thanks,
Ludo’.






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

* [bug#75411] [PATCH] gnu: Add julia-manualmemory.
  2025-01-12 18:00 ` Ludovic Courtès
@ 2025-01-13 23:27   ` King, Spencer via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: King, Spencer via Guix-patches via @ 2025-01-13 23:27 UTC (permalink / raw)
  To: Ludovic Courtès
  Cc: 75411@debbugs.gnu.org, efraim@flashner.co.il,
	zimon.toutoune@gmail.com

Hi Ludo,

I'd be happy to join the Julia team if you and the rest of the team are open to it. For future patches I will ensure the rest of the team is CC'd. The reason I have not used git send-email for most of my patches is that some of them are developed on behalf of my employer and their email security settings make it impractical. I've used git format-patch and a personal email address to send those since I'd prefer not to have tokens or credentials for a personal account on someone else's hardware. 

Best, 
Spencer



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

end of thread, other threads:[~2025-01-13 23:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-06 21:36 [bug#75411] [PATCH] gnu: Add julia-manualmemory King, Spencer via Guix-patches via
2025-01-12 18:00 ` Ludovic Courtès
2025-01-13 23:27   ` King, Spencer via Guix-patches via

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.