Received: by mail.netbsd.org (Postfix, from userid 605) id E4AB484E97; Tue, 12 Mar 2019 04:15:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6C29484D75 for ; Tue, 12 Mar 2019 04:15:04 +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 guvew0DsPRaN for ; Tue, 12 Mar 2019 04:15:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 931CB84CCF for ; Tue, 12 Mar 2019 04:15:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91011FB16; Tue, 12 Mar 2019 04:15:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155236410373490" MIME-Version: 1.0 Date: Tue, 12 Mar 2019 04:15:03 +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: <20190312041503.91011FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155236410373490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Tue Mar 12 04:15:03 UTC 2019 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php73: Makefile distinfo Log Message: lang/php73: update to 7.3.3 Update php73 to 7.3.3. 07 Mar 2019, PHP 7.3.3 - Core: . Fixed bug #77589 (Core dump using parse_ini_string with numeric sections). (Laruence) . Fixed bug #77329 (Buffer Overflow via overly long Error Messages). (Dmitry) . Fixed bug #77494 (Disabling class causes segfault on member access). (Dmitry) . Fixed bug #77498 (Custom extension Segmentation fault when declare static property). (Nikita) . Fixed bug #77530 (PHP crashes when parsing `(2)::class`). (Ekin) . Fixed bug #77546 (iptcembed broken function). (gdegoulet) . Fixed bug #77630 (rename() across the device may allow unwanted access during processing). (Stas) - COM: . Fixed bug #77621 (Already defined constants are not properly reported). (cmb) . Fixed bug #77626 (Persistence confusion in php_com_import_typelib()). (cmb) - EXIF: . Fixed bug #77509 (Uninitialized read in exif_process_IFD_in_TIFF). (Stas) . Fixed bug #77540 (Invalid Read on exif_process_SOFn). (Stas) . Fixed bug #77563 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) . Fixed bug #77659 (Uninitialized read in exif_process_IFD_in_MAKERNOTE). (Stas) - Mbstring: . Fixed bug #77514 (mb_ereg_replace() with trailing backslash adds null byte). (Nikita) - MySQL . Disabled LOCAL INFILE by default, can be enabled using php.ini directive mysqli.allow_local_infile for mysqli, or PDO::MYSQL_ATTR_LOCAL_INFILE attribute for pdo_mysql. (Darek Slusarczyk) - OpenSSL: . Fixed bug #77390 (feof might hang on TLS streams in case of fragmented TLS records). (Abyl Valg, Jakub Zelenka) - PDO_OCI: . Support Oracle Database tracing attributes ACTION, MODULE, CLIENT_INFO, and CLIENT_IDENTIFIER. (Cameron Porter) - PHAR: . Fixed bug #77396 (Null Pointer Dereference in phar_create_or_parse_filename). (bishop) . Fixed bug #77586 (phar_tar_writeheaders_int() buffer overflow). (bishop) - phpdbg: . Fixed bug #76596 (phpdbg support for display_errors=stderr). (kabel) - SPL: . Fixed bug #51068 (DirectoryIterator glob:// don't support current path relative queries). (Ahmed Abdou) . Fixed bug #77431 (openFile() silently truncates after a null byte). (cmb) - Standard: . Fixed bug #77552 (Unintialized php_stream_statbuf in stat functions). (John Stevenson) . Fixed bug #77612 (setcookie() sets incorrect SameSite header if all of its options filled). (Nikita) To generate a diff of this commit: cvs rdiff -u -r1.250 -r1.251 pkgsrc/lang/php/phpversion.mk cvs rdiff -u -r1.2 -r1.3 pkgsrc/lang/php73/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/php73/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155236410373490 Content-Disposition: inline Content-Length: 2585 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.250 pkgsrc/lang/php/phpversion.mk:1.251 --- pkgsrc/lang/php/phpversion.mk:1.250 Tue Mar 12 04:13:42 2019 +++ pkgsrc/lang/php/phpversion.mk Tue Mar 12 04:15:03 2019 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.250 2019/03/12 04:13:42 taca Exp $ +# $NetBSD: phpversion.mk,v 1.251 2019/03/12 04:15:03 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 PHP71_VERSION= 7.1.27 PHP72_VERSION= 7.2.16 -PHP73_VERSION= 7.3.2 +PHP73_VERSION= 7.3.3 # Define initial release of major version. PHP56_RELDATE= 20140828 Index: pkgsrc/lang/php73/Makefile diff -u pkgsrc/lang/php73/Makefile:1.2 pkgsrc/lang/php73/Makefile:1.3 --- pkgsrc/lang/php73/Makefile:1.2 Mon Mar 11 13:46:12 2019 +++ pkgsrc/lang/php73/Makefile Tue Mar 12 04:15:03 2019 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.2 2019/03/11 13:46:12 jperkin Exp $ +# $NetBSD: Makefile,v 1.3 2019/03/12 04:15:03 taca Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. # PKGNAME= php-${PHP_VERSION:S/RC/rc/} -PKGREVISION= 1 HOMEPAGE= http://www.php.net/ COMMENT= PHP Hypertext Preprocessor version 7.3 Index: pkgsrc/lang/php73/distinfo diff -u pkgsrc/lang/php73/distinfo:1.4 pkgsrc/lang/php73/distinfo:1.5 --- pkgsrc/lang/php73/distinfo:1.4 Mon Mar 11 13:46:12 2019 +++ pkgsrc/lang/php73/distinfo Tue Mar 12 04:15:03 2019 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.4 2019/03/11 13:46:12 jperkin Exp $ +$NetBSD: distinfo,v 1.5 2019/03/12 04:15:03 taca Exp $ -SHA1 (php-7.3.2.tar.bz2) = cc5a9e43261d2e71bdffca8f150bf08c2ba0f4f2 -RMD160 (php-7.3.2.tar.bz2) = 4b9b4d0e70de8efc7abedaa72fd5abd7c16b44c5 -SHA512 (php-7.3.2.tar.bz2) = 9054c22387178d6755076d2cdd731597377223000ca81addca48ef8c98b77efd3882acf880a5f2fd53b4eccd934c7214b1ef0362b71e5736a79760bc9f26ce6d -Size (php-7.3.2.tar.bz2) = 14802013 bytes +SHA1 (php-7.3.3.tar.bz2) = 034b3f3bfe3a77249c6ae3ad1cd7e7f36182708b +RMD160 (php-7.3.3.tar.bz2) = 6238d9afdcc1e7b46e7f4f694d0364a57f2537bd +SHA512 (php-7.3.3.tar.bz2) = 1ca18328cf7ad99d6cd81efbbc8456210149b576534125e16158557060b95986076de2800b327869e36b294a3b71c1d240a3b86301ca7a79fcda5205e8255d63 +Size (php-7.3.3.tar.bz2) = 14813435 bytes SHA1 (patch-configure) = 08b80528ba90c705398e8841c232382663479a3b SHA1 (patch-disable-filter-url) = d7e450380b584e01e2f01e9c91c864d01991cdbf SHA1 (patch-ext_gd_config.m4) = eaecfb31b18700dd642c067ed82748d4f6be2335 --_----------=_155236410373490--