# remirepo spec file for php-pecl-rnp # # SPDX-FileCopyrightText: Copyright 2022-2025 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-rnp} %bcond_without tests %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global pecl_name rnp %global ini_name 40-%{pecl_name}.ini %global upstream_version 0.2.0 #global upstream_prever a1 %global sources %{archivename} %global _configure ../%{sources}/configure # Github forge %global gh_vend rnpgp %global gh_proj php-rnp %global forgeurl https://github.com/%{gh_vend}/%{gh_proj} %global tag v%{upstream_version}%{?upstream_prever} # for EL-8 to avoid TAG usage %global archivename %{gh_proj}-%{upstream_version}%{?upstream_prever} Name: %{?scl_prefix}php-pecl-%{pecl_name} Summary: wrapper around the RNP library License: BSD-2-Clause Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} Release: 6%{?dist} %forgemeta URL: %{forgeurl} Source0: %{forgesource} Patch0: 11.patch Patch1: 13.patch BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel >= 8.0 BuildRequires: librnp-devel 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} # BNo PIE for now %description PHP extension for RNP - high performance OpenPGP implementation. 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 %setup -qc pushd %{sources} %patch -P0 -p1 %patch -P1 -p1 # Check version as upstream often forget to update this extver=$(sed -n '/define PHP_RNP_VERSION/{s/.* "//;s/".*$//;p}' php_rnp.h) if test "x${extver}" != "x%{upstream_version}%{?upstream_prever}%{?gh_date:-dev}"; then : Error: Upstream version is ${extver}, expecting %{upstream_version}%{?upstream_prever}%{?gh_date:-dev}. exit 1 fi popd mkdir NTS %if %{with_zts} mkdir ZTS %endif # Create configuration file cat > %{ini_name} << 'EOF' ; Enable %{pecl_name} extension module extension=%{pecl_name}.so EOF %build %{?dtsenable} peclconf() { %configure \ -with-rnp \ --with-php-config=$1 } cd %{sources} %{__phpize} cd ../NTS peclconf %{__phpconfig} make %{?_smp_mflags} %if %{with_zts} cd ../ZTS peclconf %{__ztsphpconfig} make %{?_smp_mflags} %endif %install %{?dtsenable} # Install the NTS stuff make -C NTS install INSTALL_ROOT=%{buildroot} install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} # Install the ZTS stuff %if %{with_zts} make -C ZTS install INSTALL_ROOT=%{buildroot} install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif %check : Minimal load test for NTS extension %{__php} --no-php-ini \ --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %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 %if %{with tests} cd %{sources} : Run upstream test suite TEST_PHP_ARGS="-n -d extension=%{buildroot}%{php_extdir}/%{pecl_name}.so" \ %{__php} -n run-tests.php -q --show-diff %{?_smp_mflags} %endif %files %license %{sources}/LICENSE %doc %{sources}/CREDITS %config(noreplace) %{php_inidir}/%{ini_name} %{php_extdir}/%{pecl_name}.so %if %{with_zts} %{php_ztsextdir}/%{pecl_name}.so %config(noreplace) %{php_ztsinidir}/%{ini_name} %endif %changelog * Thu Apr 2 2026 Remi Collet - 0.2.0-6 - drop pear/pecl dependency - sources from github * Thu Sep 25 2025 Remi Collet - 0.2.0-5 - rebuild for PHP 8.5.0RC1 * Thu Jul 31 2025 Remi Collet - 0.2.0-4 - fix behavior change with librnp 0.18 using patch from https://github.com/rnpgp/php-rnp/pull/11 - fix segfault in php_rnp_password_callback using patch from https://github.com/rnpgp/php-rnp/pull/13 - re-license spec file to CECILL-2.1 * Wed Aug 30 2023 Remi Collet - 0.2.0-3 - rebuild for PHP 8.3.0RC1 * Thu Jun 22 2023 Remi Collet - 0.2.0-2 - build out of sources tree * Wed Apr 5 2023 Remi Collet - 0.2.0-1 - update to 0.2.0 - drop patches merged upstream * Fri Oct 28 2022 Remi Collet - 1.2.8-2 - open https://github.com/rnpgp/php-rnp/pull/3 extension version - open https://github.com/rnpgp/php-rnp/pull/4 backend name/version - open https://github.com/rnpgp/php-rnp/pull/5 build warnings - open https://github.com/rnpgp/php-rnp/pull/6 skip test * Thu Oct 27 2022 Remi Collet - 1.2.8-1 - initial package