# remirepo spec file for php-horde-horde-lz4 # with SCL compatibility, from: # # Fedora spec file for php-horde-horde-lz4 # # Copyright (c) 2014-2021 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # %if 0%{?scl:1} %global sub_prefix %{scl_prefix} %endif %{?scl: %scl_package php-horde-horde-lz4} %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global pecl_name horde_lz4 %global pecl_channel pear.horde.org %if "%{php_version}" < "5.6" %global ini_name %{pecl_name}.ini %else %global ini_name 40-%{pecl_name}.ini %endif %if 0%{?scl:1} # PHPUnit not available in SCL %global with_tests 0%{?_with_tests:1} %else %global with_tests 0%{!?_without_tests:1} %endif Summary: Horde LZ4 Compression Extension Name: %{?sub_prefix}php-horde-horde-lz4 Version: 1.0.10 Release: 19%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} License: MIT URL: https://www.horde.org Source0: https://%{pecl_channel}/get/%{pecl_name}-%{version}.tgz BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel BuildRequires: %{?scl_prefix}php-pear BuildRequires: lz4-devel %if %{with_tests} BuildRequires: %{_bindir}/phpunit %endif Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} Requires: %{?scl_prefix}php-channel(%{pecl_channel}) %{?_sclreq:Requires: %{?scl_prefix}runtime%{?_sclreq}%{?_isa}} Provides: %{?scl_prefix}php-%{pecl_name} = %{version} Provides: %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_channel}/%{pecl_name}) = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_channel}/%{pecl_name})%{?_isa} = %{version} Provides: %{?scl_prefix}php-horde-horde-lz4 = %{version}-%{release} Provides: %{?scl_prefix}php-horde-horde-lz4%{?_isa} = %{version}-%{release} %if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} # Other third party repo stuff %if "%{php_version}" > "7.3" Obsoletes: php73-horde-horde-lz4 <= %{version} %endif %if "%{php_version}" > "7.4" Obsoletes: php74-horde-horde-lz4 <= %{version} %endif %if "%{php_version}" > "8.0" Obsoletes: php80-horde-horde-lz4 <= %{version} %endif %endif %description PHP extension that implements the LZ4 compression algorithm, an extremely fast lossless compression algorithm. 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 # Don't install bundled libz4 sed -e 's/role="test"/role="src"/' \ -e '/name="lib/d' \ %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ -i package.xml mv %{pecl_name}-%{version} NTS cd NTS # Use system library rm -r lib %if "%{php_version}" > "8.0" sed -e s/TSRMLS_CC// -i horde_lz4.c %endif # Sanity check, really often broken extver=$(sed -n '/#define HORDE_LZ4_EXT_VERSION/{s/.* "//;s/".*$//;p}' horde_lz4.h) if test "x${extver}" != "x%{version}%{?prever:-%{prever}}"; then : Error: Upstream extension version is ${extver}, expecting %{version}%{?prever:-%{prever}}. exit 1 fi cd .. %if %{with_zts} # Duplicate source tree for NTS / ZTS build cp -pr NTS ZTS %endif # Create configuration file cat << 'EOF' | tee %{ini_name} ; Enable %{summary} module extension=%{pecl_name}.so EOF %build %{?dtsenable} cd NTS %{_bindir}/phpize %configure \ --with-liblz4 \ --with-php-config=%{_bindir}/php-config make %{?_smp_mflags} %if %{with_zts} cd ../ZTS %{_bindir}/zts-phpize %configure \ --with-liblz4 \ --with-php-config=%{_bindir}/zts-php-config make %{?_smp_mflags} %endif %install %{?dtsenable} make -C NTS install-modules INSTALL_ROOT=%{buildroot} # 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 -C ZTS install-modules INSTALL_ROOT=%{buildroot} install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif # Documentation for i in $(grep 'role="doc"' package.xml | sed -e 's/^.*name="//;s/".*$//') do install -Dpm 644 NTS/$i %{buildroot}%{pear_docdir}/%{pecl_name}/$i done %if 0%{?fedora} < 24 && 0%{?rhel} < 8 # when pear installed alone, after us %triggerin -- %{?scl_prefix}php-pear if [ -x %{__pecl} ] ; then %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : fi # posttrans as pear can be installed after us %posttrans if [ -x %{__pecl} ] ; then %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : fi %postun if [ $1 -eq 0 -a -x %{__pecl} ] ; then %{pecl_uninstall} %{pecl_channel}/%{pecl_name} >/dev/null || : fi %endif %check cd NTS : Minimal load test for NTS extension %{__php} --no-php-ini \ --define extension=modules/%{pecl_name}.so \ --modules | grep %{pecl_name} %if %{with_tests} : Upstream test suite for NTS extension %{__php} -d extension=modules/horde_lz4.so \ %{_bindir}/phpunit \ %if "%{php_version}" > "8.0" --filter '^((?!(testCompressErrorConditionOne|testCompressErrorConditionTwo|testUncompressErrorConditionOne|testUncompressErrorConditionTwo)).)*$' \ %endif test %endif %if %{with_zts} cd ../ZTS : Minimal load test for ZTS extension %{__ztsphp} --no-php-ini \ --define extension=modules/%{pecl_name}.so \ --modules | grep %{pecl_name} %if %{with_tests} : Upstream test suite for ZTS extension %{__ztsphp} -d extension=modules/horde_lz4.so \ %{_bindir}/phpunit \ %if "%{php_version}" > "8.0" --filter '^((?!(testCompressErrorConditionOne|testCompressErrorConditionTwo|testUncompressErrorConditionOne|testUncompressErrorConditionTwo)).)*$' \ %endif test %endif %endif %files %{?_licensedir:%license NTS/LICENSE} %doc %{pear_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 * Wed Sep 01 2021 Remi Collet - 1.0.10-19 - rebuild for 8.1.0RC1 * Fri Mar 5 2021 Remi Collet - 1.0.10-18 - trivial fix for PHP 8 * Wed Apr 29 2020 Remi Collet - 1.0.10-15 - cleanup obsoletes * Tue Sep 03 2019 Remi Collet - 1.0.10-7 - rebuild for 7.4.0RC1 * Thu Aug 16 2018 Remi Collet - 1.0.10-6 - rebuild for 7.3.0beta2 new ABI * Tue Jul 17 2018 Remi Collet - 1.0.10-5 - rebuld for 7.3.0alpha4 new ABI * Tue Jul 18 2017 Remi Collet - 1.0.10-4 - rebuild for PHP 7.2.0beta1 new API * Thu Dec 1 2016 Remi Collet - 1.0.10-3 - rebuild with PHP 7.1.0 GA * Wed Sep 14 2016 Remi Collet - 1.0.10-2 - rebuild for PHP 7.1 new API version * Wed Mar 09 2016 Remi Collet - 1.0.10-1 - Update to 1.0.10 (no change) * Fri Mar 4 2016 Remi Collet - 1.0.9-2 - adapt for F24 * Tue Feb 02 2016 Remi Collet - 1.0.9-1 - Update to 1.0.9 * Tue Oct 13 2015 Remi Collet - 1.0.8-6 - rebuild for PHP 7.0.0RC5 new API version * Fri Sep 18 2015 Remi Collet - 1.0.8-5 - F23 rebuild with rh_layout * Wed Jul 22 2015 Remi Collet - 1.0.8-4 - rebuild against php 7.0.0beta2 * Wed Jul 8 2015 Remi Collet - 1.0.8-3 - rebuild against php 7.0.0beta1 * Wed Jun 24 2015 Remi Collet - 1.0.8-2 - allow build against rh-php56 (as more-php56) * Tue Apr 14 2015 Remi Collet - 1.0.8-1 - Update to 1.0.8 * Mon Mar 30 2015 Remi Collet 1.0.7-2 - add fix for PHP 7 - drop runtime dependency on pear, new scriptlets * Wed Dec 24 2014 Remi Collet 1.0.7-1.1 - Fedora 21 SCL mass rebuild * Tue Sep 16 2014 Remi Collet - 1.0.7-1 - Update to 1.0.7 - https://github.com/horde/horde/pull/103 is merged * Mon Sep 15 2014 Remi Collet - 1.0.6-1 - initial package, version 1.0.6