Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5312ce3

Browse files
committedJan 27, 2022
[Prefix] Handle package input on all dependencies
1 parent 48d2dbc commit 5312ce3

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
 

‎src/Prefix.jl

+1
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,7 @@ function setup_dependencies(prefix::Prefix,
550550
return p
551551
end
552552
dependencies = filter_redundant_version.(dependencies)
553+
Pkg.API.handle_package_input!.(dependencies)
553554
dependencies_names = getname.(dependencies)
554555

555556
# Get julia version specificity, if it exists, from the `Platform` object

‎test/dependencies.jl

+29
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,35 @@ end
134134
@test readdir(joinpath(destdir(dir, platform), "logs")) == []
135135
end
136136

137+
# Make sure we can use `get_addable_spec` to install weird packages like
138+
# `LibOSXUnwind_jll` v0.0.6+1, see https://github.com/JuliaLang/Pkg.jl/issues/2942
139+
with_temp_project() do dir
140+
prefix = Prefix(dir)
141+
spec = get_addable_spec("LibOSXUnwind_jll", v"0.0.6+1")
142+
dependencies = [BuildDependency(spec)]
143+
platform = Platform("x86_64", "macos"; julia_version="1.6.0")
144+
pkg_dir = Pkg.Operations.find_installed(spec.name, spec.uuid, spec.tree_hash)
145+
# Delete the directory where the package would be installed, to make sure it is
146+
# actually installed. Note: a cleaner way to do this would be to use a fresh
147+
# depot, but it'd add lots of complexity and this package isn't needed by any
148+
# sane project.
149+
rm(pkg_dir; recursive=true, force=true)
150+
# This is broken in v1.7, see https://github.com/JuliaLang/Pkg.jl/issues/2942
151+
@test setup_dependencies(prefix, getpkg.(dependencies), platform) isa Vector{String} broken=VERSION<v"1.8.0-DEV"
152+
@test all(in(readdir(joinpath(destdir(dir, platform), "lib"))), ("libosxunwind.a", "libosxunwind.dylib")) broken=VERSION<v"1.8.0-DEV"
153+
# Make sure the right directory is installed.
154+
@test isdir(pkg_dir) broken=VERSION<v"1.8.0-DEV"
155+
end
156+
157+
# Make sure we can install `libjulia_jll` for julia v1.6.0
158+
with_temp_project() do dir
159+
prefix = Prefix(dir)
160+
dependencies = [BuildDependency("libjulia_jll")]
161+
platform = Platform("x86_64", "macos"; julia_version="1.6.0")
162+
# This is broken in v1.7, see https://github.com/JuliaLang/Pkg.jl/issues/2942
163+
@test setup_dependencies(prefix, getpkg.(dependencies), platform) isa Vector{String} broken=VERSION<v"1.8.0-DEV"
164+
end
165+
137166
# Setup a dependency of a JLL package which is also a standard library
138167
with_temp_project() do dir
139168
prefix = Prefix(dir)

0 commit comments

Comments
 (0)
Please sign in to comment.