unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 75015@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Efraim Flashner <efraim@flashner.co.il>,
	Simon Tournier <zimon.toutoune@gmail.com>
Subject: [bug#75015] [PATCH 03/38] gnu: Add julia-precompiletools.
Date: Sat, 21 Dec 2024 20:22:23 +0000	[thread overview]
Message-ID: <680887b99e74c6c17cc53379e9030cf42d560887.1734811274.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1734811274.git.sharlatanus@gmail.com>

* 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





  parent reply	other threads:[~2024-12-21 20:25 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-21 20:20 [bug#75015] [PATCH 00/38] Astro update 2024/12 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 01/38] gnu: julia-preferences: Update to 1.4.3 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 02/38] gnu: julia-dataapi: Update to 1.16.0 Sharlatan Hellseher
2024-12-21 20:22 ` Sharlatan Hellseher [this message]
2024-12-21 20:22 ` [bug#75015] [PATCH 04/38] gnu: Add julia-interfaces Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 05/38] gnu: Add julia-extents Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 06/38] gnu: Add julia-commonsolve Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 07/38] gnu: Add julia-compositionsbase Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 08/38] gnu: Add julia-staticnumbers Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 09/38] gnu: Add julia-performancetesttools Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 10/38] gnu: calceph: Update to 4.0.3 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 11/38] gnu: healpix: Update to 3.8.3 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 12/38] gnu: indi-2.0: Update to 2.1.1 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 13/38] gnu: splash: Update to 3.11.1 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 14/38] gnu: wcslib: Update to 8.4 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 15/38] gnu: python-astropy: Update to 6.1.7 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 16/38] gnu: python-asdf-standard: Adjust native inputs Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 17/38] gnu: python-asdf: Update to 4.0.0 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 18/38] gnu: python-bayesicfitting: Update to 3.2.3 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 19/38] gnu: python-ci-watson: Update to 0.8.0 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 20/38] gnu: python-cmyt: Update to 2.0.1 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 21/38] gnu: python-crds: Update to 12.0.8 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 22/38] gnu: python-extinction: Update to 0.4.7 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 23/38] gnu: python-gwcs: Update to 0.22.1 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 24/38] gnu: python-halotools: Update to 0.9.2 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 25/38] gnu: python-healpy: Update to 1.18.0 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 26/38] gnu: python-pysiaf: Update to 0.24.1 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 27/38] gnu: python-spisea: Update to 2.1.13 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 28/38] gnu: python-sunpy: Update to 6.0.4 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 29/38] gnu: webbpsf-data: Update to 1.5.0 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 30/38] gnu: python-webbpsf: " Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 31/38] gnu: python-stsci-stimage: Adjust inputs Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 32/38] gnu: Add python-asdf-3 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 33/38] gnu: python-rad: Adjust input Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 34/38] gnu: python-roman-datamodels: " Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 35/38] gnu: python-specutils: Fix build Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 36/38] gnu: python-stdatamodels: Update to 2.2.0 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 37/38] gnu: python-stpipe: Update to 0.8.0 Sharlatan Hellseher
2024-12-21 20:22 ` [bug#75015] [PATCH 38/38] gnu: Add python-pysat Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=680887b99e74c6c17cc53379e9030cf42d560887.1734811274.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=75015@debbugs.gnu.org \
    --cc=efraim@flashner.co.il \
    --cc=zimon.toutoune@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).