Received: by mail.netbsd.org (Postfix, from userid 605) id 3EC3184D9E; Fri, 2 Mar 2018 02:11:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 42E0A84D80 for ; Fri, 2 Mar 2018 02:11:25 +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 h6X_ERv0bWYu for ; Fri, 2 Mar 2018 02:11:24 +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 5589184C74 for ; Fri, 2 Mar 2018 02:11:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4D806FB40; Fri, 2 Mar 2018 02:11:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1519956684111240" MIME-Version: 1.0 Date: Fri, 2 Mar 2018 02:11:24 +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: <20180302021124.4D806FB40@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. --_----------=_1519956684111240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Fri Mar 2 02:11:24 UTC 2018 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php72: Makefile distinfo Log Message: lang/php72: update to 7.2.3 01 Mar 2018, PHP 7.2.3 - Core: . Fixed bug #75864 ("stream_isatty" returns wrong value on s390x). (Sam Ding) - Apache2Handler: . Fixed bug #75882 (a simple way for segfaults in threadsafe php just with configuration). (Anatol) - Date: . Fixed bug #75857 (Timezone gets truncated when formatted). (carusogabriel) . Fixed bug #75928 (Argument 2 for `DateTimeZone::listIdentifiers()` should accept `null`). (Pedro Lacerda) . Fixed bug #68406 (calling var_dump on a DateTimeZone object modifies it). (jhdxr) - LDAP: . Fixed bug #49876 (Fix LDAP path lookup on 64-bit distros). (dzuelke) - libxml2: . Fixed bug #75871 (use pkg-config where available). (pmmaga) - PGSQL: . Fixed bug #75838 (Memory leak in pg_escape_bytea()). (ard_1 at mail dot ru) - Phar: . Fixed bug #54289 (Phar::extractTo() does not accept specific directories to be extracted). (bishop) . Fixed bug #65414 (deal with leading slash while adding files correctly). (bishopb) . Fixed bug #65414 (deal with leading slash when adding files correctly). (bishopb) - ODBC: . Fixed bug #73725 (Unable to retrieve value of varchar(max) type). (Anatol) - Opcache: . Fixed bug #75729 (opcache segfault when installing Bitrix). (Nikita) . Fixed bug #75893 (file_get_contents $http_response_header variable bugged with opcache). (Nikita) . Fixed bug #75938 (Modulus value not stored in variable). (Nikita) - SPL: . Fixed bug #74519 (strange behavior of AppendIterator). (jhdxr) - Standard: . Fixed bug #75916 (DNS_CAA record results contain garbage). (Mike, Philip Sharp) . Fixed bug #75981 (Prevent reading beyond buffer start in http wrapper). (Stas) To generate a diff of this commit: cvs rdiff -u -r1.206 -r1.207 pkgsrc/lang/php/phpversion.mk cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/php72/Makefile cvs rdiff -u -r1.21 -r1.22 pkgsrc/lang/php72/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1519956684111240 Content-Disposition: inline Content-Length: 2615 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.206 pkgsrc/lang/php/phpversion.mk:1.207 --- pkgsrc/lang/php/phpversion.mk:1.206 Fri Mar 2 02:09:48 2018 +++ pkgsrc/lang/php/phpversion.mk Fri Mar 2 02:11:24 2018 @@ -1,4 +1,4 @@ -# $NetBSD: phpversion.mk,v 1.206 2018/03/02 02:09:48 taca Exp $ +# $NetBSD: phpversion.mk,v 1.207 2018/03/02 02:11:24 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.33 PHP70_VERSION= 7.0.27 PHP71_VERSION= 7.1.15 -PHP72_VERSION= 7.2.2 +PHP72_VERSION= 7.2.3 # Define initial release of major version. PHP56_RELDATE= 20140828 Index: pkgsrc/lang/php72/Makefile diff -u pkgsrc/lang/php72/Makefile:1.5 pkgsrc/lang/php72/Makefile:1.6 --- pkgsrc/lang/php72/Makefile:1.5 Mon Feb 5 08:51:25 2018 +++ pkgsrc/lang/php72/Makefile Fri Mar 2 02:11:24 2018 @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.5 2018/02/05 08:51:25 jdolecek Exp $ +# $NetBSD: Makefile,v 1.6 2018/03/02 02:11:24 taca Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. # PKGNAME= php-${PHP_VERSION:S/RC/rc/} CATEGORIES= lang -PKGREVISION= 2 HOMEPAGE= http://www.php.net/ COMMENT= PHP Hypertext Preprocessor version 7.2 Index: pkgsrc/lang/php72/distinfo diff -u pkgsrc/lang/php72/distinfo:1.21 pkgsrc/lang/php72/distinfo:1.22 --- pkgsrc/lang/php72/distinfo:1.21 Fri Feb 16 22:26:29 2018 +++ pkgsrc/lang/php72/distinfo Fri Mar 2 02:11:24 2018 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.21 2018/02/16 22:26:29 jdolecek Exp $ +$NetBSD: distinfo,v 1.22 2018/03/02 02:11:24 taca Exp $ -SHA1 (php-7.2.2.tar.bz2) = 69903dabf7ceb4a84620683092e235b29d2d1066 -RMD160 (php-7.2.2.tar.bz2) = c7193e0298ae8e709ad19129023ff213085f50ca -SHA512 (php-7.2.2.tar.bz2) = d2bc3725b51c61ded552cfde276bbe0f9e4cce3401303219d3784497d7f989e4a23c673fd2d2a827b7823664f922eededed0d242dc70a6f4863ce4f89573d211 -Size (php-7.2.2.tar.bz2) = 14618006 bytes +SHA1 (php-7.2.3.tar.bz2) = 6007a31a9b3665de7507ba24a67a3cc944a08f11 +RMD160 (php-7.2.3.tar.bz2) = 5c972d2c12c2fb2119ca4eb46f8961f2e95dff60 +SHA512 (php-7.2.3.tar.bz2) = 6b7e3e86ed42fb48762309a20c6a519202d2454fcb7be51e328ca47a3ca5fdbff8d21a435c31b4e73a9901b733cacd39d4a5287c16cced135799d2117a789e90 +Size (php-7.2.3.tar.bz2) = 15012465 bytes SHA1 (patch-configure) = 47f2ede97390cc7e46d04c2769dd97459b19450a SHA1 (patch-ext_gd_config.m4) = 67730ccc13410adaf8829f77a6b044f16e412489 SHA1 (patch-ext_phar_Makefile.frag) = 558869b60f8ed6674a3ba1d595a65f010df4c426 --_----------=_1519956684111240--