From: "Nicolò Balzarotti" <anothersms@gmail.com>
To: Jean-Baptiste Volatier <jbv@pm.me>
Cc: 48325@debbugs.gnu.org
Subject: [bug#48325] julia-1.6 guix
Date: Mon, 10 May 2021 09:07:58 +0200 [thread overview]
Message-ID: <87mtt3f4mp.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <87pmxzfth8.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me>
[-- Attachment #1: Type: text/plain, Size: 703 bytes --]
I'll forward here the review I sent you privately.
I want to add that it built ok. I tried building but
julia-benchmarktools and julia-staticarrays are failing.
Version 0.7.0 works fine and should work both on 1.6 (tested) and 1.5
(untested) [fn:1] so we should apply it before the julia update.
I tried updating StaticArrays, but the build still fails. I opened a
bug report here [fn:2].
I attached here the patch, if you can please apply it before yours, apply my
suggestions and send the updated patch
[fn:1] https://github.com/JuliaCI/BenchmarkTools.jl/blob/e058ff249215671c196f2c24a0a3f401de27b718/test/TrialsTests.jl#L217
[fn:2] https://github.com/JuliaArrays/StaticArrays.jl/issues/912
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-julia-benchmarktools-Update-to-0.7.0.patch --]
[-- Type: text/x-patch, Size: 1302 bytes --]
From 1376c9103b315492b123eeea1ffc93f81163a809 Mon Sep 17 00:00:00 2001
From: nixo <nicolo@nixo.xyz>
Date: Mon, 10 May 2021 08:55:16 +0200
Subject: [PATCH] gnu: julia-benchmarktools: Update to 0.7.0.
* gnu/packages/julia-xyz.scm (julia-benchmarktools): Update to 0.7.0.
---
gnu/packages/julia-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 9812162ce1..04eddbd8b2 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -76,7 +76,7 @@ be GPU compatible without throwing away the wrapper.")
(define-public julia-benchmarktools
(package
(name "julia-benchmarktools")
- (version "0.5.0")
+ (version "0.7.0")
(source
(origin
(method git-fetch)
@@ -85,7 +85,7 @@ be GPU compatible without throwing away the wrapper.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0nsx21m3i5h22lkgyrmfj6r085va6ag40khwssqs8y7l0wz98lvp"))))
+ (base32 "000izw9pj7cbh9r35nnwg2ijkb9dpfd5nkl2889b8b2dpsh4fi63"))))
(build-system julia-build-system)
(propagated-inputs `(("julia-json" ,julia-json)))
(home-page "https://github.com/JuliaCI/BenchmarkTools.jl")
--
2.31.1
[-- Attachment #3: Type: text/plain, Size: 4424 bytes --]
Nicolò Balzarotti <anothersms@gmail.com> writes:
> seems to be ok (applied fine). A few notes about the patch
>
> [...]
>> `(list ;; Taken from NixOS. Only way I could get libLLVM-6.0.so
>> - "-DCMAKE_BUILD_TYPE=Release"
>> + "-DCMAKE_BUILD_TYPE=Release"
>> +
>> + ;; Build a native compiler and the NVPTX backend (NVIDIA) since
>> + ;; Julia insists on it, nothing more. This reduces build times and
>> + ;; disk usage.
>> + ,(string-append "-DLLVM_TARGETS_TO_BUILD=" (system->llvm-target))
>> + "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=NVPTX"
>>
>> - ;; Build a native compiler and the NVPTX backend (NVIDIA) since
>> - ;; Julia insists on it, nothing more. This reduces build times and
>> - ;; disk usage.
>> - ,(string-append "-DLLVM_TARGETS_TO_BUILD=" (system->llvm-target))
>> - "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=NVPTX"
> Here it's difficult to see if there are changes, you should undo the
> indent edit. If indentation is wrong, it should be fixed in a separate commit.
>
>> + ;; "-DLLVM_HOST_TRIPLE=${stdenv.hostPlatform.config}"
>> + ;; "-DLLVM_DEFAULT_TARGET_TRIPLE=${stdenv.hostPlatform.config}"
>> + ;; "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly"
> Those seems to be taken from nixos, but is there a reason why are those
> commented?
>
>> + (invoke "patch" flag "-i" (string-append
>> "julia-src/deps/patches/" patchname ".patch")))))
> Line too long
>
>> + (mkdir-p "julia-src")
>> + (invoke "tar" "xf" (assoc-ref inputs "julia-source")
>> "-C" "julia-src" "--strip-components=1")
> DITTO
>
>> + (map (lambda (patchname)
>> + (patch patchname "-p1")) (list
>> "llvm-D27629-AArch64-large_model_6.0.1"
> Here we can slpit the line before (list
>
>>
>> - "-DLLVM_LINK_LLVM_DYLIB=ON"))))))
>> + #t)))))))
> Returning #t should not be needed anymore
>
>> + (inputs
>> + `(("julia-source" ,(package-source julia))
>> + ,@(package-inputs llvm-11)))))
>>
>> - "suitesparse"))
>> + "suitesparse" "libfortran"))
>> ":"))
>> #t))
> We can remove this #t now
>
>> + (string-append "stdlib/" pkgname "_jll/src/"
>> pkgname "_jll.jl")))
> Long line
>> + (lambda* (#:key inputs #:allow-other-keys)
>> + ;; some tests execute julia in an environment that needs
>> to propagate GUIX_LOCPATH
> Good catch, I was wondering which ENV variable was needed
>
>> + (substitute* "test/cmdlineargs.jl"
>> + (("\"HOME\"\\s=>\\shomedir\\(\\)") "\"HOME\" =>
>> homedir(), \"GUIX_LOCPATH\" => ENV[\"GUIX_LOCPATH\"]"))
>> #t))
> again, long line and #t
>> + (add-before 'install 'symlink-libraries ;; FIXME change
>> build to install
> What does this comment refer to?
>> (string-append "prefix=" (assoc-ref %outputs "out"))
>>
>> - ;; Passing the MARCH flag is necessary to build binary substitutes for
>> - ;; the supported architectures.
>> - ,(match (or (%current-target-system)
>> - (%current-system))
>> - ("x86_64-linux" "MARCH=x86-64")
>> - ("i686-linux" "MARCH=pentium4")
>> - ("aarch64-linux" "MARCH=armv8-a")
>> - ;; Prevent errors when querying this package on unsupported
>> - ;; platforms, e.g. when running "guix package --search="
>> - (_ "MARCH=UNSUPPORTED"))
>> + ;; Passing the MARCH flag is necessary to build binary substitutes for
>> + ;; the supported architectures.
>> + ,(match (or (%current-target-system)
>> + (%current-system))
>> + ("x86_64-linux" "MARCH=x86-64")
>> + ("i686-linux" "MARCH=pentium4")
>> + ("aarch64-linux" "MARCH=armv8-a")
>> + ;; Prevent errors when querying this package on unsupported
>> + ;; platforms, e.g. when running "guix package --search="
>> + (_ "MARCH=UNSUPPORTED"))
>>
> Again the indentation stuff
>
>
next parent reply other threads:[~2021-05-10 7:09 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <Vkhua8Jivnfp9XkjO-1XFnilmUhHzpbQgvDq90cIwAEuQrlJWk2z3RXMrvh8_6jf5qMeNKyKIizXjeoLZomFBg==@pm.me>
[not found] ` <87bl9xqx5c.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me>
[not found] ` <hk3Y4V9gjJY5o0stStMA9pP3H3OEcNP9-Sr1cAj6aEpTlsqK-wjNq6qIsu4939joF7uCxaTt_mp0ZZGATif8WQ==@pm.me>
[not found] ` <bHwSuC9WPaejmL-KWmk5RJk7IR9pQdqrFnvLkGE8ClBZF420yLdR0bymVXhAJHumFlBNcHmwn7AjjAofIbDh2A==@pm.me>
[not found] ` <FOr3K1_g6fyPlpTTzTRaYRLxXE6iqm-CsT0GqISHU5wmcXuj8wtB-md5hsLGGCgLUOPxLnjLmmkaYlk4BWGUGw==@pm.me>
[not found] ` <87pmxzfth8.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me>
2021-05-10 7:07 ` Nicolò Balzarotti [this message]
2021-05-10 11:29 ` [bug#48325] julia-1.6 guix Jean-Baptiste Volatier via Guix-patches via
2021-05-11 0:07 ` zimoun
2021-05-11 9:18 ` Nicolò Balzarotti
2021-05-11 9:53 ` Nicolò Balzarotti
2021-05-11 9:55 ` zimoun
2021-05-11 10:18 ` Nicolò Balzarotti
2021-05-11 11:38 ` Jean-Baptiste Volatier via Guix-patches via
2021-05-12 8:43 ` zimoun
2021-05-11 13:13 ` [bug#48325] update of julia to 1.6.1 zimoun
2021-05-11 13:46 ` Jean-Baptiste Volatier via Guix-patches via
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=87mtt3f4mp.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me \
--to=anothersms@gmail.com \
--cc=48325@debbugs.gnu.org \
--cc=jbv@pm.me \
/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).