diff options
author | Remi Collet <remi@remirepo.net> | 2021-05-08 15:09:58 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-05-08 15:09:58 +0200 |
commit | f76d8bc2c99ec7bf765ac6fd50f5871ce58f2f48 (patch) | |
tree | b97efeef5b9962b4b75b0dfa39a611c83fb84702 /php80.spec | |
parent | 6f3d136f34f21de200c9434210ea15182a9cec7f (diff) |
get rid of inet_ntoa, inet_aton, inet_addr and gethostbyaddr calls
Diffstat (limited to 'php80.spec')
-rw-r--r-- | php80.spec | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -92,7 +92,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 @@ -130,7 +130,10 @@ Patch1: php-7.4.0-httpd.patch Patch5: php-7.2.0-includedir.patch Patch6: php-8.0.0-embed.patch Patch8: php-7.4.0-libdb.patch -Patch9: php-7.0.7-curl.patch +# get rid of deprecated functions from 8.1 +Patch9: php-8.0.6-deprecated.patch +# RHEL backports +Patch10: php-7.0.7-curl.patch # Functional changes # Use system nikic/php-parser @@ -1136,8 +1139,9 @@ in pure PHP. %patch5 -p1 -b .includedir %patch6 -p1 -b .embed %patch8 -p1 -b .libdb +%patch9 -p1 -b .deprecated %if 0%{?rhel} -%patch9 -p1 -b .curltls +%patch10 -p1 -b .curltls %endif %patch41 -p1 -b .syslib @@ -2138,6 +2142,9 @@ fi %changelog +* Sat May 8 2021 Remi Collet <remi@remirepo.net> - 8.0.6-2 +- get rid of inet_ntoa, inet_aton, inet_addr and gethostbyaddr calls + * Wed May 5 2021 Remi Collet <remi@remirepo.net> - 8.0.6-1 - Update to 8.0.6 - http://www.php.net/releases/8_0_6.php |