Skip to content

Commit 56667bb

Browse files
authored
put back DelimitedFiles as a non-sysimage "stdlib" (#48671)
1 parent 6523b0c commit 56667bb

File tree

7 files changed

+14
-1
lines changed

7 files changed

+14
-1
lines changed

contrib/cache_stdlibs.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ stdlibs = [
1414
:Zlib_jll,
1515
:dSFMT_jll,
1616
:libLLVM_jll,
17+
:DelimitedFiles,
1718

1819
# 2-depth packages
1920
:LibSSH2_jll,
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ee5afca99801e37fd3a42a9455ae986b
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2adec92de521df1668eb13f2903ffdb01efd6afa5f04ce6fbd1737caa4948f7b629cdda7f75a895853a0cd49dccf8b388860d5c19c29e4d4aad6c7f8fa6b7209

stdlib/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/srccache
2+
/DelimitedFiles-*
3+
/DelimitedFiles
24
/Pkg-*
35
/Pkg
46
/Statistics-*

stdlib/DelimitedFiles.version

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
DELIMITEDFILES_BRANCH = main
2+
DELIMITEDFILES_SHA1 = db79c842f95f55b1f8d8037c0d3363ab21cd3b90
3+
DELIMITEDFILES_GIT_URL := https://github.com/JuliaData/DelimitedFiles.jl.git
4+
DELIMITEDFILES_TAR_URL = https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/$1

stdlib/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ STDLIBS = Artifacts Base64 CRC32c Dates Distributed FileWatching \
4646
SharedArrays Sockets Test TOML Unicode UUIDs \
4747
$(JLL_NAMES)
4848

49-
STDLIBS_EXT = Pkg Statistics LibCURL Downloads ArgTools Tar NetworkOptions SuiteSparse SparseArrays SHA
49+
STDLIBS_EXT = Pkg Statistics LibCURL DelimitedFiles Downloads ArgTools Tar NetworkOptions SuiteSparse SparseArrays SHA
5050

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

test/loading.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1152,3 +1152,7 @@ append!(Base.DEPOT_PATH, original_depot_path)
11521152
wait(t2)
11531153
wait(t1)
11541154
end
1155+
1156+
@testset "Upgradable stdlibs" begin
1157+
@test success(`$(Base.julia_cmd()) --startup-file=no -e 'using DelimitedFiles'`)
1158+
end

0 commit comments

Comments
 (0)