Skip to content

paperless-ngx: update 2.11.2 to 2.12.1 #58

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions build.profile
Original file line number Diff line number Diff line change
@@ -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}"
Expand All @@ -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"
Expand All @@ -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
Expand All @@ -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
Expand Down
10 changes: 7 additions & 3 deletions checkversions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -181,20 +185,20 @@ 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

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
Expand Down