Skip to content

Commit

Permalink
add Downloader stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKarpinski committed Sep 2, 2020
1 parent a9484e9 commit c7c4d35
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 @@ -54,6 +54,7 @@ let
:MozillaCACerts_jll,
:LibCURL_jll,
:LibCURL,
:Downloader,
]

maxlen = reduce(max, textwidth.(string.(stdlibs)); init=0)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1a5710da5db0027b48db4a61507ba746
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
344a39bcc76275661caca3608adc7f03aa27c006104610cd2aa43bab0d53fb2f9c69fa453c82de0bab15130ae1ef2a49366bed0fb2744c3087ec47f57b8d6360
2 changes: 2 additions & 0 deletions stdlib/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
/Statistics
/LibCURL-*
/LibCURL
/Downloader-*
/Downloader
2 changes: 2 additions & 0 deletions stdlib/Downloader.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
DOWNLOADER_BRANCH = master
DOWNLOADER_SHA1 = 6cfb8b85318ddc89459cece3b8beeda6636e4461
4 changes: 3 additions & 1 deletion stdlib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ STDLIBS = Base64 CRC32c Dates DelimitedFiles Distributed FileWatching \
SharedArrays Sockets SparseArrays SuiteSparse Test TOML Unicode UUIDs \
MozillaCACerts_jll LibCURL_jll

STDLIBS_EXT = Pkg Statistics LibCURL
STDLIBS_EXT = Pkg Statistics LibCURL Downloader
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
DOWNLOADER_GIT_URL := git://github.com/JuliaLang/Downloader.jl.git
DOWNLOADER_TAR_URL = https://api.github.com/repos/JuliaLang/Downloader.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 c7c4d35

Please sign in to comment.