pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/php83
Module Name: pkgsrc
Committed By: taca
Date: Sun Mar 17 16:48:20 UTC 2024
Modified Files:
pkgsrc/lang/php83: distinfo
pkgsrc/lang/php83/patches: patch-configure
Log Message:
lang/php83: update to 8.3.4
PHP 8.3.4 (2024-03-14)
- Core:
. Fix ZTS persistent resource crashes on shutdown. (nielsdos)
- Curl:
. Fix failing tests due to string changes in libcurl 8.6.0. (Ayesh)
- DOM:
. Fix unlikely memory leak in case of namespace removal with extremely deep
trees. (nielsdos)
. Fix reference access in dimensions for DOMNodeList and DOMNodeMap.
(nielsdos)
- Fileinfo:
. Fixed bug GH-13344 (finfo::buffer(): Failed identify data 0:(null),
backport). (nielsdos)
- FPM:
. Fixed bug #75712 (getenv in php-fpm should not read $_ENV, $_SERVER).
(Jakub Zelenka)
- GD:
. Fixed bug GH-12019 (detection of image formats in system gd library).
(Michael Orlitzky)
- MySQLnd:
. Fixed bug GH-11950 ([mysqlnd] Fixed not to set CR_MALFORMED_PACKET to error
if CR_SERVER_GONE_ERROR is already set). (Saki Takamachi)
- PDO:
. Fix various PDORow bugs. (Girgias)
- PGSQL:
. Fixed bug GH-13354 (pg_execute/pg_send_query_params/pg_send_execute
with null value passed by reference). (George Barbarosie)
- SPL:
. Fixed bug GH-13531 (Unable to resize SplfixedArray after being unserialized
in PHP 8.2.15). (nielsdos)
- Standard:
. Fixed bug GH-13279 (Instable array during in-place modification in uksort).
(ilutov)
. Fixed array key as hash to string (case insensitive) comparison typo
for the second operand buffer size (albeit unused for now). (A. Slepykh)
- XML:
. Fixed bug GH-13517 (Multiple test failures when building with
--with-expat). (nielsdos)
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/php83/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/php83/patches/patch-configure
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/php83/distinfo
diff -u pkgsrc/lang/php83/distinfo:1.4 pkgsrc/lang/php83/distinfo:1.5
--- pkgsrc/lang/php83/distinfo:1.4 Fri Feb 16 13:15:19 2024
+++ pkgsrc/lang/php83/distinfo Sun Mar 17 16:48:19 2024
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.4 2024/02/16 13:15:19 taca Exp $
+$NetBSD: distinfo,v 1.5 2024/03/17 16:48:19 taca Exp $
-BLAKE2s (php-8.3.3.tar.xz) = cfa8082530bbfda9b5cf8f780bbfe6bd0c75064c5bee1270f6b1f109d1604cfc
-SHA512 (php-8.3.3.tar.xz) = 42141cc46b6abb11fa51cc96c34424cbf9990150b973d84488fa39a07935b22552a1316978f5a4e48762bf3c94eee3d7dfe741c4ee1a12bf752ce1c2660cc8b0
-Size (php-8.3.3.tar.xz) = 12463880 bytes
-SHA1 (patch-configure) = 7f8b996d6f16671c28607da64dca737fe5f49406
+BLAKE2s (php-8.3.4.tar.xz) = 4502a9122864f77bc8f05f46717796f637fee78b002c5c10b179a01a332bc9ea
+SHA512 (php-8.3.4.tar.xz) = 7254421c57de6c8f9f84079212ead38b397e053ad2dc202bd4e0c9d63aa5d9884a6a856fb93fcdbc9e671051436814188439bc5de480979e53fdcb5488cdc321
+Size (php-8.3.4.tar.xz) = 12443980 bytes
+SHA1 (patch-configure) = c6c1657a10caeca4f9c2abf5e66f8fa16e5feca1
SHA1 (patch-ext_enchant_enchant.c) = 7d999de1b2fde2ea11e4a6e16e7b59c085924b9b
SHA1 (patch-ext_phar_Makefile.frag) = 53ea5c58b0bc27d236118d5750a74b1cba43e5dd
SHA1 (patch-ext_standard_php__fopen__wrapper.c) = 0a2c19c18f089448a8d842e99738b292ab9e5640
Index: pkgsrc/lang/php83/patches/patch-configure
diff -u pkgsrc/lang/php83/patches/patch-configure:1.2 pkgsrc/lang/php83/patches/patch-configure:1.3
--- pkgsrc/lang/php83/patches/patch-configure:1.2 Fri Feb 16 13:15:20 2024
+++ pkgsrc/lang/php83/patches/patch-configure Sun Mar 17 16:48:19 2024
@@ -1,12 +1,12 @@
-$NetBSD: patch-configure,v 1.2 2024/02/16 13:15:20 taca Exp $
+$NetBSD: patch-configure,v 1.3 2024/03/17 16:48:19 taca Exp $
* Do not include "PKG_CONFIG*" in CONFIGURE_OPTIONS.
* Don't autodetect maintainer-zts.
* Shell portability.
---- configure.orig 2024-02-13 15:41:14.000000000 +0000
+--- configure.orig 2024-03-12 23:42:26.000000000 +0000
+++ configure
-@@ -4326,6 +4326,10 @@ EOF
+@@ -3735,6 +3735,10 @@ EOF
else
break
fi
@@ -14,10 +14,10 @@ $NetBSD: patch-configure,v 1.2 2024/02/1
+ \'PKG_CONFIG\=*) CURRENT_ARG="'PKG_CONFIG=@TOOLS_PATH.pkg-config@'";;
+ \'PKG_CONFIG_LIBDIR\=*) CURRENT_ARG="'PKG_CONFIG_LIBDIR=@PHP_PKGCONFIG_PATH@'";;
+ esac
- printf "%s\n" "$CURRENT_ARG \\" >>config.nice
+ $as_echo "$CURRENT_ARG \\" >>config.nice
CONFIGURE_OPTIONS="$CONFIGURE_OPTIONS $CURRENT_ARG"
done
-@@ -7548,30 +7552,6 @@ EOF
+@@ -7016,30 +7020,6 @@ EOF
;;
esac
@@ -42,18 +42,18 @@ $NetBSD: patch-configure,v 1.2 2024/02/1
-
- fi
- fi
-- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
--printf "%s\n" "yes" >&6; }
+- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+-$as_echo "yes" >&6; }
-
PHP_VAR_SUBST="$PHP_VAR_SUBST APXS"
else
-@@ -81076,7 +81056,7 @@ printf "%s\n" "#define HAVE_TIDYBUFFIO_H
+@@ -77760,7 +77740,7 @@ $as_echo "#define HAVE_TIDYBUFFIO_H 1" >
fi
TIDY_LIBDIR=$TIDY_DIR/$PHP_LIBDIR
- if test "$TIDY_LIB_NAME" == 'tidyp'; then
+ if test "$TIDY_LIB_NAME" = 'tidyp'; then
- printf "%s\n" "#define HAVE_TIDYP_H 1" >>confdefs.h
+ $as_echo "#define HAVE_TIDYP_H 1" >>confdefs.h
Home |
Main Index |
Thread Index |
Old Index