summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--PHPINFO2
-rw-r--r--REFLECTION2
-rw-r--r--php-pecl-excimer.spec31
3 files changed, 20 insertions, 15 deletions
diff --git a/PHPINFO b/PHPINFO
index 7530a80..188a292 100644
--- a/PHPINFO
+++ b/PHPINFO
@@ -2,7 +2,7 @@
excimer
excimer support => enabled
-excimer version => 1.2.1
+excimer version => 1.2.3
Directive => Local Value => Master Value
excimer.default_max_depth => 1000 => 1000
diff --git a/REFLECTION b/REFLECTION
index ebd8b44..ecdf797 100644
--- a/REFLECTION
+++ b/REFLECTION
@@ -1,4 +1,4 @@
-Extension [ <persistent> extension #96 excimer version 1.2.1 ] {
+Extension [ <persistent> extension #126 excimer version 1.2.3 ] {
- Dependencies {
}
diff --git a/php-pecl-excimer.spec b/php-pecl-excimer.spec
index eaf33df..f02a0e1 100644
--- a/php-pecl-excimer.spec
+++ b/php-pecl-excimer.spec
@@ -20,7 +20,7 @@
Summary: Interrupting timer and low-overhead sampling profiler
Name: %{?scl_prefix}php-pecl-%{pecl_name}
-Version: 1.2.2
+Version: 1.2.3
Release: 1%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}
License: Apache-2.0
URL: https://pecl.php.net/package/%{pecl_name}
@@ -85,13 +85,16 @@ EOF
cd %{sources}
%{__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 %{?_smp_mflags}
+
+%make_build
%if %{with_zts}
cd ../ZTS
@@ -99,15 +102,15 @@ cd ../ZTS
--enable-excimer \
--with-libdir=%{_lib} \
--with-php-config=%{__ztsphpconfig}
-make %{?_smp_mflags}
+
+%make_build
%endif
%install
%{?dtsenable}
-make -C NTS \
- install INSTALL_ROOT=%{buildroot}
+%make_install -C NTS
# install config file
install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
@@ -116,8 +119,7 @@ install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name}
install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml
%if %{with_zts}
-make -C ZTS \
- install INSTALL_ROOT=%{buildroot}
+%make_install -C ZTS
install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name}
%endif
@@ -132,6 +134,9 @@ done
cd %{sources}
# erratic results, randomly fails in mock
rm tests/cpu.phpt
+if [ $(%{__php} -r 'echo PHP_VERSION_ID;') -ge 80400 ]; then
+rm tests/maxDepth.phpt
+fi
OPT="-q -P --show-diff"
%if "%{php_version}" > "7.4"
@@ -154,12 +159,6 @@ TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_extdir}/%{pecl_name}.so" \
%{__ztsphp} --no-php-ini \
--define extension=%{buildroot}/%{php_ztsextdir}/%{pecl_name}.so \
--modules | grep '^%{pecl_name}$'
-
-%if %{with tests}
-# Upstream test suite for ZTS extension
-TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_ztsextdir}/%{pecl_name}.so" \
-%{__ztsphp} -n run-tests.php $OPT
-%endif
%endif
@@ -178,6 +177,12 @@ TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_ztsextdir}/%{pecl_name}.so" \
%changelog
+* Fri Nov 15 2024 Remi Collet <remi@remirepo.net> - 1.2.3-1
+- update to 1.2.3
+
+* Tue Oct 1 2024 Remi Collet <remi@remirepo.net> - 1.2.2-2
+- ignore 1 test failing with 8.4
+
* Wed Jul 31 2024 Remi Collet <remi@remirepo.net> - 1.2.2-1
- update to 1.2.2
- drop patch merged upstream