# remirepo spec file for php-pecl-ice # # SPDX-FileCopyrightText: Copyright 2020-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-ice} %global pecl_name ice %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} # After 20-json and 20-pdo %global ini_name 40-%{pecl_name}.ini %global upstream_version 1.11.0 #global upstream_prever alpha3 %global sources %{pecl_name}-%{upstream_version}%{?upstream_prever} %global _configure ../%{sources}/configure Summary: Simple and fast PHP framework Name: %{?scl_prefix}php-pecl-%{pecl_name} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} Release: 1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: BSD-3-Clause URL: https://pecl.php.net/package/%{pecl_name} Source0: https://pecl.php.net/get/%{sources}.tgz BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel >= 8.0 BuildRequires: %{?scl_prefix}php-pear BuildRequires: %{?scl_prefix}php-json BuildRequires: %{?scl_prefix}php-pdo Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} Requires: %{?scl_prefix}php-json%{?_isa} Requires: %{?scl_prefix}php-pdo%{?_isa} Provides: %{?scl_prefix}php-%{pecl_name} = %{version} Provides: %{?scl_prefix}php-%{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}-%{release} Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} %description Ice is a PHP framework frozen in C extension. 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 -q -c # Don't install/register tests sed -e 's/role="test"/role="src"/' \ -e '/LICENSE/s/role="doc"/role="src"/' \ -i package.xml cd %{sources} # Sanity check, really often broken extver=$(sed -n '/#define PHP_ICE_VERSION/{s/.* "//;s/".*$//;p}' php_ice.h) if test "x${extver}" != "x%{upstream_version}%{?upstream_prever}"; then : Error: Upstream extension version is ${extver}, expecting %{upstream_version}%{?upstream_prever}. exit 1 fi cd .. mkdir NTS %if %{with_zts} mkdir ZTS %endif # Create configuration file cat > %{ini_name} << 'EOF' ; Enable %{pecl_name} extension module extension=%{pecl_name}.so ; Configuration ;ice.cli_colors = On EOF %build %{?dtsenable} # see https://github.com/ice/framework/issues/315 export CFLAGS="%{optflags} -Wno-incompatible-pointer-types" cd %{sources} %{__phpize} sed -e 's/INSTALL_ROOT/DESTDIR/' -i build/Makefile.global cd ../NTS %configure \ --enable-ice \ --with-libdir=%{_lib} \ --with-php-config=%{__phpconfig} %make_build %if %{with_zts} cd ../ZTS %configure \ --enable-ice \ --with-libdir=%{_lib} \ --with-php-config=%{__ztsphpconfig} %make_build %endif %install %{?dtsenable} %make_install -C NTS # install config file 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 NTS : Minimal load test for NTS extension %{__php} --no-php-ini \ --define extension=json.so \ --define extension=pdo.so \ --define extension=%{buildroot}%{php_extdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %if %{with_zts} cd ../ZTS : Minimal load test for ZTS extension %{__ztsphp} --no-php-ini \ --define extension=json.so \ --define extension=pdo.so \ --define extension=%{buildroot}%{php_ztsextdir}/%{pecl_name}.so \ --modules | grep '^%{pecl_name}$' %endif %files %license %{sources}/LICENSE %doc %{pecl_docdir}/%{pecl_name} %{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 * Mon Jan 27 2025 Remi Collet - 1.11.0-1 - update to 1.11.0 - re-license spec file to CECILL-2.1 * Mon Feb 19 2024 Remi Collet - 1.10.1-2 - ignore incompatible-pointer-types errors, reported as https://github.com/ice/framework/issues/315 - build out of sources tree * Mon Feb 20 2023 Remi Collet - 1.10.1-1 - update to 1.10.1 * Mon Feb 13 2023 Remi Collet - 1.10.0-1 - update to 1.10.0 * Tue Jun 14 2022 Remi Collet - 1.9.0-1 - update to 1.9.0 * Fri Mar 26 2021 Remi Collet - 1.8.0-1 - update to 1.8.0 * Tue Feb 16 2021 Remi Collet - 1.8.0~alpha3-1 - update to 1.8.0alpha3 * Mon Feb 15 2021 Remi Collet - 1.8.0~alpha2-1 - update to 1.8.0alpha2 * Sun Sep 27 2020 Remi Collet - 1.7.0-1 - update to 1.7.0 * Sat Sep 12 2020 Remi Collet - 1.6.2-2 - new upstream fixed archive * Sat Sep 12 2020 Remi Collet - 1.6.2-1 - update to 1.6.2 - open https://github.com/ice/framework/issues/280 broken archive * Mon May 11 2020 Remi Collet - 1.6.1-1 - update to 1.6.1 - drop patch merged upstream in zephir * Mon Apr 27 2020 Remi Collet - 1.6.0-1 - initial package - fix build with recent GCC using patch from https://github.com/ice/framework/pull/266