# remirepo spec file for php-pecl-grpc # # Copyright (c) 2017-2021 Remi Collet # License: CC-BY-SA # http://creativecommons.org/licenses/by-sa/4.0/ # # Please, preserve the changelog entries # # we don't want -z defs linker flag %undefine _strict_symbol_defs_build %if 0%{?scl:1} %global sub_prefix %{scl_prefix} %scl_package php-pecl-grpc %endif ## TODO: not suitable for Fedora, tons of bundled libraries %global pecl_name grpc %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global ini_name 40-%{pecl_name}.ini %global upstream_version 1.35.0 #global upstream_prever RC1 Summary: General RPC framework Name: %{?sub_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: ASL 2.0 URL: https://pecl.php.net/package/%{pecl_name} Source0: https://pecl.php.net/get/%{pecl_name}-%{upstream_version}%{?upstream_prever}.tgz Patch0: %{pecl_name}-build.patch Patch1: %{pecl_name}-noatfork.patch %if 0%{?rhel} == 7 && 0%{?dtsversion} == 0 BuildRequires: devtoolset-6-toolchain %global dtsversion 6 %global dtsenable source /opt/rh/devtoolset-6/enable %global dtsprefix devtoolset-6- %endif BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?dtsprefix}gcc-c++ BuildRequires: %{?scl_prefix}php-devel >= 7.0 BuildRequires: %{?scl_prefix}php-pear BuildRequires: zlib-devel Requires: %{?scl_prefix}php(zend-abi) = %{php_zend_api} Requires: %{?scl_prefix}php(api) = %{php_core_api} %{?_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_name}) = %{version} Provides: %{?scl_prefix}php-pecl(%{pecl_name})%{?_isa} = %{version} %if "%{?scl_prefix}" != "%{?sub_prefix}" Provides: %{?scl_prefix}php-pecl-%{pecl_name} = %{version}-%{release} Provides: %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa} = %{version}-%{release} %endif %if "%{?packager}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel} # Other third party repo stuff %if "%{php_version}" > "7.3" Obsoletes: php73-pecl-%{pecl_name} <= %{version} %endif %if "%{php_version}" > "7.4" Obsoletes: php74-pecl-%{pecl_name} <= %{version} %endif %if "%{php_version}" > "8.0" Obsoletes: php80-pecl-%{pecl_name} <= %{version} %endif %endif %description Remote Procedure Calls (RPCs) provide a useful abstraction for building distributed applications and services. The libraries in this repository provide a concrete implementation of the gRPC protocol, layered over HTTP/2. These libraries enable communication between clients and servers using any combination of the supported languages 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 mv %{pecl_name}-%{upstream_version}%{?upstream_prever} NTS # Don't install/register tests sed -e 's/role="test"/role="src"/' \ %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ -i package.xml cd NTS %patch0 -p1 -b .rpm %ifarch %{arm} %patch1 -p2 -b .noatfork %endif #sed -e '/PHP_GRPC_VERSION/s/RC3/RC2/' -i src/php/ext/grpc/version.h # Sanity check, really often broken extver=$(sed -n '/PHP_GRPC_VERSION/{s/.* "//;s/".*$//;p}' src/php/ext/grpc/version.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 .. %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}" extension module extension=%{pecl_name}.so ; Configuration ;grpc.enable_fork_support = 0 ;grpc.poll_strategy = '' ;grpc.grpc_verbosity = '' ;grpc.grpc_trace = '' ;grpc.log_filename = '' EOF %build %{?dtsenable} cd NTS %{_bindir}/phpize %configure \ --enable-grpc \ --with-libdir=%{_lib} \ --with-php-config=%{_bindir}/php-config make %{?_smp_mflags} %if %{with_zts} cd ../ZTS %{_bindir}/zts-phpize %configure \ --enable-grpc \ --with-libdir=%{_lib} \ --with-php-config=%{_bindir}/zts-php-config make %{?_smp_mflags} %endif %install %{?dtsenable} make -C NTS install 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 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}%{pecl_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_name} >/dev/null || : fi %endif %check : Minimal load test for NTS extension cd NTS %{__php} --no-php-ini \ --define extension=modules/%{pecl_name}.so \ --modules | grep %{pecl_name} %if %{with_zts} : Minimal load test for ZTS extension cd ../ZTS %{__ztsphp} --no-php-ini \ --define extension=modules/%{pecl_name}.so \ --modules | grep %{pecl_name} %endif %files %{!?_licensedir:%global license %%doc} %license NTS/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 * Thu Jan 21 2021 Remi Collet - 1.35.0-1 - update to 1.35.0 * Fri Jan 8 2021 Remi Collet - 1.35.0~RC1-1 - update to 1.35.0RC1 * Thu Dec 3 2020 Remi Collet - 1.34.0-1 - update to 1.34.0 * Wed Nov 25 2020 Remi Collet - 1.34.0~RC2-1 - update to 1.34.0RC2 * Sat Nov 21 2020 Remi Collet - 1.34.0~RC1-1 - update to 1.34.0RC1 - raise dependency on PHP 7.0 * Thu Oct 22 2020 Remi Collet - 1.33.1-1 - update to 1.33.1 * Fri Oct 9 2020 Remi Collet - 1.33.0~RC1-1 - update to 1.33.0RC1 * Sat Sep 12 2020 Remi Collet - 1.32.0-1 - update to 1.32.0 * Wed Sep 2 2020 Remi Collet - 1.32.0~RC1-1 - update to 1.32.0RC1 * Wed Aug 26 2020 Remi Collet - 1.31.1-1 - update to 1.31.1 * Thu Aug 6 2020 Remi Collet - 1.30.0-1 - update to 1.31.0 * Fri Jul 24 2020 Remi Collet - 1.30.0~RC1-1 - update to 1.31.0RC1 * Tue Jun 23 2020 Remi Collet - 1.30.0-1 - update to 1.30.0 * Mon Jun 8 2020 Remi Collet - 1.30.0~RC1-1 - update to 1.30.0RC1 * Thu May 21 2020 Remi Collet - 1.29.1-1 - update to 1.29.1 * Wed May 20 2020 Remi Collet - 1.29.0-1 - update to 1.29.0 * Fri Apr 3 2020 Remi Collet - 1.28.0-1 - Update to 1.28.0 * Wed Mar 18 2020 Remi Collet - 1.28.0~RC2-1 - Update to 1.28.0RC2 * Mon Mar 2 2020 Remi Collet - 1.28.0~RC1-1 - Update to 1.28.0RC1 * Tue Feb 11 2020 Pablo Greco - 1.27.0-2 - Update armhfp patch * Thu Feb 6 2020 Remi Collet - 1.27.0-1 - Update to 1.27.0 * Fri Jan 31 2020 Remi Collet - 1.27.0~RC2-1 - Update to 1.27.0RC2 * Fri Jan 24 2020 Remi Collet - 1.27.0~RC1-1 - Update to 1.27.0RC1 * Fri Dec 20 2019 Remi Collet - 1.26.0-1 - Update to 1.26.0 * Sat Dec 7 2019 Remi Collet - 1.26.0~RC2-1 - Update to 1.26.0RC2 * Fri Dec 6 2019 Remi Collet - 1.26.0~RC1-1 - Update to 1.26.0RC1 - open https://github.com/grpc/grpc/issues/21409 PHP 5.5 * Thu Nov 7 2019 Remi Collet - 1.25.0-1 - Update to 1.25.0 * Fri Oct 25 2019 Remi Collet - 1.25.0~RC1-1 - Update to 1.25.0RC1 * Thu Sep 26 2019 Remi Collet - 1.24.0-1 - Update to 1.24.0 * Thu Sep 12 2019 Remi Collet - 1.24.0~RC1-1 - Update to 1.24.0RC1 * Tue Sep 03 2019 Remi Collet - 1.23.0-3 - rebuild for 7.4.0RC1 * Sat Aug 24 2019 Remi Collet - 1.23.0-2 - fix build with GCC 9.1 with upstream patch and patch from https://github.com/grpc/grpc/pull/20067 * Sat Aug 17 2019 Remi Collet - 1.23.0-1 - Update to 1.23.0 * Sat Aug 3 2019 Remi Collet - 1.23.0~RC1-1 - Update to 1.23.0RC1 * Thu Jul 18 2019 Pablo Greco - 1.22.0-2 - Fix build on armhfp, pthread_atfork not exported * Thu Jul 4 2019 Remi Collet - 1.22.0-1 - Update to 1.22.0 * Thu Jun 27 2019 Remi Collet - 1.22.0~RC1-1 - Update to 1.22.0RC1 * Tue Jun 4 2019 Remi Collet - 1.21.3-1 - update to 1.21.3 * Fri May 31 2019 Remi Collet - 1.21.2-1 - Update to 1.21.2 * Tue May 21 2019 Remi Collet - 1.21.0~RC1-1 - Update to 1.21.0RC1 * Sat Apr 27 2019 Remi Collet - 1.20.0-1 - Update to 1.20.0 * Tue Apr 9 2019 Remi Collet - 1.20.0~RC3-1 - Update to 1.20.0RC3 * Tue Apr 2 2019 Remi Collet - 1.20.0~RC1-1 - Update to 1.20.0RC1 - add new runtime options in provided configuration * Wed Feb 27 2019 Remi Collet - 1.19.0-1 - Update to 1.19.0 * Mon Feb 18 2019 Remi Collet - 1.19.0~RC1-1 - Update to 1.19.0RC1 * Fri Jan 18 2019 Remi Collet - 1.18.0-1 - Update to 1.18.0 * Wed Jan 9 2019 Remi Collet - 1.18.0~RC1-1 - Update to 1.18.0RC1 * Wed Dec 5 2018 Remi Collet - 1.17.0-1 - Update to 1.17.0 * Thu Nov 29 2018 Remi Collet - 1.17.0~RC3-1 - Update to 1.17.0RC3 * Wed Nov 21 2018 Remi Collet - 1.17.0~RC2-1 - Update to 1.17.0RC2 - open https://github.com/grpc/grpc/issues/17273 ZTS build is broken * Tue Oct 23 2018 Remi Collet - 1.16.0-1 - update to 1.16.0 * Thu Sep 13 2018 Remi Collet - 1.15.0-1 - Update to 1.15.0 * Wed Aug 29 2018 Remi Collet - 1.15.0~RC1-1 - Update to 1.15.0RC1 * Thu Aug 16 2018 Remi Collet - 1.14.1-2 - rebuild for 7.3.0beta2 new ABI * Fri Aug 10 2018 Remi Collet - 1.14.1-1 - update to 1.14.1 * Wed Jul 18 2018 Remi Collet - 1.13.0-2 - rebuld for 7.3.0alpha4 new ABI * Tue Jul 10 2018 Remi Collet - 1.13.0-1 - update to 1.13.0 * Wed Jun 27 2018 Remi Collet - 1.13.0~RC3-1 - update to 1.13.0RC3 * Wed May 23 2018 Remi Collet - 1.12.0-1 - update to 1.12.0 * Tue Apr 17 2018 Remi Collet - 1.11.0-1 - Update to 1.11.0 * Wed Apr 11 2018 Remi Collet - 1.11.0~RC2-1 - Update to 1.11.0RC2 * Mon Apr 9 2018 Remi Collet - 1.11.0~RC1-1 - Update to 1.11.0RC1 * Mon Apr 9 2018 Remi Collet - 1.10.1-1 - Update to 1.10.1 (stable) * Thu Mar 29 2018 Remi Collet - 1.10.1~RC1-1 - Update to 1.10.1RC1 * Tue Mar 13 2018 Remi Collet - 1.10.0-1 - Update to 1.10.0 (stable) * Fri Mar 2 2018 Remi Collet - 1.10.0~RC2-1 - Update to 1.10.0RC2 * Sun Feb 4 2018 Remi Collet - 1.9.0-1 - Update to 1.9.0 (stable) * Tue Jan 30 2018 Remi Collet - 1.9.0~RC3-1 - Update to 1.9.0RC3 * Thu Jan 25 2018 Remi Collet - 1.9.0~RC1-1 - Update to 1.9.0RC1 * Fri Jan 19 2018 Remi Collet - 1.8.5-1 - Update to 1.8.5 (stable) * Fri Jan 5 2018 Remi Collet - 1.8.3-1 - Update to 1.8.3 (stable) * Fri Dec 15 2017 Remi Collet - 1.8.0-1 - Update to 1.8.0 (stable) * Thu Nov 30 2017 Remi Collet - 1.8.0~RC1-1 - Update to 1.8.0RC1 * Wed Nov 15 2017 Remi Collet - 1.7.0-1 - Update to 1.7.0 (stable) * Thu Oct 12 2017 Remi Collet - 1.7.0~RC1-1 - Update to 1.7.0RC1 * Tue Sep 19 2017 Remi Collet - 1.6.0-1 - Update to 1.6.0 (stable) * Mon Sep 4 2017 Remi Collet - 1.6.0~RC1-1 - Update to 1.6.0RC1 - License changed to Apache 2.0 * Tue Aug 22 2017 Remi Collet - 1.4.6-2 - honour default RPM build options * Thu Aug 17 2017 Remi Collet - 1.4.6-1 - Update to 1.4.6 (stable) * Wed Aug 16 2017 Remi Collet - 1.4.6~RC6-1 - Update to 1.4.6RC6 * Tue Aug 15 2017 Remi Collet - 1.4.6~RC5-1 - Update to 1.4.6RC5 * Tue Aug 15 2017 Remi Collet - 1.4.6~RC4-1 - Update to 1.4.6RC4 * Tue Aug 15 2017 Remi Collet - 1.4.6~RC2-1 - Update to 1.4.6RC2 * Wed Aug 9 2017 Remi Collet - 1.4.4-1 - Update to 1.4.4 * Tue Aug 8 2017 Remi Collet - 1.4.3-1 - Update to 1.4.3 - add patch for ZTS build from https://github.com/grpc/grpc/pull/12117 * Tue Jul 18 2017 Remi Collet - 1.4.1-2 - rebuild for PHP 7.2.0beta1 new API * Fri Jun 30 2017 Remi Collet - 1.4.1-1 - Update to 1.4.1 (stable) * Thu Jun 22 2017 Remi Collet - 1.4.0-1 - update to 1.4.0 (stable) * Wed Jun 21 2017 Remi Collet - 1.4.0~RC2-1 - rebuild for 7.2.0alpha2 * Fri Jun 2 2017 Remi Collet - 1.4.0~RC2-1 - update to 1.4.0RC2 (no change) * Thu Jun 1 2017 Remi Collet - 1.4.0~RC1-1 - update to 1.4.0RC1 * Fri May 12 2017 Remi Collet - 1.3.2-1 - update to 1.3.2 (stable) * Thu May 11 2017 Remi Collet - 1.3.2~RC1-1 - update to 1.3.2RC1 * Sat May 6 2017 Remi Collet - 1.3.1~RC1-1 - update to 1.3.1RC1 * Tue Apr 25 2017 Remi Collet - 1.2.0-1 - initial package, version 1.2.0 (stable) - open https://github.com/grpc/grpc/issues/10842 bad version - open https://github.com/grpc/grpc/issues/10843 build fail with gcc 7