summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbsiegert <bsiegert>2016-11-28 18:22:28 +0000
committerbsiegert <bsiegert>2016-11-28 18:22:28 +0000
commitbe59fffeecbc0bc03f6e957d824e92334cca22f9 (patch)
tree4f41ddca598af250c953e733144412a493526536
parentb3311aca2b0d2eabec6065c003f5d153d8932fca (diff)
downloadpkgsrc-be59fffeecbc0bc03f6e957d824e92334cca22f9.tar.gz
Pullup ticket #5159 - requested by taca
lang/php71: security fix Revisions pulled up: - lang/php71/Makefile 1.4 - lang/php71/distinfo 1.8-1.9 --- Module Name: pkgsrc Committed By: jdolecek Date: Sat Nov 5 14:30:31 UTC 2016 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php71: Makefile distinfo Log Message: Update php71 to 7.1.0RC5. Changes between RC4 and RC5: - Core: . Fixed bug #73350 (Exception::__toString() cause circular references). (Laruence) . Fixed bug #73329 ((Float)"Nano" == NAN). (Anatol) - CLI Server: . Fixed bug #73360 (Unable to work in root with unicode chars). (Anatol) - SQLite3: . Fixed bug #73333 (2147483647 is fetched as string). (cmb) Change since RC3 and RC4: - Core: . Fixed bug #73288 (Segfault in __clone > Exception.toString > __get). (Laruence) . Fixed for #73240 (Write out of bounds at number_format). (Stas) . Fix pthreads detection when cross-compiling (ffontaine) . Fixed bug #73337 (try/catch not working with two exceptions inside a same operation). (Dmitry) - BCmath: . Fix bug #73190 (memcpy negative parameter _bc_new_num_ex). (Stas) - Date: . Fixed bug #45554 (Inconsistent behavior of the u format char). (Derick) . Fixed bug #48225 (DateTime parser doesn't set microseconds for "now"). (Derick) . Fixed bug #52514 (microseconds are missing in DateTime class). (Derick) . Fixed bug #52519 (microseconds in DateInterval are missing). (Derick) . Fixed bug #60089 (DateTime::createFromFormat() U after u nukes microtime). (Derick) . Fixed bug #64887 (Allow DateTime modification with subsecond items). (Derick) . Fixed bug #68506 (General DateTime improvments needed for microseconds to become useful). (Derick) . Fixed bug #73109 (timelib_meridian doesn't parse dots correctly). (Derick) . Fixed bug #73247 (DateTime constructor does not initialise microseconds property). (Derick) . Fixed bug #73147 (Use After Free in PHP7 unserialize()). (Stas) . Fixed bug #73189 (Memcpy negative size parameter php_resolve_path). (Stas) - DOM: . Fixed bug #73150 (missing NULL check in dom_document_save_html). (Stas) - GD: . Fixed bug #73213 (Integer overflow in imageline() with antialiasing). (cmb) . Fixed bug #73272 (imagescale() is not affected by, but affects imagesetinterpolation()). (cmb) . Fixed bug #73279 (Integer overflow in gdImageScaleBilinearPalette()). (cmb) . Fixed bug #73280 (Stack Buffer Overflow in GD dynamicGetbuf). (cmb) - Intl: . Fixed bug #73007 (add locale length check). (Stas) . Fixed bug #73218 (add mitigation for ICU int overflow). (Stas) - OCI8 . Fixed bug #71148 (Bind reference overwritten on PHP 7). (Oracle Corp.) - OpenSSL: . Fixed bug #73276 (crash in openssl_random_pseudo_bytes function). (Stas) - Session: . Fixed bug #73273 (session_unset() empties values from all variables in which is $_session stored). (Nikita) - SOAP: . Fixed bug #73037 (SoapServer reports Bad Request when gzipped). (Anatol) . Fixed bug #73237 (Nested object in "any" element overwrites other fields). (Keith Smiley) . Fixed bug #69137 (Peer verification fails when using a proxy with SoapClient) (Keith Smiley) - SimpleXML: . Fixed bug #73293 (NULL pointer dereference in SimpleXMLElement::asXML()). (Stas) - SQLite3: . Updated to SQLite3 3.15.0. (cmb) - Standard: . Fixed bug #73203 (passing additional_parameters causes mail to fail). (cmb) --- Module Name: pkgsrc Committed By: taca Date: Sat Nov 12 15:41:24 UTC 2016 Modified Files: pkgsrc/lang/php: phpversion.mk pkgsrc/lang/php71: distinfo Log Message: Update php71 to 7.1.0rc6 (PHP 7.1.0RC6), including security fix. 10 Nov 2016, PHP 7.1.0RC6 - Core: . Fixded bug #72736 (Slow performance when fetching large dataset with mysqli / PDO). (Dmitry) - Date: . Fixed bug #73426 (createFromFormat with 'z' format char results in incorrect time). (Derick) - JSON: . Introduced encoder struct instead of global which fixes bugs #66025 and #73254 related to pretty print indentation. (Jakub Zelenka) - ODBC: . Fixed bug #73448 (odbc_errormsg returns trash, always 513 bytes). (Anatol) - PCRE: . Fixed bug #73392 (A use-after-free in zend allocator management). (Laruence) - PDO_Firebird: . Fixed bug #73087, #61183, #71494 (Memory corruption in bindParam). (Dorin Marcoci) - SPL: . Fixed bug #73423 (Reproducible crash with GDB backtrace). (Laruence)
-rw-r--r--lang/php/phpversion.mk4
-rw-r--r--lang/php71/Makefile4
-rw-r--r--lang/php71/distinfo10
3 files changed, 9 insertions, 9 deletions
diff --git a/lang/php/phpversion.mk b/lang/php/phpversion.mk
index 5691f63c10f..df31186901d 100644
--- a/lang/php/phpversion.mk
+++ b/lang/php/phpversion.mk
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.158.2.5 2016/11/28 18:12:44 bsiegert Exp $
+# $NetBSD: phpversion.mk,v 1.158.2.6 2016/11/28 18:22:29 bsiegert 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.28
PHP70_VERSION= 7.0.13
-PHP71_VERSION= 7.1.0RC3
+PHP71_VERSION= 7.1.0RC6
# Define initial release of major version.
PHP56_RELDATE= 20140828
diff --git a/lang/php71/Makefile b/lang/php71/Makefile
index 2bb38f6aacd..c981dd069b5 100644
--- a/lang/php71/Makefile
+++ b/lang/php71/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2016/09/12 15:38:01 taca Exp $
+# $NetBSD: Makefile,v 1.3.2.1 2016/11/28 18:22:28 bsiegert Exp $
#
# We can't omit PKGNAME here to handle PKG_OPTIONS.
@@ -11,7 +11,7 @@ COMMENT= PHP Hypertext Preprocessor version 7.1
LICENSE= php
# 7.1 is in beta, available only on dev location
-MASTER_SITES= https://downloads.php.net/~davey/
+MASTER_SITES= https://downloads.php.net/~krakjoe/
TEST_TARGET= test
diff --git a/lang/php71/distinfo b/lang/php71/distinfo
index cc20787dbf6..7083242432a 100644
--- a/lang/php71/distinfo
+++ b/lang/php71/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.6.2.1 2016/10/21 18:40:41 bsiegert Exp $
+$NetBSD: distinfo,v 1.6.2.2 2016/11/28 18:22:28 bsiegert Exp $
-SHA1 (php-7.1.0RC3.tar.bz2) = e12ba1e7adaba8f69e60b89277c7d0f9d858762e
-RMD160 (php-7.1.0RC3.tar.bz2) = 903a92ae604d0c6c531cb335dcf87acfff47004b
-SHA512 (php-7.1.0RC3.tar.bz2) = 63b06efbe28577760127db42101a16a5bcb7ce0a5be05777749f514e7c8487dbdfc44f3e10ea2e31e9de8a7c8c7506b93d99f4155f2a2a757808e9987213c74f
-Size (php-7.1.0RC3.tar.bz2) = 15595095 bytes
+SHA1 (php-7.1.0RC6.tar.bz2) = 46144d74951f0ecfb2ce8d1c5d7890175cfd47b4
+RMD160 (php-7.1.0RC6.tar.bz2) = 3020a5f6ea44d88e49fb642d722c7819557304a7
+SHA512 (php-7.1.0RC6.tar.bz2) = f0343af4baff40c5411656ca9b9ac4e5e920de8e9cb99df0b957a7f87f59fcb097e80e53b6edb26027f89488086d7955b3e1f8967bef8fb396c8af67bc5455dc
+Size (php-7.1.0RC6.tar.bz2) = 15555392 bytes
SHA1 (patch-acinclude.m4) = b682280fd89950c082c2226bdb7364b0dc475bad
SHA1 (patch-configure) = a129e19ef87338f6e53ccc967c40ddcde7c7357c
SHA1 (patch-ext_gd_config.m4) = 93b62daad93b9ee6dc28e06016f739bc26b0dc9f