diff options
| -rw-r--r-- | php-pecl-termbox.spec | 25 | 
1 files changed, 12 insertions, 13 deletions
diff --git a/php-pecl-termbox.spec b/php-pecl-termbox.spec index 44128e5..8eaeea6 100644 --- a/php-pecl-termbox.spec +++ b/php-pecl-termbox.spec @@ -1,6 +1,6 @@  # spec file for php-pecl-termbox  # -# Copyright (c) 2014-2017 Remi Collet +# Copyright (c) 2014-2018 Remi Collet  # License: CC-BY-SA  # http://creativecommons.org/licenses/by-sa/4.0/  # @@ -11,7 +11,7 @@  %scl_package       php-pecl-termbox  %endif -%global with_zts   0%{?__ztsphp:1} +%global with_zts   0%{!?_without_zts:%{?__ztsphp:1}}  %global pecl_name  termbox  %global with_tests %{?_without_tests:0}%{!?_without_tests:1}  %if "%{php_version}" < "5.6" @@ -23,13 +23,13 @@  Summary:        A termbox wrapper for PHP  Name:           %{?sub_prefix}php-pecl-%{pecl_name}  Version:        0.1.3 -Release:        4%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}} +Release:        5%{?dist}%{!?scl:%{!?nophptag:%(%{__php} -r 'echo ".".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION;')}}  License:        ASL 2.0 -Group:          Development/Languages  URL:            http://pecl.php.net/package/%{pecl_name}  Source0:        http://pecl.php.net/get/%{pecl_name}-%{version}.tgz  BuildRequires:  termbox-devel +BuildRequires:  %{?dtsprefix}gcc  BuildRequires:  %{?scl_prefix}php-devel  BuildRequires:  %{?scl_prefix}php-pear  # For tests @@ -50,14 +50,6 @@ Provides:       %{?scl_prefix}php-pecl-%{pecl_name}%{?_isa}  = %{version}-%{rele  %if "%{?vendor}" == "Remi Collet" && 0%{!?scl:1} && 0%{?rhel}  # Other third party repo stuff -Obsoletes:      php53-pecl-%{pecl_name} <= %{version} -Obsoletes:     php53u-pecl-%{pecl_name} <= %{version} -Obsoletes:      php54-pecl-%{pecl_name} <= %{version} -Obsoletes:     php54w-pecl-%{pecl_name} <= %{version} -%if "%{php_version}" > "5.5" -Obsoletes:     php55u-pecl-%{pecl_name} <= %{version} -Obsoletes:     php55w-pecl-%{pecl_name} <= %{version} -%endif  %if "%{php_version}" > "5.6"  Obsoletes:     php56u-pecl-%{pecl_name} <= %{version}  Obsoletes:     php56w-pecl-%{pecl_name} <= %{version} @@ -123,6 +115,8 @@ EOF  %build +%{?dtsenable} +  cd NTS  %{_bindir}/phpize  %configure \ @@ -139,6 +133,8 @@ make %{?_smp_mflags}  %install +%{?dtsenable} +  make -C NTS install INSTALL_ROOT=%{buildroot}  # install config file @@ -159,7 +155,7 @@ do install -Dpm 644 NTS/$i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i  done -%if 0%{?fedora} < 24 +%if 0%{?fedora} < 24 && 0%{?rhel} < 8  # when pear installed alone, after us  %triggerin -- %{?scl_prefix}php-pear  if [ -x %{__pecl} ] ; then @@ -228,6 +224,9 @@ REPORT_EXIT_STATUS=1 \  %changelog +* Wed Jun 27 2018 Remi Collet <remi@remirepo.net> - 0.1.3-5 +- cleanup +  * Tue Jul 18 2017 Remi Collet <remi@remirepo.net> - 0.1.3-4  - rebuild for PHP 7.2.0beta1 new API  | 
