-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UndefVarError: RegistrySpec not defined
when trying to run_wizard
#170
Comments
I see this also. Partial RCA: JuliaLang/Pkg.jl#2183 Since this reaches into the internal API, these calls may need to be cased and aliased by Julia version number. |
what do you mean BB will never work on 1.7? |
I mean what I said 🙂 The main issue being that Julia v1.7 is not able to install specific versions of JLL packages which are also standard libraries, which is very important for us (unless this had been fixed in Pkg, I don't really follow it) |
Trying to wrap my head around this issue. Does this mean currently any package that depend on BinaryBuilder will not work in Julia 1.7? Is there any way to manually do what BinaryBuilder does to create new binaries for additional platforms? |
Yes, but I'm not sure that's a problem in practice since there are exactly 0 packages depending on BinaryBuilder.
What do you mean exactly? I have a copy of Julia v1.6 (and 1.5, and 1.4, and 1.3, and so on) around to keep using BinaryBuilder |
@giordano to be clear, are you saying that for Julia 1.7 and beyond, the installation and use of BinaryBuilder will be unsupported? Is this due to a design change with Julia or a bug in Pkg? |
It's surprising because Julialang themselves had a blog posting just two years ago about how Pkg + BinaryBuilder are going to work so well together: https://julialang.org/blog/2019/11/artifacts/ |
I'm moderately sure we won't be able to make BinaryBuilder fully work with v1.7. Hopefully v1.8
Not really a bug anywhere, but BinaryBuilder needs to hook into some Pkg internal functions which aren't part of the API, and which got changed between v1.6 and v1.7. I've been trying since March to fix the issues, but lately I've faced even more errors. Unfortunately I'm not very familiar with Pkg internals and without anyone else helping me out, during my spare time I can't do much. For this reason the registry now simply reflects the fact that BinaryBuilder doesn't work in v1.7 and can't be installed there.
It works well with Julia v1.6! And in Yggdrasil we still use Julia v1.6.0, so that will still work. Besides, what should work well are the packages generated by BinaryBuilder, and they also still work. I'm just a bit surprised why there is so much interest in being able to install |
@giordano my main motivation is to get some of the packages that are not currently compatible with Apple M1 macs working and I'm digging deeper into the Julia Pkg system than I have before. Not ready to submit a PR to Yggdrasil yet but close. Thank you for explaining all this and I appreciate your work to maintain it which enables developers to build great packages! |
To build packages for the aarch64-apple-darwin architectures there is this issue which explains what has to be done: JuliaPackaging/Yggdrasil#2763. Also, note that in principle you can just submit a PR without building anything locally (even though that would be extremely useful for local debugging in case something doesn't work) |
BinaryBuilderBase.jl/src/Dependencies.jl
Line 164 in 0820b59
It looks like
Pkg.Types.RegistrySpec
is actuallyPkg.RegistrySpec
for me.I've tried this on the following:
and did not hit the issue, because it looks like
Pkg.Types
exportsRegistrySpec
in 1.6.1The text was updated successfully, but these errors were encountered: