forked from pool/julia
814989a3ce
- Update ./disable-doc-gen-in-makefile.patch. Upstream has patched to allow offline builds but added commands in the `doc/Makefile` that needs network. - Update to version 1.10.4: * correctly track freed bytes in array_to_string * Add inventory writing via DocumenterInventoryWritingBackport * Overload Base.literal_pow for AbstractQ * LinearAlgebra: Correct zero element in _generic_matvecmul! for block adj/trans * set MAX_OS_WRITE on unix * fix typo in gc_mark_memory8 when chunking a large array * typeintersect: fix another stack overflow caused by circular constraints * Fix an off-by-one error in interpreter's do_invoke * Make TestLogger thread-safe (introduce a lock) * Add a missing doc * typeintersect: conservative typevar subtitution during `finish_unionall * typeintersect: followup cleanup for the nothrow path of type instantiation * merge backports for 1.10.4 OBS-URL: https://build.opensuse.org/request/show/1179111 OBS-URL: https://build.opensuse.org/package/show/science/julia?expand=0&rev=214
21 lines
863 B
Diff
21 lines
863 B
Diff
diff -ruN julia-1.10.4.orig/doc/Makefile julia-1.10.4/doc/Makefile
|
|
--- julia-1.10.4.orig/doc/Makefile 2024-06-06 21:49:32.084595230 +0800
|
|
+++ julia-1.10.4/doc/Makefile 2024-06-06 22:04:17.150827400 +0800
|
|
@@ -44,16 +44,13 @@
|
|
|
|
html: deps
|
|
@echo "Building HTML documentation."
|
|
- $(JULIA_EXECUTABLE) --color=yes $(call cygpath_w,$(SRCDIR)/make.jl) $(DOCUMENTER_OPTIONS)
|
|
@echo "Build finished. The HTML pages are in _build/html."
|
|
|
|
pdf: deps
|
|
@echo "Building PDF documentation."
|
|
- $(JULIA_EXECUTABLE) --color=yes $(call cygpath_w,$(SRCDIR)/make.jl) -- pdf $(DOCUMENTER_OPTIONS)
|
|
@echo "Build finished."
|
|
|
|
# The deploy target should only be called in CI builds
|
|
deploy: deps
|
|
@echo "Deploying HTML documentation."
|
|
- $(JULIA_EXECUTABLE) --color=yes $(call cygpath_w,$(SRCDIR)/make.jl) -- deploy $(DOCUMENTER_OPTIONS)
|
|
@echo "Build & deploy of docs finished."
|