diff options
| -rw-r--r-- | php-pecl-ahocorasick.spec | 23 | 
1 files changed, 11 insertions, 12 deletions
diff --git a/php-pecl-ahocorasick.spec b/php-pecl-ahocorasick.spec index 75ac1ce..66c61fa 100644 --- a/php-pecl-ahocorasick.spec +++ b/php-pecl-ahocorasick.spec @@ -1,6 +1,6 @@  # remirepo spec file for php-pecl-ahocorasick  # -# Copyright (c) 2018-2020 Remi Collet +# Copyright (c) 2018-2021 Remi Collet  # License: CC-BY-SA  # http://creativecommons.org/licenses/by-sa/4.0/  # @@ -24,13 +24,14 @@  Summary:        Effective Aho-Corasick string pattern matching algorithm  Name:           %{?sub_prefix}php-pecl-%{pecl_name}  Version:        0.0.7 -Release:        4%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} +Release:        5%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}  License:        PHP and LGPLv3  URL:            https://pecl.php.net/package/%{pecl_name}  Source0:        https://pecl.php.net/get/%{pecl_name}-%{version}.tgz  Patch0:         https://patch-diff.githubusercontent.com/raw/ph4r05/php_aho_corasick/pull/22.patch +BuildRequires:  make  BuildRequires:  %{?dtsprefix}gcc  BuildRequires:  %{?scl_prefix}php-devel  BuildRequires:  %{?scl_prefix}php-pear @@ -43,22 +44,18 @@ Provides:       %{?scl_prefix}php-%{pecl_name}               = %{version}  Provides:       %{?scl_prefix}php-%{pecl_name}%{?_isa}       = %{version}  Provides:       %{?scl_prefix}php-pecl(%{pecl_name})         = %{version}  Provides:       %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} -%if "%{?scl_prefix}" != "%{?sub_prefix}" -Provides:       %{?scl_prefix}php-pecl-%{pecl_name}          = %{version}-%{release} -Provides:       %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa}  = %{version}-%{release} -%endif  %if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel}  # Other third party repo stuff -%if "%{php_version}" > "7.3" -Obsoletes:      php73-pecl-%{pecl_name} <= %{version} -%endif  %if "%{php_version}" > "7.4"  Obsoletes:      php74-pecl-%{pecl_name} <= %{version}  %endif -%if "%{php_version}" > "7.4" +%if "%{php_version}" > "8.0"  Obsoletes:      php80-pecl-%{pecl_name} <= %{version}  %endif +%if "%{php_version}" > "8.1" +Obsoletes:      php81-pecl-%{pecl_name} <= %{version} +%endif  %endif @@ -199,9 +196,8 @@ cd ../ZTS  : Upstream test suite  for ZTS extension  TEST_PHP_EXECUTABLE=%{_bindir}/zts-php \  TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{pecl_name}.so" \ -NO_INTERACTION=1 \  REPORT_EXIT_STATUS=1 \ -%{_bindir}/zts-php -n run-tests.php --show-diff +%{_bindir}/zts-php -n run-tests.php -q --show-diff  %endif  %endif @@ -221,6 +217,9 @@ REPORT_EXIT_STATUS=1 \  %changelog +* Wed Dec  1 2021 Remi Collet <remi@remirepo.net> - 0.0.7-5 +- rebuild +  * Thu Dec  3 2020 Remi Collet <remi@remirepo.net> - 0.0.7-4  - add patch for PHP 8 from    https://github.com/ph4r05/php_aho_corasick/pull/22  | 
