diff options
| -rw-r--r-- | php-pecl-zmq.spec | 23 | 
1 files changed, 13 insertions, 10 deletions
diff --git a/php-pecl-zmq.spec b/php-pecl-zmq.spec index d68f994..1063948 100644 --- a/php-pecl-zmq.spec +++ b/php-pecl-zmq.spec @@ -18,9 +18,6 @@  %endif  %{?scl:          %scl_package        php-pecl-zmq} -%{!?php_inidir:  %global php_inidir  %{_sysconfdir}/php.d} -%{!?__pecl:      %global __pecl      %{_bindir}/pecl} -%{!?__php:       %global __php       %{_bindir}/php}  %global with_zts   0%{!?_without_zts:%{?__ztsphp:1}}  %global pecl_name  zmq @@ -34,7 +31,7 @@  Summary:        ZeroMQ messaging  Name:           %{?sub_prefix}php-pecl-%{pecl_name}  Version:        1.1.3 -Release:        1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Release:        2%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}  License:        BSD  Group:          Development/Languages  URL:            http://pecl.php.net/package/%{pecl_name} @@ -61,13 +58,13 @@ Requires:       %{?scl_prefix}php(api) = %{php_core_api}  # Version 1.0.7 is the first pecl release  # Fedora/EPEL still provides php-zmq, not php-pecl-zmq -Obsoletes:      %{?scl_prefix}php-%{pecl_name} < %{version} -Provides:       %{?scl_prefix}php-%{pecl_name} = %{version} -Provides:       %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} -Provides:       %{?scl_prefix}php-pecl(%{pecl_name}) = %{version} +Obsoletes:      %{?scl_prefix}php-%{pecl_name}               < %{version} +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} +Provides:       %{?scl_prefix}php-pecl-%{pecl_name}          = %{version}-%{release} +Provides:       %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa}  = %{version}-%{release}  %if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1}  # Other third party repo stuff @@ -189,6 +186,7 @@ do install -Dpm 644 NTS/$i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i  done +%if 0%{?fedora} < 24  # when pear installed alone, after us  %triggerin -- %{?scl_prefix}php-pear  if [ -x %{__pecl} ] ; then @@ -205,6 +203,7 @@ fi  if [ $1 -eq 0 -a -x %{__pecl} ] ; then      %{pecl_uninstall} %{pecl_name} >/dev/null || :  fi +%endif  %check @@ -259,6 +258,9 @@ rm -rf %{buildroot}  %changelog +* Sun Mar  6 2016 Remi Collet <remi@fedoraproject.org> - 1.1.3-2 +- adapt for F24 +  * Mon Feb 01 2016 Remi Collet <remi@fedoraproject.org> - 1.1.3-1  - Update to 1.1.3 (beta)  - add patch to fix build with old GCC (EL-6) @@ -305,3 +307,4 @@ rm -rf %{buildroot}  - initial package, version 1.0.7 (beta)  - open https://github.com/mkoppanen/php-zmq/pull/108    to fix build warnings and include tests +  | 
