summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-09-29 08:49:19 +0200
committerRemi Collet <remi@remirepo.net>2018-09-29 08:49:19 +0200
commit0a98432bd04da634325a23d7bedfab168ef5ba8b (patch)
tree1da85e3cdb91afa7ce7f749cb2004f45fa24ae9c
parent278363e53b5d2e57daab53db52d01764726c7588 (diff)
update to 7.1.23RC1
use oracle client library version 18.3
-rw-r--r--be50a72715c141befe6f34ece660745da894aaf3.patch37
-rw-r--r--failed.txt2
-rw-r--r--php.spec12
3 files changed, 8 insertions, 43 deletions
diff --git a/be50a72715c141befe6f34ece660745da894aaf3.patch b/be50a72715c141befe6f34ece660745da894aaf3.patch
deleted file mode 100644
index 2bcf82d..0000000
--- a/be50a72715c141befe6f34ece660745da894aaf3.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From be50a72715c141befe6f34ece660745da894aaf3 Mon Sep 17 00:00:00 2001
-From: Jakub Zelenka <bukka@php.net>
-Date: Sun, 9 Sep 2018 18:53:37 +0100
-Subject: [PATCH] Fix ssl stream reneg limit test to print only after first
- renegotiation
-
-It has been reported that in some setup the test does multiple
-renegotiations which is allowed.
----
- ext/openssl/tests/stream_server_reneg_limit.phpt | 8 ++++++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
-diff --git a/ext/openssl/tests/stream_server_reneg_limit.phpt b/ext/openssl/tests/stream_server_reneg_limit.phpt
-index f0353351a23a..f033cbabe343 100644
---- a/ext/openssl/tests/stream_server_reneg_limit.phpt
-+++ b/ext/openssl/tests/stream_server_reneg_limit.phpt
-@@ -22,14 +22,18 @@ if(substr(PHP_OS, 0, 3) == 'WIN') {
- */
-
- $serverCode = <<<'CODE'
-+ $printed = false;
- $serverUri = "ssl://127.0.0.1:64321";
- $serverFlags = STREAM_SERVER_BIND | STREAM_SERVER_LISTEN;
- $serverCtx = stream_context_create(['ssl' => [
- 'local_cert' => __DIR__ . '/bug54992.pem',
- 'reneg_limit' => 0,
- 'reneg_window' => 30,
-- 'reneg_limit_callback' => function($stream) {
-- var_dump($stream);
-+ 'reneg_limit_callback' => function($stream) use (&$printed) {
-+ if (!$printed) {
-+ $printed = true;
-+ var_dump($stream);
-+ }
- }
- ]]);
-
diff --git a/failed.txt b/failed.txt
index 1dd356a..19e6171 100644
--- a/failed.txt
+++ b/failed.txt
@@ -1,4 +1,4 @@
-===== 7.1.22 (2018-09-13)
+===== 7.1.23RC1 (2018-09-28)
$ grep -r 'Tests failed' /var/lib/mock/scl71*/build.log
diff --git a/php.spec b/php.spec
index 4056aa1..4c4890f 100644
--- a/php.spec
+++ b/php.spec
@@ -55,7 +55,7 @@
%global mysql_sock %(mysql_config --socket 2>/dev/null || echo /var/lib/mysql/mysql.sock)
-%global oraclever 12.2
+%global oraclever 18.3
# Build for LiteSpeed Web Server (LSAPI)
%global with_lsws 1
@@ -120,8 +120,8 @@
%global db_devel libdb-devel
%endif
-%global upver 7.1.22
-#global rcver RC1
+%global upver 7.1.23
+%global rcver RC1
Summary: PHP scripting language for creating dynamic web sites
Name: %{?scl_prefix}php
@@ -183,7 +183,6 @@ Patch48: php-7.1.9-openssl-load-config.patch
Patch91: php-5.6.3-oci8conf.patch
# Upstream fixes (100+)
-Patch100: https://github.com/php/php-src/commit/be50a72715c141befe6f34ece660745da894aaf3.patch
# Security fixes (200+)
@@ -905,7 +904,6 @@ support for JavaScript Object Notation (JSON) to PHP.
%patch91 -p1 -b .remi-oci8
# upstream patches
-%patch100 -p1 -b .up1
# security patches
@@ -1846,6 +1844,10 @@ fi
%changelog
+* Sat Sep 29 2018 Remi Collet <remi@remirepo.net> - 7.1.23~RC1-1
+- update to 7.1.23RC1
+- use oracle client library version 18.3
+
* Tue Sep 11 2018 Remi Collet <remi@remirepo.net> - 7.1.22-1
- Update to 7.1.22 - http://www.php.net/releases/7_1_22.php