Received: by mail.netbsd.org (Postfix, from userid 605) id E9D6784E5A; Fri, 25 Nov 2022 16:53:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2193F84E5A for ; Fri, 25 Nov 2022 16:53:14 +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 MwJC_JzMMnsl for ; Fri, 25 Nov 2022 16:53:13 +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 6138684CD9 for ; Fri, 25 Nov 2022 16:53:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4FF0DFA90; Fri, 25 Nov 2022 16:53:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1669395193290770" MIME-Version: 1.0 Date: Fri, 25 Nov 2022 16:53:13 +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: <20221125165313.4FF0DFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1669395193290770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Fri Nov 25 16:53:13 UTC 2022 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php81: Makefile distinfo Log Message: lang/php81: update to 8.1.13 8.1.13 (2022-11-24) - CLI: . Fixed bug GH-9709 (Null pointer dereference with -w/-s options). (Adam Saponara) - Core: . Fixed bug GH-9752 (Generator crashes when interrupted during argument evaluation with extra named params). (Arnaud) . Fixed bug GH-9801 (Generator crashes when memory limit is exceeded during initialization). (Arnaud) . Fixed potential NULL pointer dereference Windows shm*() functions. (cmb) . Fixed bug GH-9750 (Generator memory leak when interrupted during argument evaluation. (Arnaud) - Date: . Fixed bug GH-9763 (DateTimeZone ctr mishandles input and adds null byte if the argument is an offset larger than 100*60 minutes). (Derick) - FPM: . Fixed bug GH-9754 (SaltStack (using Python subprocess) hangs when running php-fpm 8.1.11). (Jakub Zelenka) - mysqli: . Fixed bug GH-9841 (mysqli_query throws warning despite using silenced error mode). (Kamil Tekiela) - MySQLnd: . Fixed potential heap corruption due to alignment mismatch. (cmb) - OpenSSL: . Fixed bug GH-8430 (OpenSSL compiled with no-md2, no-md4 or no-rmd160 does not build). (Jakub Zelenka, fsbruva) - SOAP: . Fixed GH-9720 (Null pointer dereference while serializing the response). (cmb) To generate a diff of this commit: cvs rdiff -u -r1.380 -r1.381 pkgsrc/lang/php/phpversion.mk cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/php81/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/lang/php81/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1669395193290770 Content-Disposition: inline Content-Length: 2483 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.380 pkgsrc/lang/php/phpversion.mk:1.381 --- pkgsrc/lang/php/phpversion.mk:1.380 Fri Nov 4 00:40:58 2022 +++ pkgsrc/lang/php/phpversion.mk Fri Nov 25 16:53:13 2022 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.380 2022/11/04 00:40:58 taca Exp $ +# $NetBSD: phpversion.mk,v 1.381 2022/11/25 16:53:13 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.25 -PHP81_VERSION= 8.1.12 +PHP81_VERSION= 8.1.13 # Define initial release of major version. PHP56_RELDATE= 20140828 Index: pkgsrc/lang/php81/Makefile diff -u pkgsrc/lang/php81/Makefile:1.9 pkgsrc/lang/php81/Makefile:1.10 --- pkgsrc/lang/php81/Makefile:1.9 Wed Nov 23 16:18:50 2022 +++ pkgsrc/lang/php81/Makefile Fri Nov 25 16:53:13 2022 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.9 2022/11/23 16:18:50 adam Exp $ +# $NetBSD: Makefile,v 1.10 2022/11/25 16:53:13 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.14 pkgsrc/lang/php81/distinfo:1.15 --- pkgsrc/lang/php81/distinfo:1.14 Sun Oct 30 10:16:24 2022 +++ pkgsrc/lang/php81/distinfo Fri Nov 25 16:53:13 2022 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.14 2022/10/30 10:16:24 taca Exp $ +$NetBSD: distinfo,v 1.15 2022/11/25 16:53:13 taca Exp $ -BLAKE2s (php-8.1.12.tar.xz) = 02b83ec30079831a2aff20d87b264bc73808feffed9acadb03ef9252fc37b3dc -SHA512 (php-8.1.12.tar.xz) = 437b6a8146b58479f4d1acb7b35d68954f1f7bc13a8f3dddc66e1677d7e9b6a11154861f9e894cbd59b9c28d4df3fd5422f9b5553004e9fc8d0320ab59b9f907 -Size (php-8.1.12.tar.xz) = 11747176 bytes +BLAKE2s (php-8.1.13.tar.xz) = 1c9669c505645ba60827a2610469fde932d55f71ef42510af5a6f003c3b16bef +SHA512 (php-8.1.13.tar.xz) = a8966798ed8e723a362952f9d381a59cbfd63d921466d68a5bc4527960f4fe1b48a1f188284c74b0723e93524787e4cf1c1322ecd6ec1c9be199fd67df0a0542 +Size (php-8.1.13.tar.xz) = 11802424 bytes SHA1 (patch-build_libtool.m4) = e58a2bcebe9e9d7dc7255354fd9fe57878e3f8a6 SHA1 (patch-configure) = e91e22267a9b7ebcc16a586ba6f325c772adb13c SHA1 (patch-disable-filter-url) = 0a2c19c18f089448a8d842e99738b292ab9e5640 --_----------=_1669395193290770--