Mon Aug 22 03:21:17 2016 UTC ()
Update php71 to 7.1.0beta3 (PHP 7.1.0beta3).

18 Aug 2016, PHP 7.1.0beta3

- Core:
  . Fixed bug #72813 (Segfault with __get returned by ref). (Laruence)
  . Fixed bug #72767 (PHP Segfaults when trying to expand an infinite operator).
    (Nikita)
  . TypeError messages for arg_info type checks will now say "must be ...
    or null" where the parameter or return type accepts null. (Andrea)
  . Fixed bug #72857 (stream_socket_recvfrom read access violation). (Anatol)
  . Fixed bug #72663 (Create an Unexpected Object and Don't Invoke
    __wakeup() in Deserialization). (Stas)
  . Fixed bug #72681 (PHP Session Data Injection Vulnerability). (Stas)
  . Fixed bug #72742 (memory allocator fails to realloc small block to large
    one). (Stas)

- Bz2:
  . Fixed bug #72837 (integer overflow in bzdecompress caused heap
    corruption). (Stas)

- Curl
  . Fixed bug #72674 (Heap overflow in curl_escape). (Stas)

- EXIF:
  . Fixed bug #72735 (Samsung picture thumb not read (zero size)). (Kalle, Remi)
  . Fixed bug #72627 (Memory Leakage In exif_process_IFD_in_TIFF). (Stas)

- FTP:
  . Fixed bug #70195 (Cannot upload file using ftp_put to FTPES with
    require_ssl_reuse). (Benedict Singer)

- mbstring:
  . Fixed bug #72711 (`mb_ereg` does not clear the `$regs` parameter on
    failure). (ju1ius)

- Mcrypt:
  . Fixed bug #72782 (Heap Overflow due to integer overflows). (Stas)

- OCI8
  . Fixed invalid handle error with Implicit Result Sets. (Chris Jones)
  . Fixed bug #72524 (Binding null values triggers ORA-24816 error). (Chris Jones)

- Opcache:
  . Fixed bug #72762 (Infinite loop while parsing a file with opcache enabled).
    (Nikita)

- PDO:
  . Fixed bug #72788 (Invalid memory access when using persistent PDO
    connection). (Keyur)
  . Fixed bug #72791 (Memory leak in PDO persistent connection handling). (Keyur)
  . Fixed bug #60665 (call to empty() on NULL result using PDO::FETCH_LAZY
    returns false). (cmb)

- Reflection:
  . Implemented request #38992 (invoke() and invokeArgs() static method calls
    should match). (cmb).
  . Add ReflectionNamedType::getName() and return leading "?" for nullable types
    from ReflectionType::__toString(). (Trowski)

- Session:
  . Implemented RFC: Session ID without hashing. (Yasuo)
    https://wiki.php.net/rfc/session-id-without-hashing

- SPL:
  . Fixed bug #72888 (Segfault on clone on splFileObject). (Laruence)

- SQLite3:
  . Updated to SQLite3 3.14.0. (cmb)

- Standard:
  . Fixed bug #55451 (substr_compare NULL length interpreted as 0). (Lauri
    Kenttè¾°)
  . Fixed bug #72278 (getimagesize returning FALSE on valid jpg). (cmb)

- Stream:
  . Fixed bug #72853 (stream_set_blocking doesn't work). (Laruence)
  . Fixed bug #72743 (Out-of-bound read in php_stream_filter_create).
    (Loianhtuan)
  . Implemented FR #27814 (Multiple small packets send for HTTP request).
    (vhuk)
  . Fixed bug #72764 (ftps:// opendir wrapper data channel encryption fails
    with IIS FTP 7.5, 8.5). (vhuk)
  . Fixed bug #72810 (Missing SKIP_ONLINE_TESTS checks). (vhuk)

- sysvshm:
  . Fixed bug #72858 (shm_attach null dereference). (Anatol)

- XML:
  . Fixed bug #72085 (SEGV on unknown address zif_xml_parse). (cmb)

- ZIP:
  . Fixed bug #68302 (impossible to compile php with zip support). (cmb)


(taca)
diff -r1.150 -r1.151 pkgsrc/lang/php/phpversion.mk
diff -r1.3 -r1.4 pkgsrc/lang/php71/distinfo

cvs diff -r1.150 -r1.151 pkgsrc/lang/php/phpversion.mk (switch to unified diff)

--- pkgsrc/lang/php/phpversion.mk 2016/08/19 03:29:52 1.150
+++ pkgsrc/lang/php/phpversion.mk 2016/08/22 03:21:17 1.151
@@ -1,235 +1,235 @@ @@ -1,235 +1,235 @@
1# $NetBSD: phpversion.mk,v 1.150 2016/08/19 03:29:52 taca Exp $ 1# $NetBSD: phpversion.mk,v 1.151 2016/08/22 03:21:17 taca Exp $
2# 2#
3# This file selects a PHP version, based on the user's preferences and 3# This file selects a PHP version, based on the user's preferences and
4# the installed packages. It does not add a dependency on the PHP 4# the installed packages. It does not add a dependency on the PHP
5# package. 5# package.
6# 6#
7# === User-settable variables === 7# === User-settable variables ===
8# 8#
9# PHP_VERSION_DEFAULT 9# PHP_VERSION_DEFAULT
10# The PHP version to choose when more than one is acceptable to 10# The PHP version to choose when more than one is acceptable to
11# the package. 11# the package.
12# 12#
13# Possible: 55 56 70 71 13# Possible: 55 56 70 71
14# Default: 56 14# Default: 56
15# 15#
16# === Infrastructure variables === 16# === Infrastructure variables ===
17# 17#
18# PHP_VERSION_REQD 18# PHP_VERSION_REQD
19# PHP version to use. This variable should not be set in 19# PHP version to use. This variable should not be set in
20# packages. Normally it is used by bulk build tools. 20# packages. Normally it is used by bulk build tools.
21# 21#
22# Possible: ${PHP_VERSIONS_ACCEPTED} 22# Possible: ${PHP_VERSIONS_ACCEPTED}
23# Default: ${PHP_VERSION_DEFAULT} 23# Default: ${PHP_VERSION_DEFAULT}
24# 24#
25# === Package-settable variables === 25# === Package-settable variables ===
26# 26#
27# PHP_VERSIONS_ACCEPTED 27# PHP_VERSIONS_ACCEPTED
28# The PHP versions that are accepted by the package. 28# The PHP versions that are accepted by the package.
29# 29#
30# Possible: 55 56 70 71 30# Possible: 55 56 70 71
31# Default: 55 56 31# Default: 55 56
32# 32#
33# PHP_CHECK_INSTALLED 33# PHP_CHECK_INSTALLED
34# Check installed version of PHP. Should be used by lang/php55, 34# Check installed version of PHP. Should be used by lang/php55,
35# lang/php56, lang/php70, or lang/php71 only. 35# lang/php56, lang/php70, or lang/php71 only.
36# 36#
37# Possible: Yes No 37# Possible: Yes No
38# Default: Yes 38# Default: Yes
39# 39#
40# === Variables defined by this file === 40# === Variables defined by this file ===
41# 41#
42# PKG_PHP_VERSION 42# PKG_PHP_VERSION
43# The selected PHP version. 43# The selected PHP version.
44# 44#
45# Possible: 55 56 70 71 45# Possible: 55 56 70 71
46# Default: ${PHP_VERSION_DEFAULT} 46# Default: ${PHP_VERSION_DEFAULT}
47# 47#
48# PHP_BASE_VERS 48# PHP_BASE_VERS
49# The selected PHP's full version depends on PKG_PHP_VERSION 49# The selected PHP's full version depends on PKG_PHP_VERSION
50# 50#
51# PKG_PHP_MAJOR_VERS 51# PKG_PHP_MAJOR_VERS
52# The selected PHP's major version. 52# The selected PHP's major version.
53# 53#
54# Possible: 5 7 54# Possible: 5 7
55# Default: 5 55# Default: 5
56# 56#
57# PKG_PHP 57# PKG_PHP
58# The same as ${PKG_PHP_VERSION}, prefixed with "php-". 58# The same as ${PKG_PHP_VERSION}, prefixed with "php-".
59# 59#
60# PHPPKGSRCDIR 60# PHPPKGSRCDIR
61# The directory of the PHP implementation, relative to the 61# The directory of the PHP implementation, relative to the
62# package directory. 62# package directory.
63# 63#
64# Example: ../../lang/php55 64# Example: ../../lang/php55
65# 65#
66# PHP_PKG_PREFIX 66# PHP_PKG_PREFIX
67# The prefix that is prepended to the package name. 67# The prefix that is prepended to the package name.
68# 68#
69# Example: php55 php56 php70 php71 69# Example: php55 php56 php70 php71
70# 70#
71# PHP_EXTENSION_DIR 71# PHP_EXTENSION_DIR
72# Relative path to ${PREFIX} for PHP's extensions. It is derived from 72# Relative path to ${PREFIX} for PHP's extensions. It is derived from
73# initial release of major version. 73# initial release of major version.
74# 74#
75# Example: lib/php/20090630 75# Example: lib/php/20090630
76# 76#
77# Keywords: php 77# Keywords: php
78# 78#
79 79
80.if !defined(PHPVERSION_MK) 80.if !defined(PHPVERSION_MK)
81PHPVERSION_MK= defined 81PHPVERSION_MK= defined
82 82
83# Define each PHP's version. 83# Define each PHP's version.
84PHP55_VERSION= 5.5.38 84PHP55_VERSION= 5.5.38
85PHP56_VERSION= 5.6.25 85PHP56_VERSION= 5.6.25
86PHP70_VERSION= 7.0.10 86PHP70_VERSION= 7.0.10
87PHP71_VERSION= 7.1.0beta2 87PHP71_VERSION= 7.1.0beta3
88 88
89# Define initial release of major version. 89# Define initial release of major version.
90PHP55_RELDATE= 20130620 90PHP55_RELDATE= 20130620
91PHP56_RELDATE= 20140828 91PHP56_RELDATE= 20140828
92PHP70_RELDATE= 20151203 92PHP70_RELDATE= 20151203
93PHP71_RELDATE= 20160303 93PHP71_RELDATE= 20160303
94 94
95_VARGROUPS+= php 95_VARGROUPS+= php
96_USER_VARS.php= PHP_VERSION_DEFAULT 96_USER_VARS.php= PHP_VERSION_DEFAULT
97_PKG_VARS.php= PHP_VERSIONS_ACCEPTED PHP_VERSION_REQD 97_PKG_VARS.php= PHP_VERSIONS_ACCEPTED PHP_VERSION_REQD
98_SYS_VARS.php= PKG_PHP_VERSION PKG_PHP PHPPKGSRCDIR PHP_PKG_PREFIX \ 98_SYS_VARS.php= PKG_PHP_VERSION PKG_PHP PHPPKGSRCDIR PHP_PKG_PREFIX \
99 PKG_PHP_MAJOR_VERS 99 PKG_PHP_MAJOR_VERS
100 100
101.include "../../mk/bsd.prefs.mk" 101.include "../../mk/bsd.prefs.mk"
102 102
103PHP_VERSION_DEFAULT?= 56 103PHP_VERSION_DEFAULT?= 56
104PHP_VERSIONS_ACCEPTED?= 55 56 70 71 104PHP_VERSIONS_ACCEPTED?= 55 56 70 71
105 105
106# transform the list into individual variables 106# transform the list into individual variables
107.for pv in ${PHP_VERSIONS_ACCEPTED} 107.for pv in ${PHP_VERSIONS_ACCEPTED}
108_PHP_VERSION_${pv}_OK= yes 108_PHP_VERSION_${pv}_OK= yes
109.endfor 109.endfor
110 110
111# check what is installed 111# check what is installed
112.if exists(${LOCALBASE}/lib/php/${PHP71_RELDATE}) 112.if exists(${LOCALBASE}/lib/php/${PHP71_RELDATE})
113_PHP_VERSION_71_INSTALLED= yes 113_PHP_VERSION_71_INSTALLED= yes
114_PHP_INSTALLED= yes 114_PHP_INSTALLED= yes
115.elif exists(${LOCALBASE}/lib/php/${PHP70_RELDATE}) 115.elif exists(${LOCALBASE}/lib/php/${PHP70_RELDATE})
116_PHP_VERSION_70_INSTALLED= yes 116_PHP_VERSION_70_INSTALLED= yes
117_PHP_INSTALLED= yes 117_PHP_INSTALLED= yes
118.elif exists(${LOCALBASE}/lib/php/${PHP56_RELDATE}) 118.elif exists(${LOCALBASE}/lib/php/${PHP56_RELDATE})
119_PHP_VERSION_56_INSTALLED= yes 119_PHP_VERSION_56_INSTALLED= yes
120_PHP_INSTALLED= yes 120_PHP_INSTALLED= yes
121.elif exists(${LOCALBASE}/lib/php/${PHP55_RELDATE}) 121.elif exists(${LOCALBASE}/lib/php/${PHP55_RELDATE})
122_PHP_VERSION_55_INSTALLED= yes 122_PHP_VERSION_55_INSTALLED= yes
123_PHP_INSTALLED= yes 123_PHP_INSTALLED= yes
124.endif 124.endif
125 125
126# if a version is explicitely required, take it 126# if a version is explicitely required, take it
127.if defined(PHP_VERSION_REQD) 127.if defined(PHP_VERSION_REQD)
128_PHP_VERSION= ${PHP_VERSION_REQD} 128_PHP_VERSION= ${PHP_VERSION_REQD}
129.endif 129.endif
130# if the default is already installed, it is first choice 130# if the default is already installed, it is first choice
131.if !defined(_PHP_VERSION) 131.if !defined(_PHP_VERSION)
132.if defined(_PHP_VERSION_${PHP_VERSION_DEFAULT}_OK) 132.if defined(_PHP_VERSION_${PHP_VERSION_DEFAULT}_OK)
133.if defined(_PHP_VERSION_${PHP_VERSION_DEFAULT}_INSTALLED) 133.if defined(_PHP_VERSION_${PHP_VERSION_DEFAULT}_INSTALLED)
134_PHP_VERSION= ${PHP_VERSION_DEFAULT} 134_PHP_VERSION= ${PHP_VERSION_DEFAULT}
135.endif 135.endif
136.endif 136.endif
137.endif 137.endif
138# prefer an already installed version, in order of "accepted" 138# prefer an already installed version, in order of "accepted"
139.if !defined(_PHP_VERSION) 139.if !defined(_PHP_VERSION)
140.for pv in ${PHP_VERSIONS_ACCEPTED} 140.for pv in ${PHP_VERSIONS_ACCEPTED}
141.if defined(_PHP_VERSION_${pv}_INSTALLED) 141.if defined(_PHP_VERSION_${pv}_INSTALLED)
142_PHP_VERSION?= ${pv} 142_PHP_VERSION?= ${pv}
143.else 143.else
144# keep information as last resort - see below 144# keep information as last resort - see below
145_PHP_VERSION_FIRSTACCEPTED?= ${pv} 145_PHP_VERSION_FIRSTACCEPTED?= ${pv}
146.endif 146.endif
147.endfor 147.endfor
148.endif 148.endif
149# if the default is OK for the addon pkg, take this 149# if the default is OK for the addon pkg, take this
150.if !defined(_PHP_VERSION) 150.if !defined(_PHP_VERSION)
151.if defined(_PHP_VERSION_${PHP_VERSION_DEFAULT}_OK) 151.if defined(_PHP_VERSION_${PHP_VERSION_DEFAULT}_OK)
152_PHP_VERSION= ${PHP_VERSION_DEFAULT} 152_PHP_VERSION= ${PHP_VERSION_DEFAULT}
153.endif 153.endif
154.endif 154.endif
155# take the first one accepted by the package 155# take the first one accepted by the package
156.if !defined(_PHP_VERSION) 156.if !defined(_PHP_VERSION)
157_PHP_VERSION= ${_PHP_VERSION_FIRSTACCEPTED} 157_PHP_VERSION= ${_PHP_VERSION_FIRSTACCEPTED}
158.endif 158.endif
159 159
160# 160#
161# Variable assignment for multi-PHP packages 161# Variable assignment for multi-PHP packages
162MULTI+= PHP_VERSION_REQD=${_PHP_VERSION} 162MULTI+= PHP_VERSION_REQD=${_PHP_VERSION}
163 163
164# export some of internal variables 164# export some of internal variables
165PKG_PHP_VERSION:= ${_PHP_VERSION:C/\.[0-9]//} 165PKG_PHP_VERSION:= ${_PHP_VERSION:C/\.[0-9]//}
166PKG_PHP:= PHP${_PHP_VERSION:C/([0-9])([0-9])/\1.\2/} 166PKG_PHP:= PHP${_PHP_VERSION:C/([0-9])([0-9])/\1.\2/}
167 167
168# Major version 168# Major version
169PKG_PHP_MAJOR_VERS:= ${_PHP_VERSION:C/^([0-9]).*/\1/} 169PKG_PHP_MAJOR_VERS:= ${_PHP_VERSION:C/^([0-9]).*/\1/}
170 170
171PHP_CHECK_INSTALLED?= Yes 171PHP_CHECK_INSTALLED?= Yes
172 172
173# if installed PHP isn't compatible with required PHP, bail out 173# if installed PHP isn't compatible with required PHP, bail out
174.if empty(PHP_CHECK_INSTALLED:M[nN][oO]) 174.if empty(PHP_CHECK_INSTALLED:M[nN][oO])
175.if defined(_PHP_INSTALLED) && !defined(_PHP_VERSION_${_PHP_VERSION}_INSTALLED) 175.if defined(_PHP_INSTALLED) && !defined(_PHP_VERSION_${_PHP_VERSION}_INSTALLED)
176PKG_FAIL_REASON+= "Package accepts ${PKG_PHP}, but different version is installed" 176PKG_FAIL_REASON+= "Package accepts ${PKG_PHP}, but different version is installed"
177.endif 177.endif
178.endif 178.endif
179 179
180MESSAGE_SUBST+= PKG_PHP_VERSION=${PKG_PHP_VERSION} \ 180MESSAGE_SUBST+= PKG_PHP_VERSION=${PKG_PHP_VERSION} \
181 PKG_PHP=${PKG_PHP} 181 PKG_PHP=${PKG_PHP}
182PLIST_SUBST+= PKG_PHP_VERSION=${PKG_PHP_VERSION} \ 182PLIST_SUBST+= PKG_PHP_VERSION=${PKG_PHP_VERSION} \
183 PKG_PHP_MAJOR_VERS=${PKG_PHP_MAJOR_VERS} \ 183 PKG_PHP_MAJOR_VERS=${PKG_PHP_MAJOR_VERS} \
184 PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR} 184 PHP_EXTENSION_DIR=${PHP_EXTENSION_DIR}
185 185
186# force the selected PHP version for recursive builds 186# force the selected PHP version for recursive builds
187PHP_VERSION_REQD:= ${PKG_PHP_VERSION} 187PHP_VERSION_REQD:= ${PKG_PHP_VERSION}
188 188
189# 189#
190# set variables for the version we decided to use: 190# set variables for the version we decided to use:
191# 191#
192.if ${_PHP_VERSION} == "55" 192.if ${_PHP_VERSION} == "55"
193PHPPKGSRCDIR= ../../lang/php55 193PHPPKGSRCDIR= ../../lang/php55
194PHP_VERSION= ${PHP55_VERSION} 194PHP_VERSION= ${PHP55_VERSION}
195PHP_INITIAL_TEENY= 1 195PHP_INITIAL_TEENY= 1
196PHP_PKG_PREFIX= php55 196PHP_PKG_PREFIX= php55
197PHP_EXTENSION_DIR= lib/php/${PHP55_RELDATE} 197PHP_EXTENSION_DIR= lib/php/${PHP55_RELDATE}
198.elif ${_PHP_VERSION} == "56" 198.elif ${_PHP_VERSION} == "56"
199PHPPKGSRCDIR= ../../lang/php56 199PHPPKGSRCDIR= ../../lang/php56
200PHP_VERSION= ${PHP56_VERSION} 200PHP_VERSION= ${PHP56_VERSION}
201PHP_INITIAL_TEENY= 3 201PHP_INITIAL_TEENY= 3
202PHP_PKG_PREFIX= php56 202PHP_PKG_PREFIX= php56
203PHP_EXTENSION_DIR= lib/php/${PHP56_RELDATE} 203PHP_EXTENSION_DIR= lib/php/${PHP56_RELDATE}
204.elif ${_PHP_VERSION} == "70" 204.elif ${_PHP_VERSION} == "70"
205PHPPKGSRCDIR= ../../lang/php70 205PHPPKGSRCDIR= ../../lang/php70
206PHP_VERSION= ${PHP70_VERSION} 206PHP_VERSION= ${PHP70_VERSION}
207PHP_INITIAL_TEENY= 0 207PHP_INITIAL_TEENY= 0
208PHP_PKG_PREFIX= php70 208PHP_PKG_PREFIX= php70
209PHP_EXTENSION_DIR= lib/php/${PHP70_RELDATE} 209PHP_EXTENSION_DIR= lib/php/${PHP70_RELDATE}
210.elif ${_PHP_VERSION} == "71" 210.elif ${_PHP_VERSION} == "71"
211PHPPKGSRCDIR= ../../lang/php71 211PHPPKGSRCDIR= ../../lang/php71
212PHP_VERSION= ${PHP71_VERSION} 212PHP_VERSION= ${PHP71_VERSION}
213PHP_INITIAL_TEENY= 0 213PHP_INITIAL_TEENY= 0
214PHP_PKG_PREFIX= php71 214PHP_PKG_PREFIX= php71
215PHP_EXTENSION_DIR= lib/php/${PHP71_RELDATE} 215PHP_EXTENSION_DIR= lib/php/${PHP71_RELDATE}
216.else 216.else
217# force an error 217# force an error
218PKG_FAIL_REASON+= "${PKG_PHP} is not a valid package" 218PKG_FAIL_REASON+= "${PKG_PHP} is not a valid package"
219.endif 219.endif
220 220
221_PHP_VER_MAJOR= ${PHP_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\1/} 221_PHP_VER_MAJOR= ${PHP_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\1/}
222_PHP_VER_MINOR= ${PHP_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\2/} 222_PHP_VER_MINOR= ${PHP_VERSION:C/([0-9]+)\.([0-9]+)\.([0-9]+)/\2/}
223 223
224PHP_BASE_VERS= ${_PHP_VER_MAJOR}.${_PHP_VER_MINOR}.${PHP_INITIAL_TEENY} 224PHP_BASE_VERS= ${_PHP_VER_MAJOR}.${_PHP_VER_MINOR}.${PHP_INITIAL_TEENY}
225 225
226# 226#
227# check installed version aginst required: 227# check installed version aginst required:
228# 228#
229.if !empty(PHP_CHECK_INSTALLED:M[nN][oO]) 229.if !empty(PHP_CHECK_INSTALLED:M[nN][oO])
230.if defined(_PHP_VERSION_INSTALLED) && ${_PHP_VERSION} != ${_PHP_VERSION_INSTALLED} 230.if defined(_PHP_VERSION_INSTALLED) && ${_PHP_VERSION} != ${_PHP_VERSION_INSTALLED}
231PKG_FAIL_REASON+= "${PKGBASE} requires ${PKG_PHP}, but php-${_PHP_VERSION_INSTALLED} is already installed." 231PKG_FAIL_REASON+= "${PKGBASE} requires ${PKG_PHP}, but php-${_PHP_VERSION_INSTALLED} is already installed."
232.endif 232.endif
233.endif 233.endif
234 234
235.endif # PHPVERSION_MK 235.endif # PHPVERSION_MK

cvs diff -r1.3 -r1.4 pkgsrc/lang/php71/Attic/distinfo (switch to unified diff)

--- pkgsrc/lang/php71/Attic/distinfo 2016/08/13 17:34:41 1.3
+++ pkgsrc/lang/php71/Attic/distinfo 2016/08/22 03:21:17 1.4
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1$NetBSD: distinfo,v 1.3 2016/08/13 17:34:41 taca Exp $ 1$NetBSD: distinfo,v 1.4 2016/08/22 03:21:17 taca Exp $
2 2
3SHA1 (php-7.1.0beta2.tar.bz2) = afee69f869f5f74debfeae80f2a7b651a98d153e 3SHA1 (php-7.1.0beta3.tar.bz2) = 35988a620143716d60532aaf0582383d8bba497b
4RMD160 (php-7.1.0beta2.tar.bz2) = eef00755c2a5d54223dc723a4e4cec8c80bec417 4RMD160 (php-7.1.0beta3.tar.bz2) = 98c3586a296ea9e14127626884dabbb66bc63636
5SHA512 (php-7.1.0beta2.tar.bz2) = b41796025beb4efab15302bb38477e176e3831ff6be12e1402d100d6db9a6373cc66c53fe35815b767efbfae84775ba2f55e113b1e7a2587f6ea8d60604bd357 5SHA512 (php-7.1.0beta3.tar.bz2) = 72b96204b82b78a974af4ca9077304a162a6d02628e3aced01df028de666299aeaf4d7234888b3bd7e62501dc8c0f1f15444e5b94c829f2a4854752d8eeaeb55
6Size (php-7.1.0beta2.tar.bz2) = 15398914 bytes 6Size (php-7.1.0beta3.tar.bz2) = 15463449 bytes
7SHA1 (patch-acinclude.m4) = b682280fd89950c082c2226bdb7364b0dc475bad 7SHA1 (patch-acinclude.m4) = b682280fd89950c082c2226bdb7364b0dc475bad
8SHA1 (patch-configure) = a129e19ef87338f6e53ccc967c40ddcde7c7357c 8SHA1 (patch-configure) = a129e19ef87338f6e53ccc967c40ddcde7c7357c
9SHA1 (patch-ext_gd_config.m4) = 93b62daad93b9ee6dc28e06016f739bc26b0dc9f 9SHA1 (patch-ext_gd_config.m4) = 93b62daad93b9ee6dc28e06016f739bc26b0dc9f
10SHA1 (patch-ext_imap_config.m4) = f4e10ab81697b72019313f63bc630627a08efd92 10SHA1 (patch-ext_imap_config.m4) = f4e10ab81697b72019313f63bc630627a08efd92
11SHA1 (patch-ext_pcre_pcrelib_config.h) = 0cb05c3b3bfafd8119cf43162c0f4db7f5b37ba8 11SHA1 (patch-ext_pcre_pcrelib_config.h) = 0cb05c3b3bfafd8119cf43162c0f4db7f5b37ba8
12SHA1 (patch-ext_pdo__mysql_config.m4) = b1ef91be5a729040197e9af50da0f5fd1f6c90a8 12SHA1 (patch-ext_pdo__mysql_config.m4) = b1ef91be5a729040197e9af50da0f5fd1f6c90a8
13SHA1 (patch-ext_pdo_config.m4) = 522281775cc0e70a135b1f813158988ef1f3e244 13SHA1 (patch-ext_pdo_config.m4) = 522281775cc0e70a135b1f813158988ef1f3e244
14SHA1 (patch-ext_phar_Makefile.frag) = 558869b60f8ed6674a3ba1d595a65f010df4c426 14SHA1 (patch-ext_phar_Makefile.frag) = 558869b60f8ed6674a3ba1d595a65f010df4c426
15SHA1 (patch-ext_phar_phar_phar.php) = f630e3946b21b76d4fe857a43e00e25c9445f2c8 15SHA1 (patch-ext_phar_phar_phar.php) = f630e3946b21b76d4fe857a43e00e25c9445f2c8
16SHA1 (patch-ext_recode_recode.c) = a97a1815d6a41410f68c289debbb9396128a2159 16SHA1 (patch-ext_recode_recode.c) = a97a1815d6a41410f68c289debbb9396128a2159
17SHA1 (patch-ext_sqlite3_libsqlite_sqlite3.c) = 8a529a1b3f7c97731f2e719d006f67c3a7259bb5 17SHA1 (patch-ext_sqlite3_libsqlite_sqlite3.c) = 8a529a1b3f7c97731f2e719d006f67c3a7259bb5
18SHA1 (patch-ext_standard_basic__functions.c) = f97a2748c7b15fbd9a2d3c21e56079088cc05d56 18SHA1 (patch-ext_standard_basic__functions.c) = f97a2748c7b15fbd9a2d3c21e56079088cc05d56
19SHA1 (patch-ext_standard_php__dns.h) = 3687ceac4dff4605263b53acb761b071f7446ccb 19SHA1 (patch-ext_standard_php__dns.h) = 3687ceac4dff4605263b53acb761b071f7446ccb
20SHA1 (patch-makedist) = 2ac0e0391c031c4fcf4993e2269cde4c6bfddfd5 20SHA1 (patch-makedist) = 2ac0e0391c031c4fcf4993e2269cde4c6bfddfd5
21SHA1 (patch-php.ini-development) = dd65962000ec06439fae3c9bf252fa46be4e33fd 21SHA1 (patch-php.ini-development) = dd65962000ec06439fae3c9bf252fa46be4e33fd
22SHA1 (patch-php.ini-production) = ae61dffedf574b688fe576b0b2af748b7a28cd89 22SHA1 (patch-php.ini-production) = ae61dffedf574b688fe576b0b2af748b7a28cd89
23SHA1 (patch-run-tests.php) = 86c4d3f03eb8e31b5a35820f426533c9478571fb 23SHA1 (patch-run-tests.php) = 86c4d3f03eb8e31b5a35820f426533c9478571fb
24SHA1 (patch-sapi_cgi_Makefile.frag) = 18769900f588ff81cc34474542afa1d65c070e65 24SHA1 (patch-sapi_cgi_Makefile.frag) = 18769900f588ff81cc34474542afa1d65c070e65
25SHA1 (patch-sapi_cli_Makefile.frag) = 1cd29d09042863acbf5330e406410fdcf75d06b3 25SHA1 (patch-sapi_cli_Makefile.frag) = 1cd29d09042863acbf5330e406410fdcf75d06b3
26SHA1 (patch-sapi_fpm_fpm_events_port.c) = 0f10fdb32fb7cab58e2abda49fb1fc658c410150 26SHA1 (patch-sapi_fpm_fpm_events_port.c) = 0f10fdb32fb7cab58e2abda49fb1fc658c410150
27SHA1 (patch-sapi_fpm_php-fpm.conf.in) = b3c4fd499cbfd2dffd9176abb54e298ea542a5d7 27SHA1 (patch-sapi_fpm_php-fpm.conf.in) = b3c4fd499cbfd2dffd9176abb54e298ea542a5d7