diff options
author | Remi Collet <remi@remirepo.net> | 2021-09-30 17:56:18 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-09-30 17:56:18 +0200 |
commit | 823e54412d65c2ee6bef9926d970a505b9a4cba3 (patch) | |
tree | c69818bd8705b8985a71e8c620cadc4fdcf57840 | |
parent | 9e4df0101f208bd697e4c7071b739a491a932fbf (diff) |
rebuild using ICU 69
-rw-r--r-- | php81.spec | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -99,7 +99,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: %{upver}%{?rcver:~%{lower}} -Release: 1%{?dist} +Release: 2%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -1004,9 +1004,9 @@ Summary: Internationalization extension for PHP applications # All files licensed under PHP version 3.01 License: PHP Requires: php-common%{?_isa} = %{version}-%{release} -BuildRequires: pkgconfig(icu-i18n) >= 65 -BuildRequires: pkgconfig(icu-io) >= 65 -BuildRequires: pkgconfig(icu-uc) >= 65 +BuildRequires: pkgconfig(icu-i18n) >= 69 +BuildRequires: pkgconfig(icu-io) >= 69 +BuildRequires: pkgconfig(icu-uc) >= 69 %if 0%{?rhel} Obsoletes: php53-intl, php53u-intl, php54-intl, php54w-intl, php55u-intl, php55w-intl, php56u-intl, php56w-intl Obsoletes: php70u-intl, php70w-intl, php71u-intl, php71w-intl, php72u-intl, php72w-intl @@ -1786,9 +1786,9 @@ install -D -m 644 %{SOURCE14} _fpmdoc/nginx-php.conf TESTCMD="$RPM_BUILD_ROOT%{_bindir}/php --no-php-ini" # Ensure all provided extensions are really there -for mod in core date filter hash libxml openssl pcntl pcre readline reflection session spl standard zlib +for mod in core date filter hash json libxml openssl pcntl pcre readline reflection session spl standard zlib do - $TESTCMD --modules | grep -qi $mod + $TESTCMD --modules | grep -i $mod done TESTCMD="$TESTCMD --define extension_dir=$RPM_BUILD_ROOT%{_libdir}/php/modules" @@ -1833,7 +1833,7 @@ do ini=20-${mod}.ini;; esac - $TESTCMD --modules | grep -qi $mod + $TESTCMD --modules | grep -i $mod # some extensions have their own config file if [ -f ${ini} ]; then @@ -2151,6 +2151,9 @@ fi %changelog +* Wed Sep 29 2021 Remi Collet <remi@remirepo.net> - 8.1.0~RC3-2 +- rebuild using ICU 69 + * Wed Sep 29 2021 Remi Collet <remi@remirepo.net> - 8.1.0~RC3-1 - update to 8.1.0RC3 |