diff options
| -rw-r--r-- | php-pecl-inotify.spec | 38 | 
1 files changed, 27 insertions, 11 deletions
diff --git a/php-pecl-inotify.spec b/php-pecl-inotify.spec index d5346cb..e8387bf 100644 --- a/php-pecl-inotify.spec +++ b/php-pecl-inotify.spec @@ -6,6 +6,7 @@  #  # Please, preserve the changelog entries  # +%{?scl:          %scl_package        php-pecl-inotify}  %{!?php_inidir:  %global php_inidir  %{_sysconfdir}/php.d}  %{!?__pecl:      %global __pecl      %{_bindir}/pecl}  %{!?__php:       %global __php       %{_bindir}/php} @@ -14,7 +15,7 @@  %global pecl_name inotify  Summary:        Inotify -Name:           php-pecl-%{pecl_name} +Name:           %{?scl_prefix}php-pecl-%{pecl_name}  Version:        0.1.6  Release:        2%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}  License:        PHP @@ -23,18 +24,30 @@ URL:            http://pecl.php.net/package/%{pecl_name}  Source0:        http://pecl.php.net/get/%{pecl_name}-%{version}.tgz  BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires:  php-devel -BuildRequires:  php-pear +BuildRequires:  %{?scl_prefix}php-devel +BuildRequires:  %{?scl_prefix}php-pear  Requires(post): %{__pecl}  Requires(postun): %{__pecl} -Requires:       php(zend-abi) = %{php_zend_api} -Requires:       php(api) = %{php_core_api} - -Provides:       php-%{pecl_name} = %{version} -Provides:       php-%{pecl_name}%{?_isa} = %{version} -Provides:       php-pecl(%{pecl_name}) = %{version} -Provides:       php-pecl(%{pecl_name})%{?_isa} = %{version} +Requires:       %{?scl_prefix}php(zend-abi) = %{php_zend_api} +Requires:       %{?scl_prefix}php(api) = %{php_core_api} + +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 0%{!?scl:1} +# Other third party repo stuff +%if "%{php_version}" > "5.4" +Obsoletes:      php53-pecl-%{pecl_name} +Obsoletes:      php53u-pecl-%{pecl_name} +Obsoletes:      php54-pecl-%{pecl_name} +%endif +%if "%{php_version}" > "5.5" +Obsoletes:      php55u-pecl-%{pecl_name} +%endif +%endif  %if 0%{?fedora} < 20  # Filter shared private @@ -149,7 +162,7 @@ TEST_PHP_EXECUTABLE=%{__php} \  TEST_PHP_ARGS="-n -d extension=$PWD/modules/%{pecl_name}.so" \  NO_INTERACTION=1 \  REPORT_EXIT_STATUS=1 \ -%{_bindir}/php -n run-tests.php +%{__php} -n run-tests.php  %if %{with_zts} @@ -187,6 +200,9 @@ rm -rf %{buildroot}  %changelog +* Fri Nov 29 2013 Remi Collet <rcollet@redhat.com> - 0.1.6-2 +- adapt for SCL +  * Sun Nov 24 2013 Remi Collet <remi@fedoraproject.org> - 0.1.6-2  - install doc in pecl doc_dir  - install tests in pecl test_dir (in devel)  | 
