diff options
author | Remi Collet <remi@remirepo.net> | 2019-03-05 08:05:32 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-03-05 08:05:32 +0100 |
commit | 8c026d6051827ff72723439bda7650ab3f2d4322 (patch) | |
tree | 16c6f1ff2297c42862cd075a287106e782ba8f4a /php70.spec | |
parent | 9263effd14b58fdcb883b9388511ed58e28e07d0 (diff) |
Fix #77630 rename() across the device may allow unwanted access during processing
Diffstat (limited to 'php70.spec')
-rw-r--r-- | php70.spec | 24 |
1 files changed, 19 insertions, 5 deletions
@@ -112,7 +112,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: %{upver}%{?rcver:~%{rcver}} -Release: 4%{?dist} +Release: 5%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -183,6 +183,7 @@ Patch209: php-bug77431.patch Patch210: php-bug77540.patch Patch211: php-bug77563.patch Patch212: php-bug77586.patch +Patch213: php-bug77630.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1042,6 +1043,7 @@ echo CIBLE = %{name}-%{version}-%{release} oci8=%{with_oci8} libzip=%{with_libzi %patch210 -p1 -b .bug77540 %patch211 -p1 -b .bug77563 %patch212 -p1 -b .bug77586 +%patch213 -p1 -b .bug77630 # Fixes for tests %if 0%{?fedora} >= 21 || 0%{?rhel} >= 5 @@ -1818,10 +1820,18 @@ rm -rf $RPM_BUILD_ROOT%{_libdir}/php/modules/*.a \ rm -f README.{Zeus,QNX,CVS-RULES} -%pre common -%if %{?fedora}%{!?fedora:99} < 25 -echo -e "WARNING : Fedora %{fedora} is now EOL :" -echo -e "You should consider upgrading to a supported release.\n" +posttrans +%if %{?fedora}%{!?fedora:99} < 28 +cat << EOF +===================================================================== + + WARNING : PHP 7.0 have reached its "End of Life" in December 2018. + Even, if this package includes some of the important security fix, + backported from 7.1, + The UPGRADE to a maintained version is very strongly RECOMMENDED. + +===================================================================== +EOF %endif @@ -2055,6 +2065,10 @@ fi %changelog +* Tue Mar 5 2019 Remi Collet <remi@remirepo.net> - 7.0.33-5 +- Fix #77630 rename() across the device may allow unwanted access + during processing + * Mon Mar 4 2019 Remi Collet <remi@remirepo.net> - 7.0.33-4 - exif: Fix #77509 Uninitialized read in exif_process_IFD_in_TIFF |