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

Move LazyArtifacts out of the mono-repo #51549

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8355c253fadfc3f9222e05cb67845dd6
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6d965199ed02446e694789a38f05249ff60ac00f8295fe32bf91a79cca34649829e38eaf46cc0b0b72ff2df7e184c2eaeb610600ebb5158251b331c61e9dfc5d
2 changes: 2 additions & 0 deletions stdlib/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
/SparseArrays
/SHA-*
/SHA
/LazyArtifacts-*
/LazyArtifacts
/*_jll/StdlibArtifacts.toml
/*/Manifest.toml
/*.image
4 changes: 4 additions & 0 deletions stdlib/LazyArtifacts.version
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
LAZYARTIFACTS_BRANCH = main
LAZYARTIFACTS_SHA1 = e9a36338d5d0dfa4b222f4e11b446cbb7ea5836c
LAZYARTIFACTS_GIT_URL := https://github.com/JuliaPackaging/LazyArtifacts.jl.git
LAZYARTIFACTS_TAR_URL = https://api.github.com/repos/JuliaPackaging/LazyArtifacts.jl/tarball/$1
12 changes: 0 additions & 12 deletions stdlib/LazyArtifacts/Project.toml

This file was deleted.

10 changes: 0 additions & 10 deletions stdlib/LazyArtifacts/docs/src/index.md

This file was deleted.

15 changes: 0 additions & 15 deletions stdlib/LazyArtifacts/src/LazyArtifacts.jl

This file was deleted.

155 changes: 0 additions & 155 deletions stdlib/LazyArtifacts/test/Artifacts.toml

This file was deleted.

31 changes: 0 additions & 31 deletions stdlib/LazyArtifacts/test/runtests.jl

This file was deleted.

5 changes: 3 additions & 2 deletions stdlib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@ $(foreach jll,$(JLLS),$(eval $(call download-artifacts-toml,$(jll))))


STDLIBS = Artifacts Base64 CRC32c Dates Distributed FileWatching \
Future InteractiveUtils LazyArtifacts Libdl LibGit2 LinearAlgebra Logging \
Future InteractiveUtils Libdl LibGit2 LinearAlgebra Logging \
Markdown Mmap Printf Profile Random REPL Serialization \
SharedArrays Sockets Test TOML Unicode UUIDs \
$(JLL_NAMES)

STDLIBS_EXT = Pkg Statistics LibCURL DelimitedFiles Downloads ArgTools Tar NetworkOptions SuiteSparse SparseArrays SHA
STDLIBS_EXT = Pkg Statistics LazyArtifacts 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