From 1b0be89766589ebb4d3fe6931e1fea4f5a250822 Mon Sep 17 00:00:00 2001 From: philippe lhardy Date: Sat, 1 Nov 2025 23:35:33 +0100 Subject: [PATCH] fix dependencies and BUILD.md for public build Signed-off-by: philippe lhardy --- .resources.var | 0 BUILD.md | 2 +- fetch_dependencies.sh | 7 ++++--- 3 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 .resources.var diff --git a/.resources.var b/.resources.var new file mode 100644 index 0000000..e69de29 diff --git a/BUILD.md b/BUILD.md index e6b844e..d93a23f 100644 --- a/BUILD.md +++ b/BUILD.md @@ -10,7 +10,7 @@ within same directory as this BUILD.md : ``` # ./doit.sh # depends on sharedrawweb for stl export -./fetch_dependencies.sh +./fetch_dependencies.sh use_zstd ant dist ``` diff --git a/fetch_dependencies.sh b/fetch_dependencies.sh index 06915be..9d745fa 100755 --- a/fetch_dependencies.sh +++ b/fetch_dependencies.sh @@ -36,7 +36,7 @@ fetch_zstd-jni() # HARDCODED START libversion_zstdjni=1.5.2-2 libversion_jackson_databind=2.12.0 -sharedrawweb_git_url="ssh://git@www4.artisanlogiciel.net:2023/home/git/artisanlogiciel/code/sharedrawweb" +sharedrawweb_git_url="https://framagit.org/artlog/sharedrawweb.git" libversion_artgaphic=0.2.0 # HARDCODED END lib_artgaphic=artgaphics-${libversion_artgaphic}.jar @@ -77,13 +77,14 @@ libversion_artgaphic=0.2.0 lib_artgaphic=artgaphics-${libversion_artgaphic}.jar if [[ ! -e libs/$lib_artgaphic ]] then - lib_artgaphic_source_file=../sharedrawweb/dist/lib/$lib_artgaphic + lib_artgaphic_source_file=sharedrawweb/dist/lib/$lib_artgaphic if [[ -f $lib_artgaphic_source_file ]] then # ../ since libs is one level below current project $metarun ln -s ../$lib_artgaphic_source_file libs/ else - log_error "Missing $lib_artgaphic_source_file. It is require to build it sharedrawweb project first" + log_error "Missing $lib_artgaphic_source_file" + log_info "It is required to build sharedrawweb project first" fi fi