# spec file for php-pecl-excimer # # SPDX-FileCopyrightText: Copyright 2021-2026 Remi Collet # SPDX-License-Identifier: CECILL-2.1 # http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt # # Please, preserve the changelog entries # %{?scl:%scl_package php-pecl-excimer} %bcond_without tests %global pecl_name excimer %global ini_name 40-%{pecl_name}.ini %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global _configure ../configure # Github forge %global gh_vend wikimedia %global gh_proj php-excimer %global forgeurl https://github.com/%{gh_vend}/%{gh_proj} %global tag %{version} Name: %{?scl_prefix}php-pecl-%{pecl_name} Summary: Interrupting timer and low-overhead sampling profiler License: Apache-2.0 Version: 1.2.6 Release: 1%{?dist} %forgemeta URL: %{forgeurl} Source0: %{forgesource} BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel >= 7.1 Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} # Extension Provides: %{?scl_prefix}php-%{pecl_name} = %{version} Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} # PECL Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} # No PIE for now %description Calls a user-defined callback when a one-shot or periodic timer expires. Also a sampling profiler backend, which aggregates backtraces collected by a periodic timer. Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. %prep %forgesetup mv timerlib/README.md timerlib-README.md # Sanity check, really often broken extver=$(sed -n '/#define PHP_EXCIMER_VERSION/{s/.* "//;s/".*$//;p}' php_excimer.h) if test "x${extver}" != "x%{version}"; then : Error: Upstream extension version is ${extver}, expecting %{version}. exit 1 fi mkdir NTS %if %{with_zts} mkdir ZTS %endif # Create configuration file cat > %{ini_name} << 'EOF' ; Enable %{pecl_name} extension module extension=%{pecl_name}.so ; Configuration ;excimer.default_max_depth = 1000 EOF %build %{?dtsenable} %{__phpize} [ -f Makefile.global ] && GLOBAL=Makefile.global || GLOBAL=build/Makefile.global sed -e 's/INSTALL_ROOT/DESTDIR/' -i $GLOBAL cd NTS %configure \ --enable-excimer \ --with-libdir=%{_lib} \ --with-php-config=%{__phpconfig} %make_build %if %{with_zts} cd ../ZTS %configure \ --enable-excimer \ --with-libdir=%{_lib} \ --with-php-config=%{__ztsphpconfig} %make_build %endif %install %{?dtsenable} %make_install -C NTS # install config file install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} %if %{with_zts} %make_install -C ZTS install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif %check # erratic results, randomly fails in mock rm tests/cpu.phpt OPT="-q -P --show-diff" %if "%{php_version}" > "7.4" OPT="$OPT %{?_smp_mflags}" %endif # Minimal load test for NTS extension %{__php} --no-php-ini \ --define extension=%{buildroot}/%{php_extdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %if %{with tests} # Upstream test suite for NTS extension TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_extdir}/%{pecl_name}.so" \ %{__php} -n run-tests.php $OPT %endif %if %{with_zts} # Minimal load test for ZTS extension %{__ztsphp} --no-php-ini \ --define extension=%{buildroot}/%{php_ztsextdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %endif %files %license LICENSE %doc *.md %doc stubs %config(noreplace) %{php_inidir}/%{ini_name} %{php_extdir}/%{pecl_name}.so %if %{with_zts} %config(noreplace) %{php_ztsinidir}/%{ini_name} %{php_ztsextdir}/%{pecl_name}.so %endif %changelog * Thu Apr 16 2026 Remi Collet - 1.2.6-1 - update to 1.2.6 - drop pear/pecl dependency - sources from github * Tue May 20 2025 Remi Collet - 1.2.5-1 - update to 1.2.5 - re-license spec file to CECILL-2.1 * Fri Nov 15 2024 Remi Collet - 1.2.3-1 - update to 1.2.3 * Tue Oct 1 2024 Remi Collet - 1.2.2-2 - ignore 1 test failing with 8.4 * Wed Jul 31 2024 Remi Collet - 1.2.2-1 - update to 1.2.2 - drop patch merged upstream * Fri Jul 12 2024 Remi Collet - 1.2.1-2 - add patch for PHP 8.4 from https://github.com/wikimedia/mediawiki-php-excimer/pull/8 * Thu Feb 29 2024 Remi Collet - 1.2.1-1 - update to 1.2.1 * Wed Feb 28 2024 Remi Collet - 1.2.0-1 - update to 1.2.0 * Fri Sep 1 2023 Remi Collet - 1.1.1-2 - build out of sources tree * Tue Mar 14 2023 Remi Collet - 1.1.1-1 - update to 1.1.1 - drop patch merged upstream * Fri Mar 3 2023 Remi Collet - 1.1.0-1 - update to 1.1.0 - fix build with PHP <= 7.3 using patch from https://github.com/wikimedia/mediawiki-php-excimer/pull/5 * Fri Aug 5 2022 Remi Collet - 1.0.4-2 - cleanup * Mon May 9 2022 Remi Collet - 1.0.4-1 - update to 1.0.4 - drop patch merged upstream * Wed May 4 2022 Remi Collet - 1.0.3-1 - update to 1.0.3 - fix build with PHP 7.1 using patch from https://github.com/wikimedia/php-excimer/pull/4 * Tue Oct 19 2021 Remi Collet - 1.0.2-1 - update to 1.0.2 - drop patches merged upstream * Wed Oct 6 2021 Remi Collet - 1.0.1-1 - update to 1.0.1 - drop patch merged upstream - add patch for PHP 8.1 from https://github.com/wikimedia/php-excimer/pull/2 - display extension version in phpinfo from https://github.com/wikimedia/php-excimer/pull/3 - enable ZTS build * Tue Mar 2 2021 Remi Collet - 1.0.0-1 - initial package - add build fix with PHP 8 from https://github.com/wikimedia/php-excimer/pull/1