diff options
| -rw-r--r-- | PHPINFO | 4 | ||||
| -rw-r--r-- | REFLECTION | 2 | ||||
| -rw-r--r-- | composer.json | 13 | ||||
| -rw-r--r-- | php-pecl-xpass.spec | 12 |
4 files changed, 22 insertions, 9 deletions
@@ -2,10 +2,10 @@ xpass Extended password support => enabled -Extension version => 1.2.0 +Extension version => 1.2.1 libxcrypt version => 4.5.2 Author => Remi Collet -License => PHP-3.01 +License => BSD-3-Clause sha512 hash => yes yescrypt hash => yes sm3 hash => yes @@ -1,4 +1,4 @@ -Extension [ <persistent> extension #129 xpass version 1.2.0 ] { +Extension [ <persistent> extension #135 xpass version 1.2.1 ] { - Constants [20] { Constant [ <persistent> string CRYPT_PREFIX_STD_DES ] { } diff --git a/composer.json b/composer.json index 9e7fd3c..015fedf 100644 --- a/composer.json +++ b/composer.json @@ -1,13 +1,22 @@ { "name": "remi/xpass", "type": "php-ext", - "license": "PHP-3.01", + "license": "BSD-3-Clause", "description": "Extended password extension", "require": { "php": ">= 8.0.0" }, "php-ext": { "extension-name": "xpass", - "configure-options": [] + "configure-options": [ + { + "name": "enable-xpass", + "description": "Enable xpass support" + }, { + "name": "with-xpass-dlopen", + "description": "dlopen libcrypt library at runtime (workaround for MUSL)", + "needs-value": true + } + ] } } diff --git a/php-pecl-xpass.spec b/php-pecl-xpass.spec index aaec13d..b6cd413 100644 --- a/php-pecl-xpass.spec +++ b/php-pecl-xpass.spec @@ -16,7 +16,7 @@ %global pie_proj xpass %global pecl_name xpass %global ini_name 40-%{pecl_name}.ini -%global upstream_version 1.2.0 +%global upstream_version 1.2.1 #global upstream_prever RC1 %global sources %{archivename} %global _configure ../%{sources}/configure @@ -29,12 +29,12 @@ # for EL-8 to avoid TAG usage %global archivename %{gh_proj}-%{upstream_version}%{?upstream_prever} -Summary: Extended password extension Name: %{?scl_prefix}php-pecl-%{pecl_name} +Summary: Extended password extension +License: BSD-3-Clause Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} +Release: 1%{?dist} %forgemeta -Release: 2%{?dist} -License: PHP-3.01 URL: %{forgeurl} Source0: %{forgesource} @@ -196,6 +196,10 @@ TEST_PHP_ARGS="-n -d extension=%{buildroot}/%{php_ztsextdir}/%{pecl_name}.so" \ %changelog +* Fri Apr 17 2026 Remi Collet <remi@remirepo.net> - 1.2.1-1 +- update to 1.2.1 +- PHP License updated from version 3 to version 4 (BSD-3-Clause) + * Wed Mar 11 2026 Remi Collet <remi@remirepo.net> - 1.2.0-2 - drop pear/pecl dependency - sources from github |
