Description: Prevent the build system from downloading anything while building docs.
Forwarded: no need.
Author: Mo Zhou
Last-Update: 2018-07-03

Index: julia/doc/make.jl
===================================================================
--- julia.orig/doc/make.jl
+++ julia/doc/make.jl
@@ -3,8 +3,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
 
Index: julia/doc/Makefile
===================================================================
--- julia.orig/doc/Makefile
+++ julia/doc/Makefile
@@ -23,10 +23,8 @@ help:
 DOCUMENTER_OPTIONS := linkcheck=$(linkcheck) doctest=$(doctest) buildroot=$(call cygpath_w,$(BUILDROOT))
 
 UnicodeData.txt:
-	$(JLDOWNLOAD) http://www.unicode.org/Public/9.0.0/ucd/UnicodeData.txt
-
-deps: UnicodeData.txt
-	$(JLCHECKSUM) UnicodeData.txt
+deps:
+	true
 
 clean:
 	-rm -rf _build/* deps/* docbuild.log UnicodeData.txt
Index: julia/doc/Project.toml
===================================================================
--- julia.orig/doc/Project.toml
+++ julia/doc/Project.toml
@@ -1,2 +0,0 @@
-[deps]
-Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
