From: Debian Julia Team Date: Sun, 25 Oct 2020 14:04:33 +0000 (+0000) Subject: Prevent the build system from downloading anything while building docs. X-Git-Tag: archive/raspbian/1.5.3+dfsg-1+rpi1~3^2^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=697e1884494e68f0298bfc12d6318208a8027853;p=julia.git Prevent the build system from downloading anything while building docs. Forwarded: no need. Last-Update: 2018-07-03 Gbp-Pq: Name doc-make.patch --- diff --git a/doc/Makefile b/doc/Makefile index 3bf710c..f03fa70 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -26,12 +26,8 @@ DOCUMENTER_OPTIONS := linkcheck=$(linkcheck) doctest=$(doctest) buildroot=$(call UNICODE_DATA_VERSION=13.0.0 $(SRCCACHE)/UnicodeData-$(UNICODE_DATA_VERSION).txt: - @mkdir -p "$(SRCCACHE)" - $(JLDOWNLOAD) "$@" http://www.unicode.org/Public/$(UNICODE_DATA_VERSION)/ucd/UnicodeData.txt - -deps: $(SRCCACHE)/UnicodeData-$(UNICODE_DATA_VERSION).txt - $(JLCHECKSUM) "$<" - cp "$<" UnicodeData.txt +deps: + true clean: -rm -rf _build/* deps/* docbuild.log UnicodeData.txt diff --git a/doc/Project.toml b/doc/Project.toml index c09e74d..bb4d98f 100644 --- a/doc/Project.toml +++ b/doc/Project.toml @@ -1,3 +1 @@ -[deps] -Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" DocumenterLaTeX = "cd674d7a-5f81-5cf3-af33-235ef1834b99" diff --git a/doc/make.jl b/doc/make.jl index 1dc60ec..318ef6e 100644 --- a/doc/make.jl +++ b/doc/make.jl @@ -4,8 +4,7 @@ empty!(LOAD_PATH) push!(LOAD_PATH, @__DIR__, "@stdlib") empty!(DEPOT_PATH) pushfirst!(DEPOT_PATH, joinpath(@__DIR__, "deps")) -using Pkg -Pkg.instantiate() +push!(LOAD_PATH, "../debian/embedded") using Documenter, DocumenterLaTeX