Update to 3.0.11; Add support for PHP 7
This commit is contained in:
parent
3f2091f80f
commit
370a127789
1
.gitignore
vendored
1
.gitignore
vendored
@ -20,3 +20,4 @@ swig-2.0.0.tar.gz
|
|||||||
/swig-3.0.8.tar.gz
|
/swig-3.0.8.tar.gz
|
||||||
/swig-3.0.9.tar.gz
|
/swig-3.0.9.tar.gz
|
||||||
/swig-3.0.10.tar.gz
|
/swig-3.0.10.tar.gz
|
||||||
|
/swig-3.0.11.tar.gz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
bb4ab8047159469add7d00910e203124 swig-3.0.10.tar.gz
|
SHA512 (swig-3.0.11.tar.gz) = 36771bd29fcec159d283f0f8d056937c6c913fec717f1f3b97a9b17fa27a8a85aa5f7b79bec3c46d70b625c36c26e9e856a4750cbd0872070ca18e9174842a52
|
||||||
|
22
swig.spec
22
swig.spec
@ -4,7 +4,7 @@
|
|||||||
%{!?tcl:%global tcl 1}
|
%{!?tcl:%global tcl 1}
|
||||||
%{!?guile:%global guile 1}
|
%{!?guile:%global guile 1}
|
||||||
%{!?lualang:%global lualang 1}
|
%{!?lualang:%global lualang 1}
|
||||||
|
%{!?phplang:%global phplang 1}
|
||||||
%{!?rubylang:%global rubylang 1}
|
%{!?rubylang:%global rubylang 1}
|
||||||
|
|
||||||
%ifarch aarch64 %{arm} %{mips} ppc64le ppc %{power64} s390 s390x
|
%ifarch aarch64 %{arm} %{mips} ppc64le ppc %{power64} s390 s390x
|
||||||
@ -25,13 +25,14 @@
|
|||||||
%if 0%{?rhel}
|
%if 0%{?rhel}
|
||||||
%{!?octave:%global octave 0}
|
%{!?octave:%global octave 0}
|
||||||
%else
|
%else
|
||||||
%{!?octave:%global octave 1}
|
# Disable octave tests, because swig doesn't support Octave 4.2.0
|
||||||
|
%{!?octave:%global octave 0}
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Summary: Connects C/C++/Objective C to some high-level programming languages
|
Summary: Connects C/C++/Objective C to some high-level programming languages
|
||||||
Name: swig
|
Name: swig
|
||||||
Version: 3.0.10
|
Version: 3.0.11
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv3+ and BSD
|
License: GPLv3+ and BSD
|
||||||
URL: http://swig.sourceforge.net/
|
URL: http://swig.sourceforge.net/
|
||||||
Source0: http://downloads.sourceforge.net/project/swig/swig/swig-%{version}/swig-%{version}.tar.gz
|
Source0: http://downloads.sourceforge.net/project/swig/swig/swig-%{version}/swig-%{version}.tar.gz
|
||||||
@ -43,7 +44,8 @@ Source4: ccache-swig.csh
|
|||||||
|
|
||||||
Patch0: swig308-Do-not-use-isystem.patch
|
Patch0: swig308-Do-not-use-isystem.patch
|
||||||
|
|
||||||
BuildRequires: perl, python2-devel, pcre-devel
|
BuildRequires: perl, pcre-devel
|
||||||
|
BuildRequires: python2-devel, python3-devel
|
||||||
BuildRequires: autoconf, automake, gawk, dos2unix
|
BuildRequires: autoconf, automake, gawk, dos2unix
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: help2man
|
BuildRequires: help2man
|
||||||
@ -84,6 +86,9 @@ BuildRequires: R-devel
|
|||||||
%if %{javalang}
|
%if %{javalang}
|
||||||
BuildRequires: java, java-devel
|
BuildRequires: java, java-devel
|
||||||
%endif
|
%endif
|
||||||
|
%if %{phplang}
|
||||||
|
BuildRequires: php, php-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Simplified Wrapper and Interface Generator (SWIG) is a software
|
Simplified Wrapper and Interface Generator (SWIG) is a software
|
||||||
@ -144,6 +149,9 @@ done
|
|||||||
# It causes that log had more then 600M.
|
# It causes that log had more then 600M.
|
||||||
%configure \
|
%configure \
|
||||||
--without-ocaml \
|
--without-ocaml \
|
||||||
|
%if %{phplang}
|
||||||
|
--with-php=%{__php} \
|
||||||
|
%endif
|
||||||
%if ! %{javalang}
|
%if ! %{javalang}
|
||||||
--without-java \
|
--without-java \
|
||||||
%endif
|
%endif
|
||||||
@ -272,6 +280,10 @@ install -pm 644 Tools/swig.gdb %{buildroot}%{_datadir}/%{name}/gdb
|
|||||||
%{_datadir}/%{name}/gdb
|
%{_datadir}/%{name}/gdb
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 02 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.11-1
|
||||||
|
- Update to 3.0.11
|
||||||
|
- Add support for PHP 7
|
||||||
|
|
||||||
* Wed Oct 19 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.10-2
|
* Wed Oct 19 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.10-2
|
||||||
- Sub-package file swig.gdb (bug #1332673)
|
- Sub-package file swig.gdb (bug #1332673)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user