diff options
| -rw-r--r-- | php-pecl-memcache-dev.spec | 22 | 
1 files changed, 14 insertions, 8 deletions
diff --git a/php-pecl-memcache-dev.spec b/php-pecl-memcache-dev.spec index e675a0f..e036e31 100644 --- a/php-pecl-memcache-dev.spec +++ b/php-pecl-memcache-dev.spec @@ -7,9 +7,6 @@  # Please, preserve the changelog entries  #  %{?scl:          %scl_package         php-pecl-memcache} -%{!?php_inidir:  %global php_inidir   %{_sysconfdir}/php.d} -%{!?__pecl:      %global __pecl       %{_bindir}/pecl} -%{!?__php:       %global __php        %{_bindir}/php}  # https://github.com/websupport-sk/pecl-memcache/commits/NON_BLOCKING_IO_php7  %global gh_commit   fdbd46bbc6f53ed6e024521895e142cbfc9b3340 @@ -31,7 +28,7 @@ Summary:      Extension to work with the Memcached caching daemon  Name:         %{?scl_prefix}php-pecl-memcache  Version:      3.0.9  %if 0%{?gh_date:1} -Release:      0.2.%{gh_date}git%{gh_short}%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Release:      0.3.%{gh_date}git%{gh_short}%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}  %else  Release:      1%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}  %endif @@ -57,10 +54,12 @@ 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(%{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_name} = %{version} -Provides:     %{?scl_prefix}php-%{pecl_name}%{?_isa} = %{version} +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 @@ -118,7 +117,9 @@ mv %{pecl_name}-%{version} NTS  %endif  # Don't install/register tests -sed -e 's/role="test"/role="src"/' -i package.xml +sed -e 's/role="test"/role="src"/' \ +    %{?_licensedir:-e '/LICENSE/s/role="doc"/role="src"/' } \ +    -i package.xml  pushd NTS @@ -260,6 +261,7 @@ exit $ret  rm -rf %{buildroot} +%if 0%{?fedora} < 24  # when pear installed alone, after us  %triggerin -- %{?scl_prefix}php-pear  if [ -x %{__pecl} ] ; then @@ -276,6 +278,7 @@ fi  if [ $1 -eq 0 -a -x %{__pecl} ] ; then      %{pecl_uninstall} %{pecl_name} >/dev/null || :  fi +%endif  %files @@ -294,6 +297,9 @@ fi  %changelog +* Sat Mar  5 2016 Remi Collet <rcollet@redhat.com> - 3.0.9-0.3.20151130gitfdbd46b +- adapt for F24 +  * Sun Jan 10 2016 Remi Collet <rcollet@redhat.com> - 3.0.9-0.2.20151130gitfdbd46b  - set stability = devel in package.xml  | 
