GNU bug report logs - #75015
[PATCH 00/38] Astro update 2024/12

Previous Next

Package: guix-patches;

Reported by: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Date: Sat, 21 Dec 2024 20:21:02 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 75015 <at> debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>, Efraim Flashner <efraim <at> flashner.co.il>, Simon Tournier <zimon.toutoune <at> gmail.com>
Subject: [bug#75015] [PATCH 03/38] gnu: Add julia-precompiletools.
Date: Sat, 21 Dec 2024 20:22:23 +0000
* gnu/packages/julia-xyz.scm (julia-precompiletools): New variable.

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

diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index c66fa2bc92..35bb76411f 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -5004,6 +5004,38 @@ (define-public julia-positivefactorizations
 definite.")
     (license license:expat)))
 
+(define-public julia-precompiletools
+  (package
+    (name "julia-precompiletools")
+    (version "1.2.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/JuliaLang/PrecompileTools.jl")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "07b69gmgs3zxs86l9g9dymv3sfgncm8sl86sp0ck6xf5ly10phiy"))))
+    (build-system julia-build-system)
+    (arguments
+     (list
+      ;; Tets fail with error: caused by: GitError(Code:ERROR, Class:SSL,
+      ;; OpenSSL error: failed to load certificates: error:80000002:system
+      ;; library::No such file or directory).
+      #:tests? #f))
+    (propagated-inputs
+     (list julia-preferences))
+    (home-page "https://github.com/JuliaLang/PrecompileTools.jl")
+    (synopsis "Reduce time-to-first-execution of Julia code")
+    (description
+     "@code{PrecompileTools} is designed to help reduce delay on first usage
+of Julia code.  It can force precompilation of specific workloads;
+particularly with Julia 1.9 and higher, the precompiled code is automatically
+saved to disk, so that it doesn't need to be compiled freshly in each Julia
+session.")
+    (license license:expat)))
+
 (define-public julia-preferences
   (package
     (name "julia-preferences")
-- 
2.46.0





This bug report was last modified 141 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.