Skip to content

Commit

Permalink
add LibCURL stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKarpinski committed Sep 2, 2020
1 parent 6be8c31 commit a9484e9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions base/sysimg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ let
:Statistics,
:MozillaCACerts_jll,
:LibCURL_jll,
:LibCURL,
]

maxlen = reduce(max, textwidth.(string.(stdlibs)); init=0)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7552cdf4a87d6d623b885823b3daa3de
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b5f0313159dbd2f79ba35733f5cdd7bce6f7f17a640c413c23a77e3d34e83c6becadf858cb047258485d8da1eb3b2bca839b6d0d2a1443de34b163cf0d315e5e
2 changes: 2 additions & 0 deletions stdlib/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
/Pkg
/Statistics-*
/Statistics
/LibCURL-*
/LibCURL
2 changes: 2 additions & 0 deletions stdlib/LibCURL.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
LIBCURL_BRANCH = master
LIBCURL_SHA1 = d018fe70928510b552600473e136de5d9bbe65b3
4 changes: 3 additions & 1 deletion stdlib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ STDLIBS = Base64 CRC32c Dates DelimitedFiles Distributed FileWatching \
SharedArrays Sockets SparseArrays SuiteSparse Test TOML Unicode UUIDs \
MozillaCACerts_jll LibCURL_jll

STDLIBS_EXT = Pkg Statistics
STDLIBS_EXT = Pkg Statistics LibCURL
PKG_GIT_URL := git://github.com/JuliaLang/Pkg.jl.git
PKG_TAR_URL = https://api.github.com/repos/JuliaLang/Pkg.jl/tarball/$1
STATISTICS_GIT_URL := git://github.com/JuliaLang/Statistics.jl.git
STATISTICS_TAR_URL = https://api.github.com/repos/JuliaLang/Statistics.jl/tarball/$1
LIBCURL_GIT_URL := git://github.com/JuliaWeb/LibCURL.jl.git
LIBCURL_TAR_URL = https://api.github.com/repos/JuliaWeb/LibCURL.jl/tarball/$1

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

Expand Down

0 comments on commit a9484e9

Please sign in to comment.