# remirepo spec file for php-pecl-gearman # with SCL compatibility, from: # # Fedora spec file for php-pecl-gearman # # License: MIT # http://opensource.org/licenses/MIT # # Please, preserve the changelog entries # %if 0%{?scl:1} %global sub_prefix %{scl_prefix} %scl_package php-pecl-gearman %endif %global with_zts 0%{!?_without_zts:%{?__ztsphp:1}} %global pecl_name gearman %if "%{php_version}" < "5.6" %global ini_name %{pecl_name}.ini %else %global ini_name 40-%{pecl_name}.ini %endif %global extver 2.1.0 %global libver 1.1.0 Name: %{?sub_prefix}php-pecl-gearman Version: %{extver} Release: 1%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} Summary: PHP wrapper to libgearman License: PHP URL: https://pecl.php.net/package/gearman Source0: https://pecl.php.net/get/%{pecl_name}-%{version}.tgz BuildRequires: libgearman-devel > %{libver} BuildRequires: make BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?dtsprefix}gcc BuildRequires: %{?scl_prefix}php-devel >= 7.0 BuildRequires: %{?scl_prefix}php-pear # Required by phpize BuildRequires: autoconf, automake, libtool 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 Obsoletes: php55w-pecl-%{pecl_name} <= %{version} Obsoletes: php56u-pecl-%{pecl_name} <= %{version} Obsoletes: php56w-pecl-%{pecl_name} <= %{version} %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 This extension uses libgearman library to provide API for communicating with gearmand, and writing clients and workers Documentation: http://php.net/gearman 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}-%{version} NTS # Dont register tests on install sed -e 's/role="test"/role="src"/' \ %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ -i package.xml extver=$(sed -n '/#define PHP_GEARMAN_VERSION/{s/.* "//;s/".*$//;p}' NTS/php_gearman.h) if test "x${extver}" != "x%{version}"; then : Error: Upstream version is ${extver}, expecting %{version}. exit 1 fi cat >%{ini_name} </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 %files %{?_licensedir:%license NTS/LICENSE} %doc %{pecl_docdir}/%{pecl_name} %{pecl_xmldir}/%{name}.xml %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 * Sun Jan 17 2021 Remi Collet - 2.1.0-1 - update to 2.1.0 - sources from pecl * Thu Feb 6 2020 Remi Collet - 2.0.6-2 - add upstream patch for PHP 7.4 https://github.com/remicollet/remirepo/issues/139 * Fri Sep 6 2019 Remi Collet - 2.0.6-1 - update to 2.0.6 * Tue Sep 03 2019 Remi Collet - 2.0.5-5 - rebuild for 7.4.0RC1 * Tue Jul 23 2019 Remi Collet - 2.0.5-4 - rebuild for 7.4.0beta1 * Thu Aug 16 2018 Remi Collet - 2.0.5-3 - rebuild for 7.3.0beta2 new ABI * Wed Jul 18 2018 Remi Collet - 2.0.5-2 - rebuld for 7.3.0alpha4 new ABI * Thu Jul 12 2018 Remi Collet - 2.0.5-1 - update to 2.0.5 * Wed Jun 27 2018 Remi Collet - 2.0.4-1 - update to 2.0.4 * Tue Oct 3 2017 Remi Collet - 2.0.3-4 - F27: release bump * Tue Jul 18 2017 Remi Collet - 2.0.3-2 - rebuild for PHP 7.2.0beta1 new API * Mon Jan 16 2017 Remi Collet - 2.0.3-1 - update to 2.0.3 * Thu Dec 1 2016 Remi Collet - 2.0.2-2 - rebuild with PHP 7.1.0 GA * Sat Nov 12 2016 Remi Collet - 2.0.2-1 - update to 2.0.2 * Tue Sep 20 2016 Remi Collet - 2.0.1-1 - update to 2.0.1 for PHP 7 - use sources from https://github.com/wcgallego/pecl-gearman fork * Wed Mar 9 2016 Remi Collet - 1.1.2-8 - adapt for F24 * Sat Jun 20 2015 Remi Collet - 1.1.2-7 - allow build against rh-php56 (as more-php56) - drop runtime dependency on pear, new scriptlets * Wed Dec 24 2014 Remi Collet - 1.1.2-6.1 - Fedora 21 SCL mass rebuild * Tue Sep 9 2014 Remi Collet - 1.1.2-6 - don't install tests - fix license handling * Mon Aug 25 2014 Remi Collet - 1.1.2-5 - improve SCL build * Wed Apr 9 2014 Remi Collet - 1.1.2-4 - add numerical prefix to extension configuration file * Wed Mar 19 2014 Remi Collet - 1.1.2-3 - allow SCL build * Mon Mar 3 2014 Remi Collet - 1.1.2-2 - cleanups - install documentation in pecl_docdir - install tests in pecl_testdir * Thu Aug 29 2013 Remi Collet - 1.1.2-1 - update to 1.1.2 * Mon Aug 19 2013 Remi Collet - 1.1.1-1 - single spec for 0.8.x / 1.0.x / 1.1.x - update to 1.1.1, requires libgearman >= 1.1.0 * Fri Nov 30 2012 Remi Collet - 1.0.3-1.1 - also provides php-gearman * Sun Aug 05 2012 Remi Collet - 1.0.3-1 - update to 1.0.3 - add missing provides php-pecl(gearman) * Sun Aug 05 2012 Remi Collet - 0.8.3-1 - update to 0.8.3 - add missing provides php-pecl(gearman) * Sat May 05 2012 Remi Collet - 1.0.2-3 - add BR libgearman-1.0 + libgearman-1.0-devel Workaround for https://bugzilla.redhat.com/819209 * Tue Mar 06 2012 Remi Collet - 1.0.2-2 - update to 1.0.2 for PHP 5.4 * Tue Mar 06 2012 Remi Collet - 1.0.2-1 - update to 1.0.2 for PHP 5.3 - spec clean up * Fri Dec 09 2011 Remi Collet - 1.0.1-2 - update to 1.0.1, build against php 5.4 * Fri Dec 09 2011 Remi Collet - 1.0.1-1 - update to 1.0.1 * Fri Dec 09 2011 Remi Collet - 0.8.1-2 - update to 0.8.1, build against php 5.4 * Fri Dec 09 2011 Remi Collet - 0.8.1-1 - update to 0.8.1 * Mon Dec 05 2011 Remi Collet - 1.0.0-2 - build against php 5.4 * Mon Dec 05 2011 Remi Collet - 1.0.0-1 - update to 1.0.0 - raise dependency to libgearman 0.21 (si f16 only) * Mon Nov 14 2011 Remi Collet - 0.8.0-2 - build against php 5.4 * Sat Oct 15 2011 Remi Collet - 0.8.0-1 - update to 0.8.0 - ZTS extension - spec cleanup and minimal %%check - fix requires * Fri Aug 12 2011 Jesse Keating - 0.7.0-5 - Rebuild for broken deps * Mon Apr 11 2011 Paul Whalen 0.7.0-4 - fix setup and package.xml install * Mon Apr 11 2011 Paul Whalen 0.7.0-3 - correct macros, add license to files * Fri Apr 08 2011 Paul Whalen 0.7.0-2 - correct package following pecl packaging guidelines * Fri Mar 11 2011 Paul Whalen 0.7.0-1 - Initial Packaging