diff options
| author | Remi Collet <fedora@famillecollet.com> | 2014-08-25 21:59:14 +0200 | 
|---|---|---|
| committer | Remi Collet <fedora@famillecollet.com> | 2014-08-25 21:59:14 +0200 | 
| commit | 349ec5ef6c786b9e371efe17a2e0b0e77c16c657 (patch) | |
| tree | a4c0ae350e8542e8363b7befd699eac2fa071e03 | |
| parent | 98022b145ff44c62cd93d8995fbd6ddcaff49fae (diff) | |
php-pecl-* improve SCL build for 5.6 (wip)
| -rw-r--r-- | php-pecl-rar.spec | 42 | 
1 files changed, 31 insertions, 11 deletions
diff --git a/php-pecl-rar.spec b/php-pecl-rar.spec index 89aabc6..48df602 100644 --- a/php-pecl-rar.spec +++ b/php-pecl-rar.spec @@ -6,6 +6,7 @@  #  # Please, preserve the changelog entries  # +%{?scl:          %scl_package        php-pecl-rar}  %{!?php_inidir:  %global php_inidir  %{_sysconfdir}/php.d}  %{!?__pecl:      %global __pecl      %{_bindir}/pecl}  %{!?__php:       %global __php       %{_bindir}/php} @@ -19,27 +20,43 @@  %endif  Summary:        PHP extension for reading RAR archives -Name:           php-pecl-%{pecl_name} +Name:           %{?scl_prefix}php-pecl-%{pecl_name}  Version:        3.0.2 -Release:        2%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')} +Release:        3%{?dist}%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}  License:        PHP and Freeware with further limitations  Group:          Development/Languages  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 "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} +# Other third party repo stuff +Obsoletes:     php53-pecl-%{pecl_name} +Obsoletes:     php53u-pecl-%{pecl_name} +Obsoletes:     php54-pecl-%{pecl_name} +Obsoletes:     php54w-pecl-%{pecl_name} +%if "%{php_version}" > "5.5" +Obsoletes:     php55u-pecl-%{pecl_name} +Obsoletes:     php55w-pecl-%{pecl_name} +%endif +%if "%{php_version}" > "5.6" +Obsoletes:     php56u-pecl-%{pecl_name} +Obsoletes:     php56w-pecl-%{pecl_name} +%endif +%endif  %if 0%{?fedora} < 20 && 0%{?rhel} < 7  # Filter shared private @@ -187,6 +204,9 @@ rm -rf %{buildroot}  %changelog +* Mon Aug 25 2014 Remi Collet <remi@fedoraproject.org> - 3.0.2-3 +- allow SCL build +  * Wed Apr 16 2014 Remi Collet <remi@fedoraproject.org> - 3.0.2-2  - add numerical prefix to extension configuration file (php 5.6)  | 
