git: 6b461fe11929 - main - lang/julia: Bring back the port.

From: Gleb Popov <arrowd_at_FreeBSD.org>
Date: Wed, 29 Dec 2021 11:40:15 UTC
The branch main has been updated by arrowd:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6b461fe1192987ac36bd1c1af3d517b8e6497fc2

commit 6b461fe1192987ac36bd1c1af3d517b8e6497fc2
Author:     Eric Reardon <rizor.reardon_yahoo.com>
AuthorDate: 2021-12-29 09:28:50 +0000
Commit:     Gleb Popov <arrowd@FreeBSD.org>
CommitDate: 2021-12-29 11:39:58 +0000

    lang/julia: Bring back the port.
    
    Reviewed By: thierry, tcberner, Greg V <greg@unrelenting.technology>, Filipe da Silva Santos <contact@shiori.com.br>, arrowd
    
    Differential Revision: https://reviews.freebsd.org/D33121
---
 MOVED                                              |    1 -
 lang/Makefile                                      |    1 +
 lang/julia/Makefile                                |  131 ++
 lang/julia/distinfo                                |    3 +
 lang/julia/files/check_openblas.c                  |   10 +
 lang/julia/files/patch-Make.inc                    |   31 +
 lang/julia/files/patch-Makefile                    |   63 +
 .../patch-stdlib_LibGit2__jll_src_LibGit2__jll.jl  |   11 +
 lang/julia/files/patch-stdlib_LibGit2_src_types.jl |   12 +
 .../patch-stdlib_MbedTLS__jll_src_MbedTLS__jll.jl  |   15 +
 ...patch-stdlib_OpenLibm__jll_src_OpenLibm__jll.jl |   11 +
 lang/julia/pkg-descr                               |    9 +
 lang/julia/pkg-plist                               | 1651 ++++++++++++++++++++
 13 files changed, 1948 insertions(+), 1 deletion(-)

diff --git a/MOVED b/MOVED
index 2e7f59bc5eb1..e44f607ac45d 100644
--- a/MOVED
+++ b/MOVED
@@ -15920,7 +15920,6 @@ graphics/sk1libs||2021-01-02|Has expired: Uses Python 2.7 which is EOLed upstrea
 graphics/uniconvertor||2021-01-02|Has expired: Uses deprecated version of python
 games/dangerdeep||2021-01-02|Has expired: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream
 games/dangerdeep-data||2021-01-02|Removed, useless without games/dangerdeep
-lang/julia||2021-01-02|Removed, useless without any consumers
 lang/julia10||2021-01-02|Has expired: Uses Python 2.7 which is EOLed upstream
 lang/spidermonkey24||2021-01-02|Has expired: Uses Python 2.7 which is EOLed upstream
 mail/getmail||2021-01-02|Has expired: Uses deprecated version of python
diff --git a/lang/Makefile b/lang/Makefile
index a64c93a6484b..db8894b95bb8 100644
--- a/lang/Makefile
+++ b/lang/Makefile
@@ -143,6 +143,7 @@
     SUBDIR += jimtcl
     SUBDIR += jpm
     SUBDIR += jruby
+    SUBDIR += julia
     SUBDIR += jython
     SUBDIR += kawa
     SUBDIR += kf5-kross
diff --git a/lang/julia/Makefile b/lang/julia/Makefile
new file mode 100644
index 000000000000..b4ebe4650b6b
--- /dev/null
+++ b/lang/julia/Makefile
@@ -0,0 +1,131 @@
+# Created by: Iblis Lin <iblis@hs.ntnu.edu.tw>
+
+PORTNAME=	julia
+DISTVERSION=	1.7.1
+DISTVERSIONSUFFIX=	-full
+CATEGORIES=	lang math
+MASTER_SITES=	https://github.com/JuliaLang/julia/releases/download/v${DISTVERSION}/
+
+MAINTAINER=	rizor.reardon@yahoo.com
+COMMENT=	Implementation of Julia, a language for technical computing
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.md
+
+ONLY_FOR_ARCHS=	amd64
+ONLY_FOR_ARCHS_REASON=	Has not been ported to this platform for freebsd
+
+MY_DEPENDS=	7z:archivers/p7zip
+BUILD_DEPENDS=	patchelf:sysutils/patchelf \
+		cmake:devel/cmake ${MY_DEPENDS}
+LIB_DEPENDS=	libcurl.so:ftp/curl \
+		libgit2.so:devel/libgit2 \
+		libgmp.so:math/gmp \
+		libmbedtls.so:security/mbedtls \
+		libmpfr.so:math/mpfr \
+		libpcre2-8.so:devel/pcre2 \
+		libssh2.so:security/libssh2 \
+		libutf8proc.so:textproc/utf8proc \
+		libnghttp2.so:www/libnghttp2 \
+		libunwind.so:devel/libunwind \
+		libopenlibm.so:math/openlibm
+RUN_DEPENDS=	${MY_DEPENDS}
+
+USES=	gmake compiler:c++14-lang fortran python perl5 \
+		shebangfix blaslapack:openblas
+
+BINARY_ALIAS=	python3=${PYTHON_CMD} gfortran=gfortran${_GCC_VER}
+USE_LDCONFIG=	yes
+CFLAGS+=	-fpic
+
+SHEBANG_GLOB=	*.sh
+
+WRKSRC=	${WRKDIR}/julia-${DISTVERSION}
+MANDIRS+=	${PREFIX}/share/man/man1
+
+ALL_TARGET=	default
+INSTALL_TARGET=	install
+TEST_TARGET=	test
+
+PLIST_SUB=	VERSION="${PORTVERSION:R}"
+
+CXXFLAGS+=	-std=c++14
+MAKE_ARGS+=	NO_GIT=1 \
+		USE_BINARYBUILDER=0 \
+		prefix=${PREFIX} \
+		JCXXFLAGS="${CXXFLAGS}" \
+		USE_GPL_LIBS=0 \
+		ARCH=x86_64 \
+		USE_SYSTEM_CURL=1 \
+		USE_SYSTEM_GMP=1 \
+		USE_SYSTEM_OPENLIBM=1 \
+		USE_SYSTEM_LAPACK=1 \
+		USE_SYSTEM_LIBGIT2=1 \
+		USE_SYSTEM_LIBSSH2=1 \
+		USE_SYSTEM_MBEDTLS=1 \
+		USE_SYSTEM_MPFR=1 \
+		USE_SYSTEM_PATCHELF=1 \
+		USE_SYSTEM_PCRE=1 \
+		USE_SYSTEM_UTF8PROC=1 \
+		USE_SYSTEM_P7ZIP=1 \
+		USE_SYSTEM_BLAS=1 \
+		USE_SYSTEM_NGHTTP2=1 \
+		USE_SYSTEM_CSL=1 \
+		USE_SYSTEM_LIBUNWIND=1
+
+OPTIONS_DEFINE=	DEBUG DOCS NATIVE GPL_LIBS
+OPTIONS_DEFAULT=	DOCS GPL_LIBS
+OPTIONS_SUB=	yes
+DEBUG_MAKE_ARGS+=	FORCE_ASSERTIONS=1 \
+			ALL_TARGET=all \
+			BUNDLE_DEBUG_LIBS=1
+
+DOCSDIR=	${PREFIX}/share/doc/${PORTNAME}
+PORTDOCS=	html
+DOCS_VARS=	INSTALL_TARGET+=install-docs
+
+GPL_LIBS_DESC=	Build with GPL lib: SUITESPARSE
+GPL_LIBS_LIB_DEPENDS=		libspqr.so:math/suitesparse-spqr \
+		libumfpack.so:math/suitesparse-umfpack
+GPL_LIBS_MAKE_ARGS=	USE_SYSTEM_LIBSUITESPARSE=1 \
+						USE_GPL_LIBS=1
+
+NATIVE_DESC=		Build with native CPU JIT tuning
+NATIVE_MAKE_ARGS+=	MARCH=native
+
+post-patch:
+	echo "override TAGGED_RELEASE_BANNER=\"FreeBSD port lang/${PORTNAME} build\"" >> ${WRKSRC}/Make.user
+	# unset ARCH for auto-detection
+	# Julia build script uses the name x86_86/x86, which are different from ports framework
+	echo "ARCH=" >> ${WRKSRC}/Make.user
+	echo "LIBBLAS= -lopenblas -L${LOCALBASE}/lib" >> ${WRKSRC}/Make.user
+	echo "LIBBLASNAME=libopenblas" >> ${WRKSRC}/Make.user
+	echo 'LIBLAPACK= $$(LIBBLAS)' >> ${WRKSRC}/Make.user
+	echo 'LIBLAPACKNAME= $$(LIBBLASNAME)' >> ${WRKSRC}/Make.user
+
+post-configure:
+	${CC} ${CFLAGS} -lopenblas ${LDFLAGS} -o ${WRKSRC}/check_openblas \
+		${FILESDIR}/check_openblas.c
+	${WRKSRC}/check_openblas && ( \
+		echo "USE_BLAS64=1" >> ${WRKSRC}/Make.user \
+	) || ( \
+		echo "USE_BLAS64=0" >> ${WRKSRC}/Make.user \
+	)
+do-install-DOCS-off:
+	${RM} -r ${STAGEDIR}${PREFIX}/${INSTALLDIR}/share/doc
+
+post-install:
+	# clean up for Pkg3.jl
+.for file in .codecov.yml .travis.yml appveyor.yml bors.toml .gitignore source-extracted
+	${FIND} ${STAGEDIR}${PREFIX}/share/julia/ -name ${file} -delete
+.endfor
+.for dir in Statistics SuiteSparse ArgTools Pkg Downloads LibCURL NetworkOptions Tar
+	${RM} -fr ${STAGEDIR}${PREFIX}/share/julia/stdlib/v${PORTVERSION:R}/${dir}/.github/
+.endfor
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/julia*
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libjulia.so*
+.for bin in libccalltest.so libllvmcalltest.so libjulia-internal.so* libblastrampoline.so libdSFMT.so libuv.so* libz.so* libLLVM* sys.so
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/julia/${bin}
+.endfor
+
+.include <bsd.port.mk>
diff --git a/lang/julia/distinfo b/lang/julia/distinfo
new file mode 100644
index 000000000000..c5ca48d48b56
--- /dev/null
+++ b/lang/julia/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1640285664
+SHA256 (julia-1.7.1-full.tar.gz) = add869121b7e788ff487a234fd39484469dbb3ded29b17041c63c4757515dd58
+SIZE (julia-1.7.1-full.tar.gz) = 255682275
diff --git a/lang/julia/files/check_openblas.c b/lang/julia/files/check_openblas.c
new file mode 100644
index 000000000000..6218d3507c65
--- /dev/null
+++ b/lang/julia/files/check_openblas.c
@@ -0,0 +1,10 @@
+#include <string.h>
+
+char* openblas_get_config(void);
+
+int main()
+{
+    if (strstr(openblas_get_config(), "USE64BITINT") == NULL)
+        return 1;
+    return 0;
+}
diff --git a/lang/julia/files/patch-Make.inc b/lang/julia/files/patch-Make.inc
new file mode 100644
index 000000000000..9eee322adcb4
--- /dev/null
+++ b/lang/julia/files/patch-Make.inc
@@ -0,0 +1,31 @@
+--- Make.inc.orig	2021-12-23 01:12:50 UTC
++++ Make.inc
+@@ -243,7 +243,7 @@ libdir := $(prefix)/$(framework_currver)
+ libexecdir := $(prefix)/$(framework_helpers)
+ datarootdir := $(prefix)/$(framework_resources)
+ docdir := $(prefix)/$(framework_documentation)
+-mandir := $(datarootdir)/man
++mandir := $(prefix)/man
+ man1dir := $(mandir)/man1
+ includedir := $(prefix)/$(framework_headers)
+ sysconfdir := $(prefix)/$(framework_resources)
+@@ -271,7 +271,7 @@ build_depsbindir := $(build_prefix)/tools
+ build_libdir := $(build_prefix)/lib
+ build_libexecdir := $(build_prefix)/libexec
+ build_datarootdir := $(build_prefix)/share
+-build_mandir := $(build_datarootdir)/man
++build_mandir := $(build_prefix)/man
+ build_man1dir := $(build_mandir)/man1
+ build_includedir := $(build_prefix)/include
+ build_sysconfdir := $(build_prefix)/etc
+@@ -510,8 +510,8 @@ SHIPFLAGS := -O3 -ggdb2 -falign-functions
+ endif
+ 
+ ifeq ($(USECLANG),1)
+-CC := $(CROSS_COMPILE)clang
+-CXX := $(CROSS_COMPILE)clang++
++CC ?= $(CROSS_COMPILE)clang
++CXX ?= $(CROSS_COMPILE)clang++
+ JCFLAGS := -std=gnu99 -pipe $(fPIC) -fno-strict-aliasing -D_FILE_OFFSET_BITS=64
+ # AArch64 needs this flag to generate the .eh_frame used by libunwind
+ JCPPFLAGS := -fasynchronous-unwind-tables
diff --git a/lang/julia/files/patch-Makefile b/lang/julia/files/patch-Makefile
new file mode 100644
index 000000000000..1248a6e671cf
--- /dev/null
+++ b/lang/julia/files/patch-Makefile
@@ -0,0 +1,63 @@
+--- Makefile.orig	2021-11-30 12:13:06 UTC
++++ Makefile
+@@ -226,7 +226,7 @@ define stringreplace
+ endef
+ 
+ 
+-install: $(build_depsbindir)/stringreplace $(BUILDROOT)/doc/_build/html/en/index.html
++install: $(build_depsbindir)/stringreplace
+ ifeq ($(BUNDLE_DEBUG_LIBS),1)
+ 	@$(MAKE) $(QUIET_MAKE) all
+ else
+@@ -314,8 +314,6 @@ endif
+ 	cp -R -L $(JULIAHOME)/base/* $(DESTDIR)$(datarootdir)/julia/base
+ 	cp -R -L $(JULIAHOME)/test/* $(DESTDIR)$(datarootdir)/julia/test
+ 	cp -R -L $(build_datarootdir)/julia/* $(DESTDIR)$(datarootdir)/julia
+-	# Copy documentation
+-	cp -R -L $(BUILDROOT)/doc/_build/html $(DESTDIR)$(docdir)/
+ 	# Remove various files which should not be installed
+ 	-rm -f $(DESTDIR)$(datarootdir)/julia/base/version_git.sh
+ 	-rm -f $(DESTDIR)$(datarootdir)/julia/test/Makefile
+@@ -325,12 +323,6 @@ endif
+ 	-rm -f $(DESTDIR)$(datarootdir)/julia/stdlib/$(VERSDIR)/*/build-checked
+ 	# Copy in beautiful new man page
+ 	$(INSTALL_F) $(build_man1dir)/julia.1 $(DESTDIR)$(man1dir)/
+-	# Copy .desktop file
+-	mkdir -p $(DESTDIR)$(datarootdir)/applications/
+-	$(INSTALL_F) $(JULIAHOME)/contrib/julia.desktop $(DESTDIR)$(datarootdir)/applications/
+-	# Install appdata file
+-	mkdir -p $(DESTDIR)$(datarootdir)/appdata/
+-	$(INSTALL_F) $(JULIAHOME)/contrib/julia.appdata.xml $(DESTDIR)$(datarootdir)/appdata/
+ 
+ 	# Update RPATH entries and JL_SYSTEM_IMAGE_PATH if $(private_libdir_rel) != $(build_private_libdir_rel)
+ ifneq ($(private_libdir_rel),$(build_private_libdir_rel))
+@@ -384,26 +376,15 @@ ifeq ($(BUNDLE_DEBUG_LIBS),1)
+ endif
+ endif
+ 
+-	# On FreeBSD, remove the build's libdir from each library's RPATH
+-ifeq ($(OS),FreeBSD)
+-	$(JULIAHOME)/contrib/fixup-rpath.sh "$(PATCHELF)" $(DESTDIR)$(libdir) $(build_libdir)
+-	$(JULIAHOME)/contrib/fixup-rpath.sh "$(PATCHELF)" $(DESTDIR)$(private_libdir) $(build_libdir)
+-	$(JULIAHOME)/contrib/fixup-rpath.sh "$(PATCHELF)" $(DESTDIR)$(bindir) $(build_libdir)
+-	# Set libgfortran's RPATH to ORIGIN instead of GCCPATH. It's only libgfortran that
+-	# needs to be fixed here, as libgcc_s and libquadmath don't have RPATHs set. If we
+-	# don't set libgfortran's RPATH, it won't be able to find its friends on systems
+-	# that don't have the exact GCC port installed used for the build.
+-	for lib in $(DESTDIR)$(private_libdir)/libgfortran*$(SHLIB_EXT)*; do \
+-		$(PATCHELF) --set-rpath '$$ORIGIN' $$lib; \
+-	done
+-endif
+-
+ 	mkdir -p $(DESTDIR)$(sysconfdir)
+ 	cp -R $(build_sysconfdir)/julia $(DESTDIR)$(sysconfdir)/
+ 
+ ifeq ($(DARWIN_FRAMEWORK),1)
+ 	$(MAKE) -C $(JULIAHOME)/contrib/mac/framework frameworknoinstall
+ endif
++install-docs:
++	#Copy documentation
++	cp -R -L $(BUILDROOT)/doc/_build/html $(DESTDIR)$(docdir)/
+ 
+ distclean:
+ 	-rm -fr $(BUILDROOT)/julia-*.tar.gz $(BUILDROOT)/julia*.exe $(BUILDROOT)/julia-$(JULIA_COMMIT)
diff --git a/lang/julia/files/patch-stdlib_LibGit2__jll_src_LibGit2__jll.jl b/lang/julia/files/patch-stdlib_LibGit2__jll_src_LibGit2__jll.jl
new file mode 100644
index 000000000000..cb9e92662688
--- /dev/null
+++ b/lang/julia/files/patch-stdlib_LibGit2__jll_src_LibGit2__jll.jl
@@ -0,0 +1,11 @@
+--- stdlib/LibGit2_jll/src/LibGit2_jll.jl.orig	2021-12-15 04:07:07 UTC
++++ stdlib/LibGit2_jll/src/LibGit2_jll.jl
+@@ -23,7 +23,7 @@ if Sys.iswindows()
+ elseif Sys.isapple()
+     const libgit2 = "@rpath/libgit2.1.1.dylib"
+ else
+-    const libgit2 = "libgit2.so.1.1"
++    const libgit2 = "libgit2.so.1"
+ end
+ 
+ function __init__()
diff --git a/lang/julia/files/patch-stdlib_LibGit2_src_types.jl b/lang/julia/files/patch-stdlib_LibGit2_src_types.jl
new file mode 100644
index 000000000000..46ff7104388e
--- /dev/null
+++ b/lang/julia/files/patch-stdlib_LibGit2_src_types.jl
@@ -0,0 +1,12 @@
+--- stdlib/LibGit2/src/types.jl.orig	2021-12-15 04:07:40 UTC
++++ stdlib/LibGit2/src/types.jl
+@@ -230,6 +230,9 @@ Matches the [`git_remote_callbacks`](https://libgit2.o
+     push_update_reference::Ptr{Cvoid}  = C_NULL
+     push_negotiation::Ptr{Cvoid}       = C_NULL
+     transport::Ptr{Cvoid}              = C_NULL
++    @static if LibGit2.VERSION >= v"1.2.0"
++        remote_ready::Ptr{Cvoid}       = C_NULL
++    end
+     payload::Any                       = nothing
+     @static if LibGit2.VERSION >= v"0.99.0"
+         resolve_url::Ptr{Cvoid}        = C_NULL
diff --git a/lang/julia/files/patch-stdlib_MbedTLS__jll_src_MbedTLS__jll.jl b/lang/julia/files/patch-stdlib_MbedTLS__jll_src_MbedTLS__jll.jl
new file mode 100644
index 000000000000..70b82c6dd39a
--- /dev/null
+++ b/lang/julia/files/patch-stdlib_MbedTLS__jll_src_MbedTLS__jll.jl
@@ -0,0 +1,15 @@
+--- stdlib/MbedTLS_jll/src/MbedTLS_jll.jl.orig	2021-11-25 11:01:50 UTC
++++ stdlib/MbedTLS_jll/src/MbedTLS_jll.jl
+@@ -31,9 +31,9 @@ elseif Sys.isapple()
+     const libmbedtls = "@rpath/libmbedtls.13.dylib"
+     const libmbedx509 = "@rpath/libmbedx509.1.dylib"
+ else
+-    const libmbedcrypto = "libmbedcrypto.so.5"
+-    const libmbedtls = "libmbedtls.so.13"
+-    const libmbedx509 = "libmbedx509.so.1"
++    const libmbedcrypto = "libmbedcrypto.so"
++    const libmbedtls = "libmbedtls.so"
++    const libmbedx509 = "libmbedx509.so"
+ end
+ 
+ function __init__()
diff --git a/lang/julia/files/patch-stdlib_OpenLibm__jll_src_OpenLibm__jll.jl b/lang/julia/files/patch-stdlib_OpenLibm__jll_src_OpenLibm__jll.jl
new file mode 100644
index 000000000000..ff13a5ea86d2
--- /dev/null
+++ b/lang/julia/files/patch-stdlib_OpenLibm__jll_src_OpenLibm__jll.jl
@@ -0,0 +1,11 @@
+--- stdlib/OpenLibm_jll/src/OpenLibm_jll.jl.orig	2021-11-25 11:01:50 UTC
++++ stdlib/OpenLibm_jll/src/OpenLibm_jll.jl
+@@ -22,7 +22,7 @@ if Sys.iswindows()
+ elseif Sys.isapple()
+     const libopenlibm = "@rpath/libopenlibm.3.dylib"
+ else
+-    const libopenlibm = "libopenlibm.so.3"
++    const libopenlibm = "libopenlibm.so"
+ end
+ 
+ function __init__()
diff --git a/lang/julia/pkg-descr b/lang/julia/pkg-descr
new file mode 100644
index 000000000000..461e454f79d4
--- /dev/null
+++ b/lang/julia/pkg-descr
@@ -0,0 +1,9 @@
+Julia is a high-level, high-performance dynamic programming language for
+technical computing, with syntax that is familiar to users of other technical
+computing environments. It provides a sophisticated compiler, distributed
+parallel execution, numerical accuracy, and an extensive mathematical function
+library. The library, largely written in Julia itself, also integrates mature,
+best-of-breed C and Fortran libraries for linear algebra, random number
+generation, signal processing, and string processing.
+
+WWW: https://julialang.org/
diff --git a/lang/julia/pkg-plist b/lang/julia/pkg-plist
new file mode 100644
index 000000000000..767e20865788
--- /dev/null
+++ b/lang/julia/pkg-plist
@@ -0,0 +1,1651 @@
+bin/julia
+%%DEBUG%%bin/julia-debug
+%%ETCDIR%%/startup.jl
+include/julia/END.h
+include/julia/ENTRY.amd64.h
+include/julia/ENTRY.i387.h
+include/julia/MurmurHash3.h
+include/julia/analyzer_annotations.h
+include/julia/arraylist.h
+include/julia/bitvector.h
+include/julia/dirpath.h
+include/julia/dtypes.h
+include/julia/hashing.h
+include/julia/htable.h
+include/julia/ios.h
+include/julia/jloptions.h
+include/julia/julia.h
+include/julia/julia_assert.h
+include/julia/julia_atomics.h
+include/julia/julia_fasttls.h
+include/julia/julia_gcext.h
+include/julia/julia_locks.h
+include/julia/julia_threads.h
+include/julia/julia_version.h
+include/julia/libsupport.h
+include/julia/platform.h
+include/julia/ptrhash.h
+include/julia/strtod.h
+include/julia/timefuncs.h
+include/julia/tzfile.h
+include/julia/utf8.h
+include/julia/utils.h
+include/julia/uv.h
+include/julia/uv/bsd.h
+include/julia/uv/errno.h
+include/julia/uv/threadpool.h
+include/julia/uv/unix.h
+include/julia/uv/version.h
+include/julia/win32_ucontext.h
+lib/julia/libLLVM-12jl.so
+lib/julia/libLLVM.so
+%%GPL_LIBS%%lib/julia/libamd.so
+lib/julia/libatomic.so.1
+lib/julia/libblastrampoline.so
+%%GPL_LIBS%%lib/julia/libcamd.so
+lib/julia/libccalltest.so
+%%GPL_LIBS%%lib/julia/libccolamd.so
+%%GPL_LIBS%%lib/julia/libcholmod.so
+%%GPL_LIBS%%lib/julia/libcolamd.so
+lib/julia/libcurl.so
+lib/julia/libdSFMT.so
+lib/julia/libgcc_s.so.1
+lib/julia/libgfortran.so.5
+lib/julia/libgit2.so
+lib/julia/libgmp.so
+lib/julia/libgomp.so.1
+%%DEBUG%%lib/julia/libjulia-internal-debug.so
+%%DEBUG%%lib/julia/libjulia-internal-debug.so.1
+%%DEBUG%%lib/julia/libjulia-internal-debug.so.%%VERSION%%
+lib/julia/libjulia-internal.so
+lib/julia/libjulia-internal.so.1
+lib/julia/libjulia-internal.so.%%VERSION%%
+lib/julia/libllvmcalltest.so
+lib/julia/libmbedcrypto.so
+lib/julia/libmbedtls.so
+lib/julia/libmbedx509.so
+lib/julia/libmpfr.so
+lib/julia/libnghttp2.so
+lib/julia/libopenblas.so
+lib/julia/libopenlibm.so
+lib/julia/libpcre2-8.so
+lib/julia/libquadmath.so.0
+%%GPL_LIBS%%lib/julia/libspqr.so
+lib/julia/libssh2.so
+lib/julia/libssp.so.0
+lib/julia/libstdc++.so.6
+%%GPL_LIBS%%lib/julia/libsuitesparseconfig.so
+%%GPL_LIBS%%lib/julia/libumfpack.so
+lib/julia/libuv.so
+lib/julia/libuv.so.2
+lib/julia/libuv.so.2.0.0
+lib/julia/libz.so
+lib/julia/libz.so.1
+lib/julia/libz.so.1.2.11
+%%DEBUG%%lib/julia/sys-debug.so
+lib/julia/sys.so
+%%DEBUG%%lib/libjulia-debug.so
+%%DEBUG%%lib/libjulia-debug.so.1
+%%DEBUG%%lib/libjulia-debug.so.%%VERSION%%
+lib/libjulia.so
+lib/libjulia.so.1
+lib/libjulia.so.%%VERSION%%
+libexec/7z
+%%DATADIR%%/base.cache
+%%DATADIR%%/base/Base.jl
+%%DATADIR%%/base/Enums.jl
+%%DATADIR%%/base/Makefile
+%%DATADIR%%/base/abstractarray.jl
+%%DATADIR%%/base/abstractarraymath.jl
+%%DATADIR%%/base/abstractdict.jl
+%%DATADIR%%/base/abstractset.jl
+%%DATADIR%%/base/accumulate.jl
+%%DATADIR%%/base/array.jl
+%%DATADIR%%/base/arraymath.jl
+%%DATADIR%%/base/arrayshow.jl
+%%DATADIR%%/base/asyncevent.jl
+%%DATADIR%%/base/asyncmap.jl
+%%DATADIR%%/base/atomics.jl
+%%DATADIR%%/base/baseext.jl
+%%DATADIR%%/base/binaryplatforms.jl
+%%DATADIR%%/base/bitarray.jl
+%%DATADIR%%/base/bitset.jl
+%%DATADIR%%/base/bool.jl
+%%DATADIR%%/base/boot.jl
+%%DATADIR%%/base/broadcast.jl
+%%DATADIR%%/base/build_h.jl
+%%DATADIR%%/base/c.jl
+%%DATADIR%%/base/cartesian.jl
+%%DATADIR%%/base/channels.jl
+%%DATADIR%%/base/char.jl
+%%DATADIR%%/base/checked.jl
+%%DATADIR%%/base/client.jl
+%%DATADIR%%/base/cmd.jl
+%%DATADIR%%/base/combinatorics.jl
+%%DATADIR%%/base/compiler/abstractinterpretation.jl
+%%DATADIR%%/base/compiler/bootstrap.jl
+%%DATADIR%%/base/compiler/cicache.jl
+%%DATADIR%%/base/compiler/compiler.jl
+%%DATADIR%%/base/compiler/inferenceresult.jl
+%%DATADIR%%/base/compiler/inferencestate.jl
+%%DATADIR%%/base/compiler/methodtable.jl
+%%DATADIR%%/base/compiler/optimize.jl
+%%DATADIR%%/base/compiler/parsing.jl
+%%DATADIR%%/base/compiler/ssair/basicblock.jl
+%%DATADIR%%/base/compiler/ssair/domtree.jl
+%%DATADIR%%/base/compiler/ssair/driver.jl
+%%DATADIR%%/base/compiler/ssair/inlining.jl
+%%DATADIR%%/base/compiler/ssair/ir.jl
+%%DATADIR%%/base/compiler/ssair/legacy.jl
+%%DATADIR%%/base/compiler/ssair/passes.jl
+%%DATADIR%%/base/compiler/ssair/queries.jl
+%%DATADIR%%/base/compiler/ssair/show.jl
+%%DATADIR%%/base/compiler/ssair/slot2ssa.jl
+%%DATADIR%%/base/compiler/ssair/verify.jl
+%%DATADIR%%/base/compiler/stmtinfo.jl
+%%DATADIR%%/base/compiler/tfuncs.jl
+%%DATADIR%%/base/compiler/typeinfer.jl
+%%DATADIR%%/base/compiler/typelattice.jl
+%%DATADIR%%/base/compiler/typelimits.jl
+%%DATADIR%%/base/compiler/types.jl
+%%DATADIR%%/base/compiler/typeutils.jl
+%%DATADIR%%/base/compiler/utilities.jl
+%%DATADIR%%/base/compiler/validation.jl
+%%DATADIR%%/base/complex.jl
+%%DATADIR%%/base/condition.jl
+%%DATADIR%%/base/coreio.jl
+%%DATADIR%%/base/cpuid.jl
+%%DATADIR%%/base/ctypes.jl
+%%DATADIR%%/base/deepcopy.jl
+%%DATADIR%%/base/deprecated.jl
+%%DATADIR%%/base/dict.jl
+%%DATADIR%%/base/div.jl
+%%DATADIR%%/base/docs/Docs.jl
+%%DATADIR%%/base/docs/basedocs.jl
+%%DATADIR%%/base/docs/bindings.jl
+%%DATADIR%%/base/docs/core.jl
+%%DATADIR%%/base/docs/utils.jl
+%%DATADIR%%/base/download.jl
+%%DATADIR%%/base/env.jl
+%%DATADIR%%/base/errno_h.jl
+%%DATADIR%%/base/error.jl
+%%DATADIR%%/base/errorshow.jl
+%%DATADIR%%/base/essentials.jl
+%%DATADIR%%/base/experimental.jl
+%%DATADIR%%/base/exports.jl
+%%DATADIR%%/base/expr.jl
+%%DATADIR%%/base/fastmath.jl
+%%DATADIR%%/base/features_h.jl
+%%DATADIR%%/base/file.jl
+%%DATADIR%%/base/file_constants.jl
+%%DATADIR%%/base/filesystem.jl
+%%DATADIR%%/base/float.jl
+%%DATADIR%%/base/floatfuncs.jl
+%%DATADIR%%/base/gcutils.jl
+%%DATADIR%%/base/generator.jl
+%%DATADIR%%/base/gmp.jl
+%%DATADIR%%/base/hashing.jl
+%%DATADIR%%/base/iddict.jl
+%%DATADIR%%/base/idset.jl
+%%DATADIR%%/base/indices.jl
+%%DATADIR%%/base/initdefs.jl
+%%DATADIR%%/base/int.jl
+%%DATADIR%%/base/intfuncs.jl
+%%DATADIR%%/base/io.jl
+%%DATADIR%%/base/iobuffer.jl
+%%DATADIR%%/base/iostream.jl
+%%DATADIR%%/base/irrationals.jl
+%%DATADIR%%/base/iterators.jl
+%%DATADIR%%/base/libc.jl
+%%DATADIR%%/base/libdl.jl
+%%DATADIR%%/base/libuv.jl
+%%DATADIR%%/base/linked_list.jl
+%%DATADIR%%/base/loading.jl
+%%DATADIR%%/base/lock.jl
+%%DATADIR%%/base/locks-mt.jl
+%%DATADIR%%/base/logging.jl
+%%DATADIR%%/base/math.jl
+%%DATADIR%%/base/mathconstants.jl
+%%DATADIR%%/base/meta.jl
+%%DATADIR%%/base/methodshow.jl
+%%DATADIR%%/base/missing.jl
+%%DATADIR%%/base/mpfr.jl
+%%DATADIR%%/base/multidimensional.jl
+%%DATADIR%%/base/multimedia.jl
+%%DATADIR%%/base/multinverses.jl
+%%DATADIR%%/base/namedtuple.jl
+%%DATADIR%%/base/ntuple.jl
+%%DATADIR%%/base/number.jl
+%%DATADIR%%/base/opaque_closure.jl
+%%DATADIR%%/base/operators.jl
+%%DATADIR%%/base/options.jl
+%%DATADIR%%/base/ordering.jl
+%%DATADIR%%/base/osutils.jl
+%%DATADIR%%/base/pair.jl
+%%DATADIR%%/base/parse.jl
+%%DATADIR%%/base/path.jl
+%%DATADIR%%/base/pcre.jl
+%%DATADIR%%/base/pcre_h.jl
+%%DATADIR%%/base/permuteddimsarray.jl
+%%DATADIR%%/base/pkgid.jl
+%%DATADIR%%/base/pointer.jl
+%%DATADIR%%/base/process.jl
+%%DATADIR%%/base/promotion.jl
+%%DATADIR%%/base/range.jl
+%%DATADIR%%/base/rational.jl
+%%DATADIR%%/base/reduce.jl
+%%DATADIR%%/base/reducedim.jl
+%%DATADIR%%/base/reflection.jl
+%%DATADIR%%/base/refpointer.jl
+%%DATADIR%%/base/refvalue.jl
+%%DATADIR%%/base/regex.jl
+%%DATADIR%%/base/reinterpretarray.jl
+%%DATADIR%%/base/reshapedarray.jl
+%%DATADIR%%/base/rounding.jl
+%%DATADIR%%/base/ryu/LICENSE.md
+%%DATADIR%%/base/ryu/Ryu.jl
+%%DATADIR%%/base/ryu/exp.jl
+%%DATADIR%%/base/ryu/fixed.jl
+%%DATADIR%%/base/ryu/shortest.jl
+%%DATADIR%%/base/ryu/utils.jl
+%%DATADIR%%/base/secretbuffer.jl
+%%DATADIR%%/base/set.jl
+%%DATADIR%%/base/shell.jl
+%%DATADIR%%/base/show.jl
+%%DATADIR%%/base/simdloop.jl
+%%DATADIR%%/base/some.jl
+%%DATADIR%%/base/sort.jl
+%%DATADIR%%/base/special/cbrt.jl
+%%DATADIR%%/base/special/exp.jl
+%%DATADIR%%/base/special/hyperbolic.jl
+%%DATADIR%%/base/special/log.jl
+%%DATADIR%%/base/special/rem_pio2.jl
+%%DATADIR%%/base/special/trig.jl
+%%DATADIR%%/base/stacktraces.jl
+%%DATADIR%%/base/stat.jl
+%%DATADIR%%/base/stream.jl
+%%DATADIR%%/base/strings/basic.jl
+%%DATADIR%%/base/strings/io.jl
+%%DATADIR%%/base/strings/search.jl
+%%DATADIR%%/base/strings/string.jl
+%%DATADIR%%/base/strings/strings.jl
+%%DATADIR%%/base/strings/substring.jl
+%%DATADIR%%/base/strings/unicode.jl
+%%DATADIR%%/base/strings/util.jl
+%%DATADIR%%/base/subarray.jl
+%%DATADIR%%/base/summarysize.jl
+%%DATADIR%%/base/sysimg.jl
+%%DATADIR%%/base/sysinfo.jl
+%%DATADIR%%/base/task.jl
+%%DATADIR%%/base/threadcall.jl
+%%DATADIR%%/base/threadingconstructs.jl
+%%DATADIR%%/base/threads.jl
+%%DATADIR%%/base/threads_overloads.jl
+%%DATADIR%%/base/timing.jl
+%%DATADIR%%/base/toml_parser.jl
+%%DATADIR%%/base/traits.jl
+%%DATADIR%%/base/ttyhascolor.jl
+%%DATADIR%%/base/tuple.jl
+%%DATADIR%%/base/twiceprecision.jl
+%%DATADIR%%/base/util.jl
+%%DATADIR%%/base/uuid.jl
+%%DATADIR%%/base/uv_constants.jl
+%%DATADIR%%/base/version.jl
+%%DATADIR%%/base/version_git.jl
+%%DATADIR%%/base/views.jl
+%%DATADIR%%/base/weakkeydict.jl
+%%DATADIR%%/julia-config.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/ArgTools/LICENSE
+%%DATADIR%%/stdlib/v%%VERSION%%/ArgTools/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/ArgTools/README.md
+%%DATADIR%%/stdlib/v%%VERSION%%/ArgTools/src/ArgTools.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/ArgTools/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Artifacts/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Artifacts/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Artifacts/src/Artifacts.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Artifacts/test/Artifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Artifacts/test/refresh_artifacts.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Artifacts/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Base64/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Base64/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Base64/src/Base64.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Base64/src/buffer.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Base64/src/decode.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Base64/src/encode.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Base64/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/CRC32c/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/CRC32c/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/CRC32c/src/CRC32c.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/CRC32c/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/CompilerSupportLibraries_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/CompilerSupportLibraries_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/CompilerSupportLibraries_jll/src/CompilerSupportLibraries_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/CompilerSupportLibraries_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/Dates.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/accessors.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/adjusters.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/arithmetic.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/conversions.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/deprecated.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/io.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/parse.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/periods.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/query.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/ranges.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/rounding.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/src/types.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/accessors.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/adjusters.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/arithmetic.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/conversions.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/io.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/periods.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/query.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/ranges.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/rounding.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/testgroups
+%%DATADIR%%/stdlib/v%%VERSION%%/Dates/test/types.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/DelimitedFiles/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/DelimitedFiles/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/DelimitedFiles/src/DelimitedFiles.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/DelimitedFiles/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/Distributed.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/cluster.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/clusterserialize.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/macros.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/managers.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/messages.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/pmap.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/process_messages.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/remotecall.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/src/workerpool.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/test/distributed_exec.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/test/includefile.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/test/managers.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/test/splitrange.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Distributed/test/topology.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/.ci/change-uuid.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/LICENSE
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/README.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/src/Curl/Curl.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/src/Curl/Easy.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/src/Curl/Multi.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/src/Curl/utils.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/src/Downloads.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/test/json.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Downloads/test/setup.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/FileWatching/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/FileWatching/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/FileWatching/src/FileWatching.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/FileWatching/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Future/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Future/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Future/src/Future.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Future/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/GMP_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/GMP_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/GMP_jll/src/GMP_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/GMP_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/src/InteractiveUtils.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/src/clipboard.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/src/codeview.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/src/editless.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/src/macros.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/test/highlighting.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/InteractiveUtils/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LLVMLibUnwind_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LLVMLibUnwind_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LLVMLibUnwind_jll/src/LLVMLibUnwind_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LLVMLibUnwind_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LazyArtifacts/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LazyArtifacts/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/LazyArtifacts/src/LazyArtifacts.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LazyArtifacts/test/Artifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LazyArtifacts/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/LICENSE.md
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/README.md
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/gen/generate.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/src/LibCURL.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/src/Mime_ext.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/src/lC_common_h.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/src/lC_curl_h.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/src/lC_defines_h.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/src/lC_exports_h.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL/test/ssl.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL_jll/src/LibCURL_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibCURL_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/LibGit2.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/blame.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/blob.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/callbacks.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/commit.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/config.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/consts.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/diff.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/error.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/gitcredential.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/index.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/merge.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/oid.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/rebase.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/reference.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/remote.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/repository.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/signature.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/status.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/strarray.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/tag.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/tree.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/types.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/types.jl.orig
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/utils.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/src/walker.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/bad_ca_roots.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/bad_ca_roots.pem
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/keys/invalid
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/keys/invalid.pub
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/keys/valid
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/keys/valid-passphrase
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/keys/valid-passphrase.pub
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/keys/valid.pub
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/known_hosts
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/libgit2-helpers.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/libgit2.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/online.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2/test/testgroups
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2_jll/src/LibGit2_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2_jll/src/LibGit2_jll.jl.orig
+%%DATADIR%%/stdlib/v%%VERSION%%/LibGit2_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibSSH2_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibSSH2_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibSSH2_jll/src/LibSSH2_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibSSH2_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUV_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUV_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUV_jll/src/LibUV_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUV_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUnwind_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUnwind_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUnwind_jll/src/LibUnwind_jll.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LibUnwind_jll/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Libdl/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Libdl/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Libdl/src/Libdl.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Libdl/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/LinearAlgebra.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/adjtrans.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/bidiag.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/bitarray.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/blas.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/bunchkaufman.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/cholesky.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/dense.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/deprecated.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/diagonal.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/eigen.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/exceptions.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/factorization.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/generic.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/givens.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/hessenberg.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/lapack.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/lbt.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/ldlt.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/lq.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/lu.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/matmul.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/qr.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/schur.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/special.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/structuredbroadcast.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/svd.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/symmetric.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/symmetriceigen.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/transpose.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/triangular.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/tridiag.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/src/uniformscaling.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/addmul.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/adjtrans.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/ambiguous_exec.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/bidiag.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/blas.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/bunchkaufman.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/cholesky.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/dense.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/diagonal.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/eigen.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/factorization.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/generic.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/givens.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/hessenberg.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/lapack.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/ldlt.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/lq.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/lu.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/matmul.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/pinv.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/qr.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/schur.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/special.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/structuredbroadcast.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/svd.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/symmetric.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/testgroups
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/testutils.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/triangular.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/trickyarithmetic.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/tridiag.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/LinearAlgebra/test/uniformscaling.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Logging/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/Logging/docs/src/index.md
+%%DATADIR%%/stdlib/v%%VERSION%%/Logging/src/ConsoleLogger.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Logging/src/Logging.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/Logging/test/runtests.jl
+%%DATADIR%%/stdlib/v%%VERSION%%/MPFR_jll/Project.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/MPFR_jll/StdlibArtifacts.toml
+%%DATADIR%%/stdlib/v%%VERSION%%/MPFR_jll/src/MPFR_jll.jl
*** 1081 LINES SKIPPED ***