diff --git a/build.profile b/build.profile index 04429da..a0935a0 100644 --- a/build.profile +++ b/build.profile @@ -1,6 +1,6 @@ -BUILD_TAG=2.11.2 +BUILD_TAG=2.12.1 -BUILD_paperless=paperless-ngx-2.11.2 +BUILD_paperless=paperless-ngx-2.12.1 BUILD_DIR=build BUILD_SRC="${PWD}" @@ -16,11 +16,11 @@ TMPDIR=${TMPDIR:-/tmp/${USER}/${BUILD_TAG}} LOGDIR=${PROJECT}/log # https://sqlite.org -# wget "https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz" -BUILD_sqlite=sqlite-3.46.0 -BUILD_sqlite_SRCURL="https://beehive.molgen.mpg.de/ff687dfc7483196420a4f16a6f53702d/sqlite-autoconf-3460000.tar.gz" +# wget "https://sqlite.org/2024/sqlite-autoconf-3460100.tar.gz" +BUILD_sqlite=sqlite-3.46.1 +BUILD_sqlite_SRCURL="https://beehive.molgen.mpg.de/bde7df8c2a4bce82dbf42f7e4dda0e21/sqlite-autoconf-3460100.tar.gz" -# https://download.redis.io/releases +# https://download.redis.io/releases # community edition ! # wget https://download.redis.io/releases/redis-7.4.0.tar.gz BUILD_redis=redis-7.4.0 BUILD_redis_SRCURL="https://beehive.molgen.mpg.de/91fdc125557cdf5db2d744ffb133a111/${BUILD_redis}.tar.gz" @@ -29,9 +29,9 @@ BUILD_redis_SRCURL="https://beehive.molgen.mpg.de/91fdc125557cdf5db2d744ffb133a1 BUILD_python=Python-3.11.9 BUILD_python_SRCURL="https://beehive.molgen.mpg.de/bfd4d3bfeac4216ce35d7a503bf02d5c/${BUILD_python}.tgz" -# wget "https://nodejs.org/download/release/v20.16.0/node-v20.16.0.tar.gz" -BUILD_node=node-20.16.0 -BUILD_node_SRCURL="https://beehive.molgen.mpg.de/773400dfe52752bc0bf4607b18560964/${BUILD_node/-/-v}.tar.gz" +# wget "https://nodejs.org/download/release/v20.17.0/node-v20.17.0.tar.gz" +BUILD_node=node-20.17.0 +BUILD_node_SRCURL="https://beehive.molgen.mpg.de/7a1c39b0cdac9443319eb6d69ed855d4/${BUILD_node/-/-v}.tar.gz" # SRCURL="https://ffmpeg.org//releases/${BUILD_ffmpeg}.tar.gz" BUILD_ffmpeg=ffmpeg-7.0.1 @@ -54,7 +54,7 @@ BUILD_libfontttf=liberation-fonts-ttf-2.1.5 BUILD_libfontttf_SRCURL="https://beehive.molgen.mpg.de/31b453e0b77bacde410a34a725b34f8a/${BUILD_libfontttf}.tar.gz" # gits -BUILD_imagemagick=imagemagick-7.1.1-36 +BUILD_imagemagick=imagemagick-7.1.1-38 BUILD_imagemagick_SRCURL="https://github.com/ImageMagick/ImageMagick.git" BUILD_pngquant=pngquant-3.0.3-6-g9a4952d diff --git a/checkversions.sh b/checkversions.sh index 2c690d0..a3ff65b 100755 --- a/checkversions.sh +++ b/checkversions.sh @@ -92,6 +92,10 @@ if [[ -e "$PROJECT"/profile ]]; then ffmpeg -version | head -1 | cut -d' ' -f3 mtype ffmpeg } + function exec_BUILD_imagemagick () { + magick --version | head -1 | cut -d' ' -f3 + mtype magick + } function exec_BUILD_unpaper () { unpaper --version | head -1 mtype unpaper @@ -181,12 +185,12 @@ function version() { B=$(eval eval echo \\$\${Bi}) shift # printf "%-s\n" "$Bi" - printf "#### %32s\n" "$B" + printf "#### %26s\n" "$B" if [[ $(type -t exec_${Bi}) = 'function' ]]; then # printf " exe %32s %s\n" "$(exec_${Bi}|tr '\n' ' ')" v=$(exec_${Bi}|tr '\n' ' ') - printf " exe %32s %s\n" $v + printf " exe %26s %s\n" $v else : # printf "no exec_()\n" fi @@ -194,7 +198,7 @@ function version() { if [[ $(type -t version_${Bi}) = 'function' ]]; then # v=$(version_${Bi}|tr '\n' ' ') v=$(version_${Bi}) - printf " ver %32s %s\n" $v + printf " ver %26s %s\n" $v else printf "no version_()\n" fi