diff options
author | Remi Collet <remi@remirepo.net> | 2024-07-12 10:27:33 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-07-12 10:27:33 +0200 |
commit | 8ac75bc71b8f8333afb1a0606f5b24601aec3f49 (patch) | |
tree | 3ce9884ec6113f47d55c92b2c4bd1fd03046396a /php-pecl-pcov.spec | |
parent | 14670d11945bb18df829363393fc9d41d9927e77 (diff) |
add patch for PHP 8.4 from
https://github.com/krakjoe/pcov/pull/111
Diffstat (limited to 'php-pecl-pcov.spec')
-rw-r--r-- | php-pecl-pcov.spec | 38 |
1 files changed, 13 insertions, 25 deletions
diff --git a/php-pecl-pcov.spec b/php-pecl-pcov.spec index 3e6d84e..111cd01 100644 --- a/php-pecl-pcov.spec +++ b/php-pecl-pcov.spec @@ -1,6 +1,6 @@ # remirepo spec file for php-pecl-pcov # -# Copyright (c) 2019-2023 Remi Collet +# Copyright (c) 2019-2024 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # @@ -17,10 +17,12 @@ Summary: Code coverage driver Name: %{?scl_prefix}php-pecl-%{pecl_name} Version: 1.0.11 -Release: 3%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Release: 4%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: PHP-3.01 URL: https://pecl.php.net/package/%{pecl_name} -Source0: https://pecl.php.net/get/%{pecl_name}-%{version}.tgz +Source0: https://pecl.php.net/get/%{sources}.tgz + +Patch0: %{pecl_name}-php84.patch BuildRequires: make BuildRequires: %{?dtsprefix}gcc @@ -47,10 +49,12 @@ Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSIO # Don't install/register tests sed -e 's/role="test"/role="src"/' \ - %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ + -e '/LICENSE/s/role="doc"/role="src"/' \ -i package.xml cd %{sources} +%patch -P0 -p1 + # Sanity check, really often broken extver=$(sed -n '/#define PHP_PCOV_VERSION/{s/.* "//;s/".*$//;p}' php_pcov.h) if test "x${extver}" != "x%{version}%{?prever:-%{prever}}"; then @@ -132,26 +136,6 @@ do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i done -%if 0%{?fedora} < 24 && 0%{?rhel} < 8 -# when pear installed alone, after us -%triggerin -- %{?scl_prefix}php-pear -if [ -x %{__pecl} ] ; then - %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : -fi - -# posttrans as pear can be installed after us -%posttrans -if [ -x %{__pecl} ] ; then - %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : -fi - -%postun -if [ $1 -eq 0 -a -x %{__pecl} ] ; then - %{pecl_uninstall} %{pecl_name} >/dev/null || : -fi -%endif - - %check cd %{sources} @@ -180,7 +164,7 @@ REPORT_EXIT_STATUS=1 \ %files -%{?_licensedir:%license %{sources}/LICENSE} +%license %{sources}/LICENSE %doc %{pecl_docdir}/%{pecl_name} %{pecl_xmldir}/%{name}.xml @@ -194,6 +178,10 @@ REPORT_EXIT_STATUS=1 \ %changelog +* Fri Jul 12 2024 Remi Collet <remi@remirepo.net> - 1.0.11-4 +- add patch for PHP 8.4 from + https://github.com/krakjoe/pcov/pull/111 + * Wed Aug 30 2023 Remi Collet <remi@remirepo.net> - 1.0.11-3 - rebuild for PHP 8.3.0RC1 |