Received: by mail.netbsd.org (Postfix, from userid 605) id 92DC684E97; Tue, 12 Mar 2019 04:13:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1A15284D75 for ; Tue, 12 Mar 2019 04:13:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id uzR6zbWVr3rP for ; Tue, 12 Mar 2019 04:13:42 +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 7300584CCF for ; Tue, 12 Mar 2019 04:13:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 70F89FB16; Tue, 12 Mar 2019 04:13:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155236402251790" MIME-Version: 1.0 Date: Tue, 12 Mar 2019 04:13:42 +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: <20190312041342.70F89FB16@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. --_----------=_155236402251790 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:13:42 UTC 2019 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php72: Makefile distinfo Log Message: lang/php72: update to 7.2.16 Update php72 to 7.2.16. 07 Mar 2019, PHP 7.2.16 - Core: . Fixed bug #77589 (Core dump using parse_ini_string with numeric sections). (Laruence) . 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) - 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) - 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) - 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) - 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) To generate a diff of this commit: cvs rdiff -u -r1.249 -r1.250 pkgsrc/lang/php/phpversion.mk cvs rdiff -u -r1.17 -r1.18 pkgsrc/lang/php72/Makefile cvs rdiff -u -r1.37 -r1.38 pkgsrc/lang/php72/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155236402251790 Content-Disposition: inline Content-Length: 2609 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.249 pkgsrc/lang/php/phpversion.mk:1.250 --- pkgsrc/lang/php/phpversion.mk:1.249 Tue Mar 12 04:12:16 2019 +++ pkgsrc/lang/php/phpversion.mk Tue Mar 12 04:13:42 2019 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.249 2019/03/12 04:12:16 taca Exp $ +# $NetBSD: phpversion.mk,v 1.250 2019/03/12 04:13:42 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 @@ -89,7 +89,7 @@ PHPVERSION_MK= defined # Define each PHP's version. PHP56_VERSION= 5.6.40 PHP71_VERSION= 7.1.27 -PHP72_VERSION= 7.2.15 +PHP72_VERSION= 7.2.16 PHP73_VERSION= 7.3.2 # Define initial release of major version. Index: pkgsrc/lang/php72/Makefile diff -u pkgsrc/lang/php72/Makefile:1.17 pkgsrc/lang/php72/Makefile:1.18 --- pkgsrc/lang/php72/Makefile:1.17 Mon Mar 11 13:43:22 2019 +++ pkgsrc/lang/php72/Makefile Tue Mar 12 04:13:42 2019 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.17 2019/03/11 13:43:22 jperkin Exp $ +# $NetBSD: Makefile,v 1.18 2019/03/12 04:13:42 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.2 Index: pkgsrc/lang/php72/distinfo diff -u pkgsrc/lang/php72/distinfo:1.37 pkgsrc/lang/php72/distinfo:1.38 --- pkgsrc/lang/php72/distinfo:1.37 Mon Mar 11 13:43:22 2019 +++ pkgsrc/lang/php72/distinfo Tue Mar 12 04:13:42 2019 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.37 2019/03/11 13:43:22 jperkin Exp $ +$NetBSD: distinfo,v 1.38 2019/03/12 04:13:42 taca Exp $ -SHA1 (php-7.2.15.tar.bz2) = 5aa59dffc0dc38590bbc835ab168723b8cc540e3 -RMD160 (php-7.2.15.tar.bz2) = 6a48ace560fc51f05177acaa5e4d509c37c40bd3 -SHA512 (php-7.2.15.tar.bz2) = 51713edeb273a808e0584453647c060599645916be19ce62ebf896ef2c24c39b3f15106c3dd6e755cea7147405bf68c9610b97c87409387127d7fd8e772fc8a6 -Size (php-7.2.15.tar.bz2) = 15060588 bytes +SHA1 (php-7.2.16.tar.bz2) = 03d04c2f794acb024b2d7e563d49aca4d898163c +RMD160 (php-7.2.16.tar.bz2) = 647cff7577e830428c434184fbcef008a1caf193 +SHA512 (php-7.2.16.tar.bz2) = f97545905a3ec4bc1ce431e306bffb2d7b6357164ea035a6899ea1589d8df4e6617af3924fa1abcb5da428ad691967504c3f94187d4cae6f2ef285e963d07e3d +Size (php-7.2.16.tar.bz2) = 15058325 bytes SHA1 (patch-configure) = 6e66a79e691a84aa7ae461f8dec1752443ad6b61 SHA1 (patch-disable-filter-url) = e9e92d686ddd1d1a1ece10fe4feee4e368fe510c SHA1 (patch-ext_gd_config.m4) = eaecfb31b18700dd642c067ed82748d4f6be2335 --_----------=_155236402251790--