# remirepo spec file for php-pecl-mcrypt # # Copyright (c) 2017-2024 Remi Collet # License: CC-BY-SA-4.0 # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %{?scl:%scl_package php-pecl-mcrypt} %bcond_without tests %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global pecl_name mcrypt %global ini_name 30-%{pecl_name}.ini %global sources %{pecl_name}-%{version} %global _configure ../%{sources}/configure Summary: Bindings for the libmcrypt library Name: %{?scl_prefix}php-pecl-mcrypt Version: 1.0.7 Release: 2%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: PHP-3.01 URL: https://pecl.php.net/package/mcrypt Source0: https://pecl.php.net/get/%{sources}.tgz Patch0: 19.patch BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel >= 7.2 BuildRequires: libmcrypt-devel BuildRequires: %{?scl_prefix}php-pear Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} Provides: %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} # Set epoch so provides is > 0:7.1 Obsoletes: %{?scl_prefix}php-%{pecl_name} < 7.2 Provides: %{?scl_prefix}php-%{pecl_name} = 1:%{version}-%{release} Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = 1:%{version}-%{release} %description Provides bindings for the unmaintained libmcrypt. Package built for PHP %(%{__php} -r 'echo PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')%{?scl: as Software Collection (%{scl} by %{scl_vendor})}. %prep %setup -c -q # Don't install/register tests sed -e 's/role="test"/role="src"/' \ -e '/LICENSE/s/role="doc"/role="src"/' \ -i package.xml cd %{sources} %patch -P0 -p1 # Sanity check, really often broken extver=$(sed -n '/#define PHP_MCRYPT_VERSION/{s/.* "//;s/".*$//;p}' php_mcrypt.h) if test "x${extver}" != "x%{version}%{?prever}"; then : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever}. exit 1 fi cd .. : Create the configuration file cat >%{ini_name} << 'EOF' ; Enable %{pecl_name} extension module extension=%{pecl_name} EOF mkdir NTS %if %{with_zts} mkdir ZTS %endif %build %{?dtsenable} cd %{sources} %{__phpize} [ -f Makefile.global ] && GLOBAL=Makefile.global || GLOBAL=build/Makefile.global sed -e 's/INSTALL_ROOT/DESTDIR/' -i $GLOBAL cd ../NTS %configure \ --with-mcrypt \ --with-php-config=%{__phpconfig} %make_build %if %{with_zts} cd ../ZTS %configure \ --with-mcrypt \ --with-php-config=%{__ztsphpconfig} %make_build %endif %install %{?dtsenable} %make_install -C NTS install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} # Install XML package description install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml %if %{with_zts} %make_install -C ZTS install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif # Documentation cd %{sources} for i in $(grep 'role="doc"' ../package.xml | sed -e 's/^.*name="//;s/".*$//') do install -Dpm 644 $i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i done %check cd %{sources} # Warning: Use of undefined constant MCRYPT_CBC - assumed 'MCRYPT_CBC' rm tests/bug8040.phpt : minimal load test of NTS extension %{__php} --no-php-ini \ --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %if "%{php_version}" > "7.4" OPT="%{?_smp_mflags} -q --show-diff" %else OPT="-q --show-diff" %endif %if %{with tests} : upstream test suite for NTS extension TEST_PHP_EXECUTABLE=%{__php} \ TEST_PHP_ARGS="-n -d extension=%{buildroot}%{php_extdir}/%{pecl_name}.so" \ %{__php} -n run-tests.php $OPT %endif %if %{with_zts} : minimal load test of ZTS extension %{__ztsphp} --no-php-ini \ --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %endif %files %license %{sources}/LICENSE %{pecl_xmldir}/%{name}.xml %config(noreplace) %{php_inidir}/%{ini_name} %{php_extdir}/%{pecl_name}.so %if %{with_zts} %config(noreplace) %{php_ztsinidir}/%{ini_name} %{php_ztsextdir}/%{pecl_name}.so %endif %changelog * Wed Jul 10 2024 Remi Collet - 1.0.7-2 - fix build with PHP 8.4 using patch from https://github.com/php/pecl-encryption-mcrypt/pull/19 * Tue Dec 19 2023 Remi Collet - 1.0.7-1 - update to 1.0.7 (no change) * Fri Sep 1 2023 Remi Collet - 1.0.6-2 - build out of sources tree * Wed Mar 1 2023 Remi Collet - 1.0.6-1 - update to 1.0.6 (no change) * Mon May 23 2022 Remi Collet - 1.0.5-1 - update to 1.0.5 * Wed Sep 01 2021 Remi Collet - 1.0.4-5 - rebuild for 8.1.0RC1 * Wed Jun 9 2021 Remi Collet - 1.0.4-4 - add upstream patch for test suite with PHP 8.1 - run tests in parallel (7.4+) * Fri Apr 30 2021 Remi Collet - 1.0.4-3 - F34 rebuild for https://github.com/remicollet/remirepo/issues/174 * Wed Dec 2 2020 Remi Collet - 1.0.4-1 - update to 1.0.4 * Fri Nov 27 2020 Remi Collet - 1.0.3-4 - add upstream patches for PHP 8 * Wed Sep 18 2019 Remi Collet - 1.0.3-1 - update to 1.0.3 (no change) * Tue Sep 03 2019 Remi Collet - 1.0.2-4 - rebuild for 7.4.0RC1 * Tue Jul 23 2019 Remi Collet - 1.0.2-3 - rebuild for 7.4.0beta1 * Fri Feb 8 2019 Remi Collet - 1.0.2-2 - fix upgrade patch from other 3rd party repo * Fri Jan 11 2019 Remi Collet - 1.0.2-1 - update to 1.0.2 * Thu Aug 16 2018 Remi Collet - 1.0.1-8 - rebuild for 7.3.0beta2 new ABI * Wed Jul 18 2018 Remi Collet - 1.0.1-7 - rebuild for 7.3.0alpha4 new ABI * Mon May 28 2018 Remi Collet - 1.0.1-6 - manage update from other 3rd party repo * Wed Jan 10 2018 Remi Collet - 1.0.1-5 - use run-tests.php instead of make test * Tue Jul 18 2017 Remi Collet - 1.0.1-4 - rebuild for PHP 7.2.0beta1 new API * Fri Jul 7 2017 Remi Collet - 1.0.1-3 - drop .so extension for configuration file * Wed Jun 21 2017 Remi Collet - 1.0.1-2 - rebuild for 7.2.0alpha2 * Wed Apr 12 2017 Remi Collet - 1.0.1-1 - New spec for version 1.0.1 (PHP 7.2)