635c445ef0
- Update to 4.0.0 - Support for Doxygen documentation comments which are parsed and converted into JavaDoc or PyDoc comments. - STL wrappers improved for C#, Java and Ruby. - C++11 STL containers added for Java, Python and Ruby. - Improved support for parsing C++11 and C++14 code. - Various fixes for shared_ptr. - Various C preprocessor corner case fixes. - Corner case fixes for member function pointers. - Python module overhaul by simplifying the generated code and turning most optimizations on by default. - %template improvements wrt scoping to align with C++ explicit template instantiations. - Added support for a command-line options file (sometimes called a response file). - Numerous enhancements and fixes for all supported target languages. - SWIG now classifies the status of target languages into either 'Experimental' or 'Supported' to indicate the expected maturity level. - Support for CFFI, Allegrocl, Chicken, CLISP, S-EXP, UFFI, Pike, Modula3 has been removed. - Octave 4.4-5.1 support added. - PHP5 support removed, PHP7 is now the supported PHP version. - Minimum Python version required is now 2.7, 3.2-3.7 are the only other versions supported. - Added support for Javascript NodeJS versions 2-10. - OCaml support is much improved and updated, minimum OCaml version required is now 3.12.0. See https://raw.githubusercontent.com/swig/swig/master/CHANGES - Drop patches (all included) swig-3.0.12-Coverity-fix-issue-reported-for-SWIG_Python_FixMetho.patch swig-3.0.12-Fix-generated-code-for-constant-expressions-containi.patch swig-perl526.patch swig-3.0.12-fix-collections.patch swig-3.0.12-Fix-Coverity-issue-reported-for-setslice-pycontainer.patch swig-3.0.12-Coverity-fix-issue-reported-for-wrapper-argument-che.patch swig-3.0.12-support-octave-4.4.patch swig-ocaml-int64.patch swig-3.0.12-Coverity-fix-issue-reported-for-SWIG_Python_ConvertF.patch OBS-URL: https://build.opensuse.org/request/show/701625 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/swig?expand=0&rev=112
173 lines
5.2 KiB
RPMSpec
173 lines
5.2 KiB
RPMSpec
#
|
|
# spec file for package swig
|
|
#
|
|
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%bcond_with swig_ocaml
|
|
%if 0%{?fedora} + 0%{?rhel_version} + 0%{?centos_version} > 0
|
|
%define docpath %{_docdir}/%{name}-%{version}
|
|
BuildRequires: perl-Test-Simple
|
|
BuildRequires: perl-devel
|
|
BuildRequires: ruby
|
|
%endif
|
|
%if 0%{?suse_version} > 0
|
|
%define docpath %{_docdir}/%{name}
|
|
BuildRequires: ruby-devel
|
|
%endif
|
|
Name: swig
|
|
Version: 4.0.0
|
|
Release: 0
|
|
Summary: Simplified Wrapper and Interface Generator
|
|
License: GPL-3.0-or-later AND BSD-3-Clause
|
|
Group: Development/Languages/C and C++
|
|
URL: http://www.swig.org/
|
|
Source: https://github.com/%{name}/%{name}/archive/rel-%{version}.tar.gz
|
|
Source1: %{name}.rpmlintrc
|
|
Patch2: swig308-isfinite.diff
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: bison
|
|
BuildRequires: fdupes
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libtool
|
|
BuildRequires: pcre-devel
|
|
BuildRequires: perl
|
|
BuildRequires: pkgconfig
|
|
%if 0%{?suse_version} >= 1500
|
|
BuildRequires: libboost_headers-devel
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-tools
|
|
%else
|
|
BuildRequires: boost-devel
|
|
BuildRequires: python-devel > 2.6
|
|
%endif
|
|
%if %{with swig_ocaml}
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: ocaml >= 3.12.0
|
|
BuildRequires: ocaml-camlp4-devel
|
|
BuildRequires: ocaml-findlib
|
|
%endif
|
|
|
|
%description
|
|
SWIG is a compiler that attempts to make it easy to integrate C, C++,
|
|
or Objective-C code with scripting languages including Perl, Tcl, and
|
|
Python. In a nutshell, you give it a bunch of ANSI C/C++ declarations
|
|
and it generates an interface between C and your favorite scripting
|
|
language. However, this is only scratching the surface of what SWIG
|
|
can do--some of its more advanced features include automatic
|
|
documentation generation, module and library management, extensive
|
|
customization options, and more.
|
|
|
|
%package doc
|
|
Summary: SWIG Manual
|
|
License: BSD-3-Clause
|
|
Group: Documentation/Man
|
|
Requires: swig
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
SWIG is a compiler that attempts to make it easy to integrate C, C++,
|
|
or Objective-C code with scripting languages including Perl, Tcl, and
|
|
Python. In a nutshell, you give it a bunch of ANSI C/C++ declarations
|
|
and it generates an interface between C and your favorite scripting
|
|
language. However, this is only scratching the surface of what SWIG
|
|
can do--some of its more advanced features include automatic
|
|
documentation generation, module and library management, extensive
|
|
customization options, and more.
|
|
|
|
This package contains the SWIG manual.
|
|
|
|
%package examples
|
|
Summary: SWIG example files
|
|
License: BSD-3-Clause
|
|
Group: Documentation/Howto
|
|
Requires: swig
|
|
|
|
%description examples
|
|
SWIG is a compiler that attempts to make it easy to integrate C, C++,
|
|
or Objective-C code with scripting languages including Perl, Tcl, and
|
|
Python. In a nutshell, you give it a bunch of ANSI C/C++ declarations
|
|
and it generates an interface between C and your favorite scripting
|
|
language. However, this is only scratching the surface of what SWIG
|
|
can do--some of its more advanced features include automatic
|
|
documentation generation, module and library management, extensive
|
|
customization options, and more.
|
|
|
|
This package contains SWIG examples, useful both for testing and
|
|
understandig SWIG usage.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-rel-%{version}
|
|
%autopatch -p1
|
|
|
|
%build
|
|
%ifarch s390 s390x
|
|
export CCSHARED="-fPIC"
|
|
%endif
|
|
./autogen.sh
|
|
%configure \
|
|
%if %{without swig_ocaml}
|
|
--without-ocaml \
|
|
%endif
|
|
--disable-ccache
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
%if 0%{?suse_version} >= 1500
|
|
export PY3=true
|
|
%endif
|
|
make %{?_smp_mflags} check
|
|
|
|
%install
|
|
%make_install
|
|
|
|
install -d %{buildroot}%{docpath}
|
|
cp -a TODO ANNOUNCE CHANGES* LICENSE README Doc/{Devel,Manual} \
|
|
%{buildroot}%{docpath}
|
|
install -d %{buildroot}%{_libdir}/swig
|
|
cp -a Examples %{buildroot}%{_libdir}/swig/examples
|
|
rm -rf %{buildroot}%{_libdir}/swig/examples/test-suite
|
|
|
|
# rm files that are not needed for running or rebuilding the examples
|
|
find %{buildroot}%{_libdir}/swig \
|
|
-name '*.dsp' -o -name '*.vcproj' -o -name '*.sln' -o \
|
|
-name '*.o' -o -name '*_wrap.c' | xargs rm
|
|
|
|
# fix perms
|
|
chmod -x %{buildroot}%{docpath}/Manual/*
|
|
find %{buildroot}%{_libdir}/swig -name '*.h' -perm /111 | \
|
|
xargs --no-run-if-empty chmod -x
|
|
ln -s %{_libdir}/swig/examples %{buildroot}%{docpath}/Examples
|
|
|
|
%fdupes %{buildroot}
|
|
|
|
%files
|
|
%defattr(644,root,root,755)
|
|
%dir %{docpath}
|
|
%{docpath}/[A-Z][A-Z]*
|
|
%{_datadir}/swig
|
|
%attr(755,root,root) %{_bindir}/swig
|
|
|
|
%files doc
|
|
%{docpath}/Devel
|
|
%{docpath}/Manual
|
|
|
|
%files examples
|
|
%{docpath}/Examples
|
|
%{_libdir}/swig
|
|
|
|
%changelog
|