diff options
| author | Remi Collet <remi@remirepo.net> | 2026-06-05 07:45:36 +0200 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2026-06-05 07:45:36 +0200 |
| commit | 23032782304b1a2322d2b72e8eb5bab8bfa5814a (patch) | |
| tree | e123ec96f138e77cd6fff6e6fcd4a1e418854837 | |
| parent | 34a57021733f3e70fbd06ff6be30489872b28f6d (diff) | |
| -rw-r--r-- | PHPINFO | 3 | ||||
| -rw-r--r-- | REFLECTION | 15 | ||||
| -rw-r--r-- | php-zstd.spec | 22 |
3 files changed, 24 insertions, 16 deletions
@@ -2,7 +2,7 @@ zstd Zstd support => enabled -Extension Version => 0.15.2 +Extension Version => 0.16.0 Interface Version => 1.5.7 APCu serializer ABI => 0 @@ -10,3 +10,4 @@ Directive => Local Value => Master Value zstd.output_compression => Off => Off zstd.output_compression_level => 3 => 3 zstd.output_compression_dict => no value => no value +zstd.apcu_compression_level => 3 => 3 @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #131 zstd version 0.15.2 ] { +Extension [ <persistent> extension #145 zstd version 0.16.0 ] { - Dependencies { Dependency [ apcu (Optional) ] @@ -14,14 +14,17 @@ Extension [ <persistent> extension #131 zstd version 0.15.2 ] { Entry [ zstd.output_compression_dict <ALL> ] Current = '' } + Entry [ zstd.apcu_compression_level <ALL> ] + Current = '3' + } } - Constants [5] { - Constant [ int ZSTD_COMPRESS_LEVEL_MIN ] { 1 } - Constant [ int ZSTD_COMPRESS_LEVEL_MAX ] { 22 } - Constant [ int ZSTD_COMPRESS_LEVEL_DEFAULT ] { 3 } - Constant [ int ZSTD_VERSION_NUMBER ] { 10507 } - Constant [ string ZSTD_VERSION_TEXT ] { 1.5.7 } + Constant [ <persistent> int ZSTD_COMPRESS_LEVEL_MIN ] { 1 } + Constant [ <persistent> int ZSTD_COMPRESS_LEVEL_MAX ] { 22 } + Constant [ <persistent> int ZSTD_COMPRESS_LEVEL_DEFAULT ] { 3 } + Constant [ <persistent> int ZSTD_VERSION_NUMBER ] { 10507 } + Constant [ <persistent> string ZSTD_VERSION_TEXT ] { 1.5.7 } } - Functions { diff --git a/php-zstd.spec b/php-zstd.spec index 4149a18..f3765f5 100644 --- a/php-zstd.spec +++ b/php-zstd.spec @@ -32,15 +32,15 @@ Summary: Zstandard extension Name: %{?scl_prefix}php-%{pecl_name} -Version: 0.15.2 -%forgemeta -Release: 3%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} %if %{with libzstd} License: MIT %else # bundled library is BSD-3-Clause License: MIT AND BSD-3-Clause %endif +Version: 0.16.0 +Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +%forgemeta URL: %{forgeurl} Source0: %{forgesource} @@ -60,13 +60,13 @@ Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} # PECL -Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version} -Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version} -Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} -Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} +Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version} +Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} +Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} # PIE -Provides: %{?scl_prefix}php-pie(%{pie_vend}/%{pie_proj}) = %{version} -Provides: %{?scl_prefix}php-%{pie_vend}-%{pie_proj} = %{version} +Provides: %{?scl_prefix}php-pie(%{pie_vend}/%{pie_proj}) = %{version} +Provides: %{?scl_prefix}php-%{pie_vend}-%{pie_proj} = %{version} %description @@ -119,6 +119,7 @@ extension = %{pecl_name}.so ;zstd.output_compression = Off ;zstd.output_compression_level = 3 ;zstd.output_compression_dict = +;zstd.apcu_compression_level = 3 EOF @@ -237,6 +238,9 @@ TEST_PHP_ARGS="-n -d extension=%{buildroot}%{php_extdir}/%{pecl_name}.so" \ %changelog +* Fri Jun 5 2026 Remi Collet <remi@remirepo.net> - 0.16.0-1 +- update to 0.16.0 + * Wed Mar 11 2026 Remi Collet <remi@remirepo.net> - 0.15.2-3 - drop pear/pecl dependency - sources from github |
