diff options
author | Remi Collet <remi@remirepo.net> | 2024-09-26 09:08:40 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-09-26 09:08:40 +0200 |
commit | 213418b31c95d0c8eb4f56c904a9eed6bcd3823f (patch) | |
tree | 7795c099a36c97538af4852811037fb8247479f5 | |
parent | 687add7dd0afae76ab32dce7fd4bc3e4587c0c3c (diff) |
-rw-r--r-- | php-pecl-msgpack.spec | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/php-pecl-msgpack.spec b/php-pecl-msgpack.spec index 6a0162a..7f4da45 100644 --- a/php-pecl-msgpack.spec +++ b/php-pecl-msgpack.spec @@ -71,8 +71,6 @@ If you ever wished to use JSON for convenience (storing an image with metadata) but could not for technical reasons (encoding, size, speed...), MessagePack is a perfect replacement. -This extension is still EXPERIMENTAL. - Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{?scl_vendor}%{!?scl_vendor:rh})}. @@ -148,20 +146,20 @@ cd ../ZTS %install %{?dtsenable} -# Install the NTS stuff +: Install the NTS stuff %make_install -C NTS install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} %if %{with_zts} -# Install the ZTS stuff +: Install the ZTS stuff %make_install -C ZTS install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif -# Install the package XML file +: Install the package XML file install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml -# Test & Documentation +: install Test and Documentation cd %{sources} for i in $(grep 'role="test"' ../package.xml | sed -e 's/^.*name="//;s/".*$//') do [ -f tests/$i ] && install -Dpm 644 tests/$i %{buildroot}%{pecl_testdir}/%{pecl_name}/tests/$i @@ -191,7 +189,7 @@ cd %{sources} : Minimal load test for NTS extension %{__php} --no-php-ini \ --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ - --modules | grep %{pecl_name} + --modules | grep '^%{pecl_name}$' %if %{with tests} : Upstream test suite for NTS extension @@ -203,7 +201,7 @@ TEST_PHP_ARGS="-n -d extension=apcu.so -d extension=%{buildroot}%{php_extdir}/%{ : Minimal load test for ZTS extension %{__ztsphp} --no-php-ini \ --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ - --modules | grep %{pecl_name} + --modules | grep '^%{pecl_name}$' %if %{with tests} : Upstream test suite for ZTS extension |