python3.12: Fix sbolint

This commit is contained in:
2025-08-22 13:56:48 +02:00
parent d43c3be74f
commit ad932aa5f9
3 changed files with 3 additions and 5 deletions

4
python3.12/python3.12.SlackBuild Executable file → Normal file
View File

@@ -30,12 +30,10 @@ BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) export ARCH=i686 ;;
arm*) export ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) export ARCH=$( uname -m ) ;;
esac
fi
@@ -48,7 +46,7 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
exit 0
fi
TMP=${TMP:-/tmp}
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}

View File

@@ -1,4 +1,4 @@
PRGNAM="python3"
PRGNAM="python3.12"
VERSION="3.12.11"
HOMEPAGE="https://www.python.org/"
DOWNLOAD="https://www.python.org/ftp/python/3.12.11/Python-3.12.11.tar.xz"