Skip to content

update Python, sqlite, node, unpaper #22

Merged
merged 1 commit into from Apr 8, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Python.build.sh
Expand Up @@ -11,8 +11,8 @@ set -u
function B_PYTHON {

# apt install libbz2-dev
# wget "https://www.python.org/ftp/python/3.11.8/Python-3.11.8.tgz"
SRCURL="https://beehive.molgen.mpg.de/7fb0bfaa2f6aae4aadcdb51abe957825/Python-3.11.8.tgz"
# wget "https://www.python.org/ftp/python/3.11.9/Python-3.11.9.tgz"
SRCURL[0]="https://beehive.molgen.mpg.de/bfd4d3bfeac4216ce35d7a503bf02d5c/Python-3.11.9.tgz"

BUILD_PKG=${BUILD_python}

Expand Down
10 changes: 5 additions & 5 deletions build.profile
@@ -1,4 +1,4 @@
BUILD_TAG=2.6.3
BUILD_TAG=2.6.3.1

. build.local

Expand All @@ -10,13 +10,13 @@ XDG_CACHE_HOME=${PREFIX}/cache
TMPDIR=${TMPDIR:-/tmp/${USER}/${BUILD_TAG}}
LOGDIR=${PROJECT}/log

BUILD_sqlite=sqlite-3.45.1
BUILD_sqlite=sqlite-3.45.2
BUILD_redis=redis-7.2.4
BUILD_python=Python-3.11.8
BUILD_node=node-20.11.0
BUILD_python=Python-3.11.9
BUILD_node=node-20.12.1
BUILD_ffmpeg=ffmpeg-6.1.1
BUILD_pngquant=pngquant-3.0.3-2-g88da53e
BUILD_unpaper=unpaper-7.0.0-99-gf41e9bb
BUILD_unpaper=unpaper-7.0.0-125-gfe89949
BUILD_zbar=zbar-0.23.93
BUILD_leptonica=leptonica-1.84.1
BUILD_tesseract=tesseract-5.3.4
Expand Down
4 changes: 2 additions & 2 deletions node.build.sh
Expand Up @@ -13,8 +13,8 @@ function B_NODEJS {

[ -d "$PREFIX" ] || { echo "PREFIX unset or not a directory";exit; }

# wget "https://nodejs.org/download/release/v20.11.0/node-v20.11.0.tar.gz"
SRCURL="https://beehive.molgen.mpg.de/94db35ddc577e52d15a6e242260beea7/node-v20.11.0.tar.gz"
# wget "https://nodejs.org/download/release/v20.12.1/node-v20.12.1.tar.gz"
SRCURL="https://beehive.molgen.mpg.de/af39db839afb8f3f7fb1914e329a68a4/node-v20.12.1.tar.gz"

PREFIX=${PREFIX}/${BUILD_node}

Expand Down
4 changes: 2 additions & 2 deletions sqlite.build.sh
Expand Up @@ -8,8 +8,8 @@ set -u

function B_SQLITE {

# SRCURL[0]="https://sqlite.org/2024/sqlite-autoconf-3450100.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/743c99f996add46273694df83c9140d4/sqlite-3.45.1.tar.gz"
SRCURL[0]="https://sqlite.org/2024/sqlite-autoconf-3450200.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/96b74d1c5d869b2f3982cfa69291c8a5/sqlite-3.45.2.tar.gz"

PKGARC=${SRCURL##*.*/}
PKGVER=${PKGARC%.*.*}
Expand Down