summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-02-15 10:19:25 +0100
committerRemi Collet <remi@remirepo.net>2018-02-15 10:19:25 +0100
commitbfa1f473867092b9e8d12ffdac26d2c9a7df101d (patch)
treec78642569955188bdf83014e0d5677bb5a244e52
parent10f1a2f0986a16f95482311daa0a4c854aff6514 (diff)
rebuild for new tag and drop patch merged upstream
drop ldconfig scriptlets on F28
-rw-r--r--failed.txt1
-rw-r--r--php-upstream.patch30
-rw-r--r--php.spec14
3 files changed, 12 insertions, 33 deletions
diff --git a/failed.txt b/failed.txt
index c7492c4..8a3bda9 100644
--- a/failed.txt
+++ b/failed.txt
@@ -1,6 +1,7 @@
===== 7.2.3RC1 (2018-03-01)
$ grep -r 'Tests failed' /var/lib/mock/scl72*/build.log
+
/var/lib/mock/scl72el6x/build.log:Tests failed : 0
/var/lib/mock/scl72el7x/build.log:Tests failed : 0
/var/lib/mock/scl70fc24x/build.log:Tests failed : 0
diff --git a/php-upstream.patch b/php-upstream.patch
deleted file mode 100644
index 5ffc5a9..0000000
--- a/php-upstream.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 528bc00d84cce18d74528677c156d6aec1b7fcd9 Mon Sep 17 00:00:00 2001
-From: Remi Collet <remi@php.net>
-Date: Wed, 14 Feb 2018 08:59:24 +0100
-Subject: [PATCH] Fix timezone var_dump from
- 51f2a5803fa4f09e212fed4b14ab8b4a003d4ef5
-
----
- ext/date/php_date.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/ext/date/php_date.c b/ext/date/php_date.c
-index 82ac9a6..2df19f7 100644
---- a/ext/date/php_date.c
-+++ b/ext/date/php_date.c
-@@ -2422,9 +2422,9 @@ static HashTable *date_object_get_debug_info_timezone(zval *object, int *is_temp
- zend_string *tmpstr = zend_string_alloc(sizeof("UTC+05:00")-1, 0);
-
- ZSTR_LEN(tmpstr) = snprintf(ZSTR_VAL(tmpstr), sizeof("+05:00"), "%c%02d:%02d",
-- tzobj->tzi.utc_offset > 0 ? '-' : '+',
-- abs(tzobj->tzi.utc_offset / 60),
-- abs((tzobj->tzi.utc_offset % 60)));
-+ tzobj->tzi.utc_offset < 0 ? '-' : '+',
-+ abs((int)(tzobj->tzi.utc_offset / 3600)),
-+ abs(((int)(tzobj->tzi.utc_offset % 3600) / 60)));
-
- ZVAL_NEW_STR(&zv, tmpstr);
- }
---
-2.1.4
-
diff --git a/php.spec b/php.spec
index f5a0c43..daf3d7e 100644
--- a/php.spec
+++ b/php.spec
@@ -130,7 +130,7 @@
Summary: PHP scripting language for creating dynamic web sites
Name: %{?scl_prefix}php
Version: %{upver}%{?rcver:~%{rcver}}
-Release: 2%{?dist}
+Release: 3%{?dist}
# All files licensed under PHP version 3.01, except
# Zend is licensed under Zend
# TSRM is licensed under BSD
@@ -182,7 +182,6 @@ Patch47: php-5.6.3-phpinfo.patch
Patch91: php-7.2.0-oci8conf.patch
# Upstream fixes (100+)
-Patch100: php-upstream.patch
# Security fixes (200+)
@@ -911,7 +910,6 @@ low-level PHP extension for the libsodium cryptographic library.
%patch91 -p1 -b .remi-oci8
# upstream patches
-%patch100 -p1 -b .upstream
# security patches
@@ -1665,6 +1663,12 @@ fi
%endif
+%if 0%{?fedora} < 28 && 0%{?rhel} < 8
+%post embedded -p /sbin/ldconfig
+%postun embedded -p /sbin/ldconfig
+%endif
+
+
%{!?_licensedir:%global license %%doc}
%files
@@ -1840,6 +1844,10 @@ fi
%changelog
+* Wed Feb 14 2018 Remi Collet <remi@remirepo.net> - 7.2.3~RC1-3
+- rebuild for new tag and drop patch merged upstream
+- drop ldconfig scriptlets on F28
+
* Wed Feb 14 2018 Remi Collet <remi@remirepo.net> - 7.2.3~RC1-2
- update to 7.2.3RC1
- adapt systzdata, fixheader and ldap_r patches