php82: Updated to 8.2.2

This commit is contained in:
Eugen Wissner 2023-02-04 10:55:21 +01:00
parent 6719d2d81d
commit 49cb7d27eb
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0
3 changed files with 10 additions and 7 deletions

View File

@ -4,4 +4,6 @@ this language is to make a fast and easy-to-use scripting language for
dynamic web sites.
This installation is compatible with the official php package and
doesn't overwrit any stock files.
doesn't overwrite any stock files.
This script doesn't build mod_php.

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Build and package PHP FPM 8.2
# Copyright 2022 Eugene Wissner, Germany, Dachau
# Copyright 2023 Eugene Wissner, Germany, Dachau
#
# by: David Cantrell <david@slackware.com>
# Modified for PHP 4-5 by volkerdi@slackware.com
@ -28,7 +28,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=php82
VERSION=${VERSION:-8.2.1}
VERSION=${VERSION:-8.2.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -51,7 +51,7 @@ if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
exit 0
fi
TMP=${TMP:-/tmp}
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
@ -206,6 +206,7 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r
rm -r $PKG/usr/share/fpm $PKG/usr/bin/pear $PKG/usr/bin/peardev
mv $PKG/usr/bin/pecl $PKG/usr/bin/pecl-${VERSION_SUFFIX}
install -m 644 php.ini-development php.ini-production $PKG/etc/php/8.2/
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \

View File

@ -1,8 +1,8 @@
PRGNAM="php82"
VERSION="8.2.1"
VERSION="8.2.2"
HOMEPAGE="https://www.php.net/"
DOWNLOAD="https://www.php.net/distributions/php-8.2.1.tar.xz"
MD5SUM="b30961d64b35fe4c6727ee3add54d16e"
DOWNLOAD="https://www.php.net/distributions/php-8.2.2.tar.xz"
MD5SUM="fa93816863003f4908f638a3fd7757ac"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="postgresql"