Received: by mail.netbsd.org (Postfix, from userid 605) id A522684F01; Sun, 14 May 2023 14:52:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D41AB84EFE for ; Sun, 14 May 2023 14:52:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 2aZ5OAYTUdAp for ; Sun, 14 May 2023 14:52:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2351584CEE for ; Sun, 14 May 2023 14:52:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1097DFA87; Sun, 14 May 2023 14:52:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168407596641800" MIME-Version: 1.0 Date: Sun, 14 May 2023 14:52:46 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230514145246.1097DFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168407596641800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun May 14 14:52:45 UTC 2023 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php81: Makefile distinfo Log Message: lang/php81: update to 8.1.19 11 May 2023, PHP 8.1.19 - Core: . Fix inconsistent float negation in constant expressions. (ilutov) . Fixed bug GH-8841 (php-cli core dump calling a badly formed function). (nielsdos) . Fixed bug GH-10737 (PHP 8.1.16 segfaults on line 597 of sapi/apache2handler/sapi_apache2.c). (nielsdos, ElliotNB) . Fixed bug GH-11028 (Heap Buffer Overflow in zval_undefined_cv.). (nielsdos) . Fixed bug GH-11108 (Incorrect CG(memoize_mode) state after bailout in ??=). (ilutov) - DOM: . Fixed bug #80602 (Segfault when using DOMChildNode::before()). (Nathan Freeman) . Fixed incorrect error handling in dom_zvals_to_fragment(). (nielsdos) - Exif: . Fixed bug GH-9397 (exif read : warnings and errors : Potentially invalid endianess, Illegal IFD size and Undefined index). (nielsdos) - Intl: . Fixed bug GH-11071 (TZData version not displayed anymore). (Remi) - PCRE: . Fixed bug GH-10968 (Segfault in preg_replace_callback_array()). (ilutov) - Standard: . Fixed bug GH-10990 (mail() throws TypeError after iterating over $additional_headers array by reference). (nielsdos) . Fixed bug GH-9775 (Duplicates returned by array_unique when using enums). (ilutov) To generate a diff of this commit: cvs rdiff -u -r1.396 -r1.397 pkgsrc/lang/php/phpversion.mk cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/php81/Makefile cvs rdiff -u -r1.22 -r1.23 pkgsrc/lang/php81/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168407596641800 Content-Disposition: inline Content-Length: 2498 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/php/phpversion.mk diff -u pkgsrc/lang/php/phpversion.mk:1.396 pkgsrc/lang/php/phpversion.mk:1.397 --- pkgsrc/lang/php/phpversion.mk:1.396 Sun May 14 14:46:15 2023 +++ pkgsrc/lang/php/phpversion.mk Sun May 14 14:52:45 2023 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.396 2023/05/14 14:46:15 taca Exp $ +# $NetBSD: phpversion.mk,v 1.397 2023/05/14 14:52:45 taca Exp $ # # This file selects a PHP version, based on the user's preferences and # the installed packages. It does not add a dependency on the PHP @@ -90,7 +90,7 @@ PHPVERSION_MK= defined PHP56_VERSION= 5.6.40 PHP74_VERSION= 7.4.33 PHP80_VERSION= 8.0.28 -PHP81_VERSION= 8.1.18 +PHP81_VERSION= 8.1.19 PHP82_VERSION= 8.2.6 # Define API version or initial release of major version. Index: pkgsrc/lang/php81/Makefile diff -u pkgsrc/lang/php81/Makefile:1.15 pkgsrc/lang/php81/Makefile:1.16 --- pkgsrc/lang/php81/Makefile:1.15 Wed Apr 19 08:08:28 2023 +++ pkgsrc/lang/php81/Makefile Sun May 14 14:52:45 2023 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.15 2023/04/19 08:08:28 adam Exp $ +# $NetBSD: Makefile,v 1.16 2023/05/14 14:52:45 taca Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. # PKGNAME= php-${PHP_VERSION:S/RC/rc/} -PKGREVISION= 1 COMMENT= PHP Hypertext Preprocessor version 8.1 LICENSE= php Index: pkgsrc/lang/php81/distinfo diff -u pkgsrc/lang/php81/distinfo:1.22 pkgsrc/lang/php81/distinfo:1.23 --- pkgsrc/lang/php81/distinfo:1.22 Sat Apr 15 02:19:13 2023 +++ pkgsrc/lang/php81/distinfo Sun May 14 14:52:45 2023 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.22 2023/04/15 02:19:13 taca Exp $ +$NetBSD: distinfo,v 1.23 2023/05/14 14:52:45 taca Exp $ -BLAKE2s (php-8.1.18.tar.xz) = bd083314dbd93c65225951fc0c24da991aa44b459f2c23c1535e7aed78d146d5 -SHA512 (php-8.1.18.tar.xz) = e30dba23ab8711a04c21ad040d69807f479760a20f363fe3f91a297e9e6463d9558299b15231e00e2b1c95d03309e03bde8cbbe4043fce3e1b965236ece1d0f3 -Size (php-8.1.18.tar.xz) = 11782240 bytes +BLAKE2s (php-8.1.19.tar.xz) = 0ba8e59d522e678b3812e751b7c07fe15cdf7aa8a08cf81196d5db7204679770 +SHA512 (php-8.1.19.tar.xz) = 37c27cc627f59b4fdb1242287b58e1b7a2c266696a5a3baa0047445c9b122721187fbc233799c7f57cfc1732b27e67761fd3fd43b89a7ad216ea154a90913999 +Size (php-8.1.19.tar.xz) = 11847576 bytes SHA1 (patch-build_libtool.m4) = e58a2bcebe9e9d7dc7255354fd9fe57878e3f8a6 SHA1 (patch-configure) = e91e22267a9b7ebcc16a586ba6f325c772adb13c SHA1 (patch-disable-filter-url) = 0a2c19c18f089448a8d842e99738b292ab9e5640 --_----------=_168407596641800--