Skip to content
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

put back DelimitedFiles as a non-sysimage "stdlib" #48671

Merged
merged 2 commits into from
Feb 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions contrib/cache_stdlibs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ stdlibs = [
:Zlib_jll,
:dSFMT_jll,
:libLLVM_jll,
:DelimitedFiles,

# 2-depth packages
:LibSSH2_jll,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ee5afca99801e37fd3a42a9455ae986b
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2adec92de521df1668eb13f2903ffdb01efd6afa5f04ce6fbd1737caa4948f7b629cdda7f75a895853a0cd49dccf8b388860d5c19c29e4d4aad6c7f8fa6b7209
4 changes: 4 additions & 0 deletions stdlib/DelimitedFiles.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
DELIMITEDFILES_BRANCH = main
DELIMITEDFILES_SHA1 = db79c842f95f55b1f8d8037c0d3363ab21cd3b90
DELIMITEDFILES_GIT_URL := https://github.com/JuliaData/DelimitedFiles.jl.git
DELIMITEDFILES_TAR_URL = https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/$1
2 changes: 1 addition & 1 deletion stdlib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ STDLIBS = Artifacts Base64 CRC32c Dates Distributed FileWatching \
SharedArrays Sockets Test TOML Unicode UUIDs \
$(JLL_NAMES)

STDLIBS_EXT = Pkg Statistics LibCURL Downloads ArgTools Tar NetworkOptions SuiteSparse SparseArrays SHA
STDLIBS_EXT = Pkg Statistics LibCURL DelimitedFiles Downloads ArgTools Tar NetworkOptions SuiteSparse SparseArrays SHA

$(foreach module, $(STDLIBS_EXT), $(eval $(call stdlib-external,$(module),$(shell echo $(module) | tr a-z A-Z))))

Expand Down
4 changes: 4 additions & 0 deletions test/loading.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1135,3 +1135,7 @@ append!(Base.DEPOT_PATH, original_depot_path)
wait(t2)
wait(t1)
end

@testset "Upgradable stdlibs" begin
@test success(`$(Base.julia_cmd()) --startup-file=no -e 'using DelimitedFiles'`)
end