pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/lang



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)


To generate a diff of this commit:
cvs rdiff -u -r1.161 -r1.162 pkgsrc/lang/php/phpversion.mk
cvs rdiff -u -r1.3 -r1.4 pkgsrc/lang/php71/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/lang/php71/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/lang/php/phpversion.mk
diff -u pkgsrc/lang/php/phpversion.mk:1.161 pkgsrc/lang/php/phpversion.mk:1.162
--- pkgsrc/lang/php/phpversion.mk:1.161 Sun Oct 16 11:58:42 2016
+++ pkgsrc/lang/php/phpversion.mk       Sat Nov  5 14:30:30 2016
@@ -1,4 +1,4 @@
-# $NetBSD: phpversion.mk,v 1.161 2016/10/16 11:58:42 taca Exp $
+# $NetBSD: phpversion.mk,v 1.162 2016/11/05 14:30:30 jdolecek 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.27
 PHP70_VERSION= 7.0.12
-PHP71_VERSION= 7.1.0RC3
+PHP71_VERSION= 7.1.0RC5
 
 # Define initial release of major version.
 PHP56_RELDATE= 20140828

Index: pkgsrc/lang/php71/Makefile
diff -u pkgsrc/lang/php71/Makefile:1.3 pkgsrc/lang/php71/Makefile:1.4
--- pkgsrc/lang/php71/Makefile:1.3      Mon Sep 12 15:38:01 2016
+++ pkgsrc/lang/php71/Makefile  Sat Nov  5 14:30:30 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2016/09/12 15:38:01 taca Exp $
+# $NetBSD: Makefile,v 1.4 2016/11/05 14:30:30 jdolecek Exp $
 
 #
 # We can't omit PKGNAME here to handle PKG_OPTIONS.
@@ -11,7 +11,7 @@ COMMENT=              PHP Hypertext Preprocessor ver
 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
 

Index: pkgsrc/lang/php71/distinfo
diff -u pkgsrc/lang/php71/distinfo:1.7 pkgsrc/lang/php71/distinfo:1.8
--- pkgsrc/lang/php71/distinfo:1.7      Sat Oct  8 09:16:09 2016
+++ pkgsrc/lang/php71/distinfo  Sat Nov  5 14:30:30 2016
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.7 2016/10/08 09:16:09 jdolecek Exp $
+$NetBSD: distinfo,v 1.8 2016/11/05 14:30:30 jdolecek 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.0RC5.tar.bz2) = f8387ec993a622d4e0dbb58751aaf0a6bcde226d
+RMD160 (php-7.1.0RC5.tar.bz2) = b34b659f52d926f5ecbdac93e2ae5e3259bd4736
+SHA512 (php-7.1.0RC5.tar.bz2) = c6ff2ce84cdf6d772e1f9eebc85397b269634a956d82266526b6d75f784cff2a0abb90bd562df18fae3cb0f434c9eded3cce804910fdbf94cab221b193d420e5
+Size (php-7.1.0RC5.tar.bz2) = 15539145 bytes
 SHA1 (patch-acinclude.m4) = b682280fd89950c082c2226bdb7364b0dc475bad
 SHA1 (patch-configure) = a129e19ef87338f6e53ccc967c40ddcde7c7357c
 SHA1 (patch-ext_gd_config.m4) = 93b62daad93b9ee6dc28e06016f739bc26b0dc9f



Home | Main Index | Thread Index | Old Index