diff options
author | Remi Collet <remi@remirepo.net> | 2021-05-08 15:10:07 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-05-08 15:10:07 +0200 |
commit | d6948952497a2d0417a71998b54a4ed33302933e (patch) | |
tree | c8c85e71ffd3f747918039666ab7494f9a472f59 /php.spec | |
parent | 099239366ef4ee31427d42786eef4c2c2b65d279 (diff) |
get rid of inet_ntoa, inet_aton, inet_addr and gethostbyaddr calls
Diffstat (limited to 'php.spec')
-rw-r--r-- | php.spec | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -105,7 +105,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: %{?scl_prefix}php Version: %{upver}%{?lower:~%{lower}}%{?gh_date:.%{gh_date}} -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 @@ -145,7 +145,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 @@ -912,8 +915,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 @@ -1803,6 +1807,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 |