diff options
author | Remi Collet <remi@remirepo.net> | 2023-04-21 15:22:35 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2023-04-21 15:22:35 +0200 |
commit | c41b8d935894dcff746ffbcdac3527bdf3e19f05 (patch) | |
tree | 644fd7091df45eccc2800bbf45bce303aee97e4e /php80.spec | |
parent | 4d58e98192ed9e1498dcac6dcc44965fb2894389 (diff) |
use ICU 72.1
use oracle client library version 21.10
fix missing TZData version in intl phpinfo
fix possible buffer overflow in date
Diffstat (limited to 'php80.spec')
-rw-r--r-- | php80.spec | 19 |
1 files changed, 14 insertions, 5 deletions
@@ -24,7 +24,7 @@ %global mysql_sock %(mysql_config --socket 2>/dev/null || echo /var/lib/mysql/mysql.sock) -%global oraclever 21.8 +%global oraclever 21.10 %global oraclelib 21.1 # Build for LiteSpeed Web Server (LSAPI), you can disable using --without tests @@ -107,7 +107,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: 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 @@ -173,6 +173,8 @@ Patch49: php-8.0.10-phar-sha.patch Patch50: php-8.0.21-openssl3.patch # use system libxcrypt, from 8.1 Patch51: php-8.0.13-crypt.patch +# display TZData version for intl +Patch52: php-8.0.28-intlinfo.patch # RC Patch Patch91: php-7.2.0-oci8conf.patch @@ -1023,9 +1025,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) >= 71 -BuildRequires: pkgconfig(icu-io) >= 71 -BuildRequires: pkgconfig(icu-uc) >= 71 +BuildRequires: pkgconfig(icu-i18n) >= 72 +BuildRequires: pkgconfig(icu-io) >= 72 +BuildRequires: pkgconfig(icu-uc) >= 72 %if 0%{?rhel} == 7 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 @@ -1190,6 +1192,7 @@ in pure PHP. rm ext/openssl/tests/p12_with_extra_certs.p12 %endif %patch51 -p1 -b .libxcrypt +%patch52 -p1 -b .intlinfo %patch91 -p1 -b .remi-oci8 @@ -2199,6 +2202,12 @@ fi %changelog +* Fri Apr 21 2023 Remi Collet <remi@remirepo.net> - 8.0.28-3 +- use ICU 72.1 +- use oracle client library version 21.10 +- fix missing TZData version in intl phpinfo +- fix possible buffer overflow in date + * Tue Feb 21 2023 Remi Collet <remi@remirepo.net> - 8.0.28-2 - F38: enable imap extension |