Skip to content

Commit b5a53c2

Browse files
add LibCURL stdlib
1 parent 745f287 commit b5a53c2

File tree

8 files changed

+12
-3
lines changed

8 files changed

+12
-3
lines changed

base/sysimg.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ let
5454
:Statistics,
5555
:MozillaCACerts_jll,
5656
:LibCURL_jll,
57+
:LibCURL,
5758
]
5859

5960
maxlen = reduce(max, textwidth.(string.(stdlibs)); init=0)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
829dd514bd1e0d2f9d8cc6c8d5085bba
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
080fa389e9a924484aeb50d4bccd314da7d264613d0951f3b8dd53f28f4080abe126cb3960dcb69434a9c6d915866de01977625960117bc5e9d77928efead1cb

stdlib/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
/Pkg
44
/Statistics-*
55
/Statistics
6+
/LibCURL-*
7+
/LibCURL

stdlib/LibCURL.version

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
LIBCURL_BRANCH = master
2+
LIBCURL_SHA1 = 70aa2cc3f8fa4488897136a0a700b5425bfffdfa

stdlib/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,13 @@ STDLIBS = Artifacts Base64 CRC32c Dates DelimitedFiles Distributed FileWatching
2020
SharedArrays Sockets SparseArrays SuiteSparse Test TOML Unicode UUIDs \
2121
MozillaCACerts_jll LibCURL_jll
2222

23-
STDLIBS_EXT = Pkg Statistics
23+
STDLIBS_EXT = Pkg Statistics LibCURL
2424
PKG_GIT_URL := git://github.com/JuliaLang/Pkg.jl.git
2525
PKG_TAR_URL = https://api.github.com/repos/JuliaLang/Pkg.jl/tarball/$1
2626
STATISTICS_GIT_URL := git://github.com/JuliaLang/Statistics.jl.git
2727
STATISTICS_TAR_URL = https://api.github.com/repos/JuliaLang/Statistics.jl/tarball/$1
28+
LIBCURL_GIT_URL := git://github.com/JuliaWeb/LibCURL.jl.git
29+
LIBCURL_TAR_URL = https://api.github.com/repos/JuliaWeb/LibCURL.jl/tarball/$1
2830

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

test/choosetests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function choosetests(choices = [])
111111
filter!(x -> (x != "Profile"), tests)
112112
end
113113

114-
net_required_for = ["Sockets", "LibGit2"]
114+
net_required_for = ["Sockets", "LibGit2", "LibCURL"]
115115
net_on = true
116116
try
117117
ipa = getipaddr()

test/precompile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ try
292292
:Future, :Libdl, :LinearAlgebra, :Logging, :Mmap, :Printf,
293293
:Profile, :Random, :Serialization, :SharedArrays, :SparseArrays, :SuiteSparse, :Test,
294294
:Unicode, :REPL, :InteractiveUtils, :Pkg, :LibGit2, :SHA, :UUIDs, :Sockets,
295-
:Statistics, :TOML, :MozillaCACerts_jll, :LibCURL_jll,]),
295+
:Statistics, :TOML, :MozillaCACerts_jll, :LibCURL_jll, :LibCURL,]),
296296
# Plus precompilation module generated at build time
297297
let id = Base.PkgId("__PackagePrecompilationStatementModule")
298298
Dict(id => Base.module_build_id(Base.root_module(id)))

0 commit comments

Comments
 (0)