cc052c
# We can skip tests
cc052c
%bcond_without testsuite
cc052c
cc052c
%if %{without testsuite}
cc052c
%global tcl 0
cc052c
%global guile 0
cc052c
%global lualang 0
cc052c
%global perllang 0
cc052c
%global phplang 0
cc052c
%global rubylang 0
cc052c
%global python3lang 0
cc052c
%global golang 0
cc052c
%global octave 0
cc052c
%global Rlang 0
cc052c
%global javalang 0
cc052c
%endif
cc052c
cc052c
%{!?tcl:%global tcl 1}
cc052c
%{!?lualang:%global lualang 1}
cc052c
%{!?perllang:%global perllang 1}
cc052c
%{!?phplang:%global phplang 1}
cc052c
%{!?rubylang:%global rubylang 1}
cc052c
%{!?python3lang:%global python3lang 1}
cc052c
cc052c
%if 0%{?rhel}
cc052c
%{!?golang:%global golang 0}
cc052c
%{!?guile:%global guile 0}
cc052c
%{!?octave:%global octave 0}
cc052c
%{!?Rlang:%global Rlang 0}
cc052c
%bcond_with build_ccache_swig
cc052c
%else
cc052c
%{!?guile:%global guile 1}
cc052c
%{!?octave:%global octave 1}
cc052c
%{!?Rlang:%global Rlang 1}
cc052c
%bcond_without build_ccache_swig
cc052c
%endif
cc052c
cc052c
%ifarch i686
cc052c
%{!?javalang:%global javalang 0}
cc052c
%else
cc052c
%{!?javalang:%global javalang 1}
cc052c
%endif
cc052c
cc052c
# Do not run Go tests, they failed with 4.0.0 on ppc64le, s390
cc052c
%ifarch x86_64 %{arm} aarch64
cc052c
%{!?golang:%global golang 1}
cc052c
%else
cc052c
%{!?golang:%global golang 0}
cc052c
%endif
cc052c
cc052c
Summary: Connects C/C++/Objective C to some high-level programming languages
cc052c
Name:    swig
cc052c
Version: 4.1.1
cc052c
Release: 1%{?dist}
cc052c
License: GPLv3+ and BSD
cc052c
URL:     http://swig.sourceforge.net/
cc052c
Source0: http://downloads.sourceforge.net/project/swig/swig/swig-%{version}/swig-%{version}.tar.gz
cc052c
# Define the part of man page sections
cc052c
Source1: description.h2m
cc052c
%if %{with build_ccache_swig}
cc052c
Source2: description-ccache.h2m
cc052c
Source3: ccache-swig.sh
cc052c
Source4: ccache-swig.csh
cc052c
%endif
cc052c
cc052c
BuildRequires: coreutils
cc052c
BuildRequires: findutils
cc052c
BuildRequires: make
cc052c
BuildRequires: perl-interpreter, pcre2-devel
cc052c
BuildRequires: python%{python3_pkgversion}-devel
cc052c
BuildRequires: autoconf, automake, gawk, dos2unix
cc052c
BuildRequires: gcc-c++
cc052c
BuildRequires: help2man
cc052c
BuildRequires: sed
cc052c
BuildRequires: perl-devel
cc052c
BuildRequires: perl(base)
cc052c
BuildRequires: perl(Config)
cc052c
BuildRequires: perl(Devel::Peek)
cc052c
BuildRequires: perl(ExtUtils::MakeMaker)
cc052c
BuildRequires: perl(fields)
cc052c
BuildRequires: perl(Math::BigInt)
cc052c
BuildRequires: perl(strict)
cc052c
BuildRequires: perl(Test::More)
cc052c
BuildRequires: perl(vars)
cc052c
BuildRequires: perl(warnings)
cc052c
BuildRequires: boost-devel
cc052c
# Need when Source/CParse/parser.y is patched
cc052c
BuildRequires: bison
cc052c
%if %{tcl}
cc052c
BuildRequires: tcl-devel
cc052c
%endif
cc052c
%if %{guile}
cc052c
BuildRequires: guile-devel
cc052c
%endif
cc052c
%if %{octave}
cc052c
BuildRequires: octave-devel
cc052c
%endif
cc052c
%if %{golang}
cc052c
BuildRequires: golang
cc052c
BuildRequires: golang-bin
cc052c
%ifnarch s390x
cc052c
BuildRequires: golang-shared
cc052c
%endif
cc052c
BuildRequires: golang-src
cc052c
%endif
cc052c
%if %{lualang}
cc052c
BuildRequires: lua-devel
cc052c
%endif
cc052c
%if %{rubylang}
cc052c
BuildRequires: ruby-devel
cc052c
%endif
cc052c
%if %{Rlang}
cc052c
BuildRequires: R-devel
cc052c
%endif
cc052c
%if %{javalang}
cc052c
BuildRequires: java, java-devel
cc052c
%endif
cc052c
%if %{phplang}
cc052c
BuildRequires: php, php-devel
cc052c
%endif
cc052c
cc052c
%description
cc052c
Simplified Wrapper and Interface Generator (SWIG) is a software
cc052c
development tool for connecting C, C++ and Objective C programs with a
cc052c
variety of high-level programming languages. SWIG is used with different
cc052c
types of target languages including common scripting languages such as
cc052c
Javascript, Perl, PHP, Python, Tcl and Ruby. The list of supported
cc052c
languages also includes non-scripting languages such as C#, D, Go language,
cc052c
Java including Android, Lua, OCaml, Octave, Scilab and R. Also several
cc052c
interpreted and compiled Scheme implementations (Guile, MzScheme/Racket)
cc052c
are supported. SWIG is most commonly used to create high-level interpreted
cc052c
or compiled programming environments, user interfaces, and as a tool for
cc052c
testing and prototyping C/C++ software.
cc052c
cc052c
%if %{with build_ccache_swig}
cc052c
%package -n ccache-swig
cc052c
Summary:   Fast compiler cache
cc052c
License:   GPLv2+
cc052c
Requires:  swig
cc052c
Conflicts: swig < 3.0.8-2
cc052c
cc052c
%description -n ccache-swig
cc052c
ccache-swig is a compiler cache. It speeds up re-compilation of C/C++/SWIG
cc052c
code by caching previous compiles and detecting when the same compile is
cc052c
being done again. ccache-swig is ccache plus support for SWIG.
cc052c
%endif
cc052c
cc052c
%package doc
cc052c
Summary:   Documentation files for SWIG
cc052c
License:   BSD
cc052c
BuildArch: noarch
cc052c
cc052c
%description doc
cc052c
This package contains documentation for SWIG and useful examples
cc052c
cc052c
%package gdb
cc052c
Summary:   Commands for easier debugging of SWIG
cc052c
License:   BSD
cc052c
Requires:  swig
cc052c
cc052c
%description gdb
cc052c
This package contains file with commands for easier debugging of SWIG
cc052c
in gdb.
cc052c
cc052c
%prep
cc052c
%autosetup -p1
cc052c
cc052c
for all in CHANGES README; do
cc052c
    iconv -f ISO88591 -t UTF8 < $all > $all.new
cc052c
    touch -r $all $all.new
cc052c
    mv -f $all.new $all
cc052c
done
cc052c
cc052c
%build
cc052c
./autogen.sh
cc052c
cc052c
# Disable maximum compile warnings when octave is supported, because Octave
cc052c
# code produces lots of the warnings demanded by strict ISO C and ISO C++.
cc052c
# It causes that log had more then 600M.
cc052c
# AC_CHECK_PROGS requires just the name, so use for configure
cc052c
#   --with-python3=python3 --with-2to3=2to3
cc052c
%configure \
cc052c
  --without-ocaml \
cc052c
%if %{python3lang}
cc052c
  --with-python3=python3 \
cc052c
  --with-2to3=2to3 \
cc052c
%else
cc052c
  --without-python3 \
cc052c
%endif
cc052c
%if %{phplang}
cc052c
  --with-php \
cc052c
%else
cc052c
  --without-php \
cc052c
%endif
cc052c
%if ! %{perllang}
cc052c
  --without-perl5 \
cc052c
%endif
cc052c
%if ! %{tcl}
cc052c
  --without-tcl \
cc052c
%endif
cc052c
%if ! %{javalang}
cc052c
  --without-java \
cc052c
%endif
cc052c
%if ! %{Rlang}
cc052c
  --without-r \
cc052c
%endif
cc052c
%if ! %{golang}
cc052c
  --without-go \
cc052c
%endif
cc052c
%if ! %{guile}
cc052c
  --without-guile \
cc052c
%endif
cc052c
%if %{octave}
cc052c
  --with-octave=%{_bindir}/octave \
cc052c
  --without-maximum-compile-warnings \
cc052c
%endif
cc052c
%if %{without build_ccache_swig}
cc052c
  --disable-ccache \
cc052c
%endif
cc052c
;
cc052c
%{make_build}
cc052c
cc052c
%if %{with testsuite}
cc052c
# Test suite
cc052c
make check PY3=1
cc052c
%endif
cc052c
cc052c
%install
cc052c
# Remove all arch dependent files in Examples/ created during tests
cc052c
make clean-examples
cc052c
cc052c
pushd Examples/
cc052c
# Remove all arch dependent files in Examples/
cc052c
find -type f -name 'Makefile.in' -delete -print
cc052c
cc052c
# We don't want to ship files below.
cc052c
rm -rf test-suite
cc052c
find -type f -name '*.dsp' -delete -print
cc052c
find -type f -name '*.dsw' -delete -print
cc052c
cc052c
# Convert files to UNIX format
cc052c
for all in `find -type f`; do
cc052c
    dos2unix -k $all
cc052c
    chmod -x $all
cc052c
done
cc052c
popd
cc052c
cc052c
%{make_install}
cc052c
cc052c
#################################################
cc052c
# Use help output for generating of man page swig
cc052c
echo "Options:" >help_swig
cc052c
%{buildroot}%{_bindir}/swig --help >>help_swig
cc052c
cc052c
# Update the output to be correctly formatted be help2man
cc052c
sed -i -e 's/^\(\s\+-[^-]\+\)- \(.*\)$/\1 \2/' help_swig
cc052c
sed -i -e 's/^\(\s\+-\w\+-[^-]*\)- \(.*\)$/\1 \2/' help_swig
cc052c
cc052c
# Generate a helper script that will be used by help2man
cc052c
cat >h2m_helper_swig <<'EOF'
cc052c
#!/bin/bash
cc052c
[ "$1" == "--version" ] && echo "" || cat help_swig
cc052c
EOF
cc052c
chmod a+x h2m_helper_swig
cc052c
cc052c
# Generate man page
cc052c
help2man -N --section 1 ./h2m_helper_swig --include %{SOURCE1} -o %{name}.1
cc052c
cc052c
%if %{with build_ccache_swig}
cc052c
########################################################
cc052c
# Use help output for generating of man page ccache-swig
cc052c
%{buildroot}%{_bindir}/ccache-swig -h >>help_ccache
cc052c
cc052c
# Update the output to be correctly formatted be help2man
cc052c
sed -i -e '/compiler cache/ d' help_ccache
cc052c
sed -i -e '/Copyright/ d' help_ccache
cc052c
sed -i -e 's/^Usage:/[synopsis]/' help_ccache
cc052c
sed -i -e 's/^Options:/[options]/' help_ccache
cc052c
sed -i -e 's/^\s\+/ /' help_ccache
cc052c
sed -i -e 's/^\(-[^- ] <\w\+>\s\+\) \(\w.\+\)$/ \1 \2/' help_ccache
cc052c
sed -i -e 's/^\(-[^- ]\s\+\) \(\w.\+\)$/ \1 \2/' help_ccache
cc052c
cc052c
# Generate a helper script that will be used by help2man
cc052c
cat >h2m_helper_ccache <<'EOF'
cc052c
#!/bin/bash
cc052c
[ "$1" == "--version" ] && echo ""
cc052c
[ "$1" == "--help" ] && echo "" || echo ""
cc052c
EOF
cc052c
chmod a+x h2m_helper_ccache
cc052c
cc052c
cat %{SOURCE2} >>help_ccache
cc052c
sed -i -e 's#@DOCDIR@#%{_docdir}#' help_ccache
cc052c
cc052c
# Generate man page
cc052c
help2man -N --section 1 ./h2m_helper_ccache --include help_ccache -o ccache-swig.1
cc052c
%endif
cc052c
cc052c
# Add man page for swig to repository
cc052c
mkdir -p %{buildroot}%{_mandir}/man1/
cc052c
install -p -m 0644 %{name}.1 %{buildroot}%{_mandir}/man1/
cc052c
%if %{with build_ccache_swig}
cc052c
install -p -m 0644 ccache-swig.1 %{buildroot}%{_mandir}/man1/
cc052c
%endif
cc052c
cc052c
# Quiet some rpmlint complaints - remove empty file
cc052c
rm -f %{buildroot}%{_datadir}/%name/%{version}/octave/std_carray.i
cc052c
cc052c
%if %{with build_ccache_swig}
cc052c
# Enable ccache-swig by default
cc052c
mkdir -p %{buildroot}%{_sysconfdir}/profile.d/
cc052c
install -dm 755 %{buildroot}%{_sysconfdir}/profile.d
cc052c
install -pm 644 %{SOURCE3} %{SOURCE4} %{buildroot}%{_sysconfdir}/profile.d
cc052c
%endif
cc052c
cc052c
# Add swig.gdb sub-package gdb
cc052c
mkdir -p %{buildroot}%{_datadir}/%{name}/gdb
cc052c
install -pm 644 Tools/swig.gdb %{buildroot}%{_datadir}/%{name}/gdb
cc052c
cc052c
%files
cc052c
%{_bindir}/%{name}
cc052c
%{_datadir}/%{name}
cc052c
%exclude %{_datadir}/%{name}/gdb
cc052c
%{_mandir}/man1/swig.1*
cc052c
%license LICENSE LICENSE-GPL LICENSE-UNIVERSITIES
cc052c
%doc ANNOUNCE CHANGES CHANGES.current
cc052c
%doc COPYRIGHT README TODO
cc052c
cc052c
%if %{with build_ccache_swig}
cc052c
%files -n ccache-swig
cc052c
%{_bindir}/ccache-swig
cc052c
%config(noreplace) %{_sysconfdir}/profile.d/ccache-swig.*sh
cc052c
%{_mandir}/man1/ccache-swig.1*
cc052c
%endif
cc052c
cc052c
%files doc
cc052c
%license LICENSE LICENSE-GPL LICENSE-UNIVERSITIES
cc052c
%doc Doc Examples COPYRIGHT
cc052c
cc052c
%files gdb
cc052c
%{_datadir}/%{name}/gdb
cc052c
cc052c
%changelog
cc052c
* Thu Dec 01 2022 Jitka Plesnikova <jplesnik@redhat.com> - 4.1.1-1
cc052c
- Update to 4.1.1
cc052c
cc052c
* Tue Oct 25 2022 Jitka Plesnikova <jplesnik@redhat.com> - 4.1.0-1
cc052c
- Update to 4.1.0
cc052c
cc052c
* Thu Jul 21 2022 Maxwell G <gotmax@e.email> - 4.0.2-18
cc052c
- Exclude golang extension from i686
cc052c
cc052c
* Tue Jul 19 2022 Maxwell G <gotmax@e.email> - 4.0.2-17
cc052c
- Rebuild for CVE-2022-{1705,32148,30631,30633,28131,30635,30632,30630,1962} in
cc052c
  golang
cc052c
cc052c
* Sat Jun 18 2022 Robert-André Mauchin <zebob.m@gmail.com> - 4.0.2-16
cc052c
- Rebuilt for CVE-2022-1996, CVE-2022-24675, CVE-2022-28327, CVE-2022-27191,
cc052c
  CVE-2022-29526, CVE-2022-30629
cc052c
cc052c
* Wed Jun 01 2022 Orion Poplawski <orion@nwra.com> - 4.0.2-15
cc052c
- Rebuild for octave 7.1
cc052c
cc052c
* Thu Feb 24 2022 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-14
cc052c
- Disable Java tests
cc052c
cc052c
* Sat Jan 22 2022 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-13
cc052c
- Fix tests against GCC12, enable Guile tests
cc052c
cc052c
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-12
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
cc052c
cc052c
* Wed Nov 24 2021 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-11
cc052c
- Disable PHP test, it fails with PHP 8.1
cc052c
cc052c
* Thu Oct 07 2021 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-10
cc052c
- Enable Python tests
cc052c
cc052c
* Tue Aug 10 2021 Orion Poplawski <orion@nwra.com> - 4.0.2-9
cc052c
- Rebuild for octave 6.3.0
cc052c
cc052c
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-8
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
cc052c
cc052c
* Thu Jul 15 2021 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-7
cc052c
- Disable Python tests, they fail with 3.10.0~b2
cc052c
cc052c
* Mon May 31 2021 Orion Poplawski <orion@nwra.com> - 4.0.2-6
cc052c
- Add patch for octave 6 support (bz#1919617)
cc052c
cc052c
* Fri Mar 05 2021 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-5
cc052c
- Backport support of PHP8 from upstream
cc052c
cc052c
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.2-4
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
cc052c
cc052c
* Fri Aug 28 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-3
cc052c
- Enable tests for Python 3
cc052c
cc052c
* Wed Jul 29 2020 Tom Stellard <tstellar@redhat.com> - 4.0.2-2
cc052c
- Use make macros
cc052c
  https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
cc052c
- Disable Go tests
cc052c
cc052c
* Mon Jun 08 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.2-1
cc052c
- Update to 4.0.2
cc052c
cc052c
* Fri Mar 06 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.1-9
cc052c
- Remove BR for Python 2 (bug#1807547)
cc052c
cc052c
* Tue Feb 25 2020 Peter Robinson <pbrobinson@fedoraproject.org> - 4.0.1-8
cc052c
- Add fix for newer NodeJS version
cc052c
cc052c
* Tue Feb 04 2020 Michael Jeanson <mjeanson@efficios.com> - 4.0.1-7
cc052c
- Fix crash in Python backend when using empty docstrings
cc052c
cc052c
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-6
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
cc052c
cc052c
* Thu Jan 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.1-5
cc052c
- Add support for Ruby 2.7
cc052c
- Fix code generated for Ruby global variables
cc052c
cc052c
* Sat Jan 18 2020 Mamoru TASAKA <mtasaka@fedoraproject.org> - 4.0.1-4
cc052c
- Backport upstream fixes for ruby 2.7 (as small as possible for now)
cc052c
cc052c
* Tue Nov 19 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.1-3
cc052c
- Disable Ruby tests on all archs
cc052c
cc052c
* Thu Oct 17 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.1-2
cc052c
- Disable Ruby tests on x86_64
cc052c
cc052c
* Wed Aug 21 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.1-1
cc052c
- Update to 4.0.1
cc052c
  - Add Python 3.8 support
cc052c
  - Python Sphinx compatibility added for Doxygen comments
cc052c
  - Fix some C++17 compatibility problems in Python and Ruby generated
cc052c
    code
cc052c
cc052c
* Mon Aug 12 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.0-5
cc052c
- Backport upstream fix for Go tests (BZ#1736731)
cc052c
cc052c
* Tue Aug 06 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.0-4
cc052c
- Disable Go tests, they fail with Go 1.13-beta
cc052c
cc052c
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.0-3
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
cc052c
cc052c
* Wed Jun 05 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.0-2
cc052c
- Updated package description
cc052c
cc052c
* Fri May 03 2019 Jitka Plesnikova <jplesnik@redhat.com> - 4.0.0-1
cc052c
- Update to 4.0.0
cc052c
cc052c
* Sat Apr 27 2019 Orion Poplawski <orion@nwra.com> - 3.0.12-25
cc052c
- Add patches for octave 5.1 support
cc052c
cc052c
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.12-24
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
cc052c
cc052c
* Fri Jan 25 2019 Jonathan Wakely <jwakely@redhat.com> - 3.0.12-23
cc052c
- Rebuilt for Boost 1.69
cc052c
cc052c
* Thu Nov 15 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.12-22
cc052c
- Add support for Octave 4.4
cc052c
cc052c
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.12-21
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
cc052c
cc052c
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 3.0.12-20
cc052c
- Rebuilt for Python 3.7
cc052c
cc052c
* Fri Jun 22 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.12-19
cc052c
- Disable using of Python 2
cc052c
cc052c
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.0.12-18
cc052c
- Rebuilt for Python 3.7
cc052c
cc052c
* Tue Apr 24 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.12-17
cc052c
- Backport upstream Coverity fixes (bug#1570037)
cc052c
- Do not build ccache-swig on RHEL
cc052c
cc052c
* Wed Feb 14 2018 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.12-16
cc052c
- Update conditions for tests
cc052c
- Fix configure to properly check version of Go 1.10
cc052c
cc052c
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.12-15
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
cc052c
cc052c
* Tue Jan 23 2018 Jonathan Wakely <jwakely@redhat.com> - 3.0.12-14
cc052c
- Rebuilt for Boost 1.66
cc052c
cc052c
* Tue Nov 21 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.12-13
cc052c
- Disable PHP tests, because they fail with PHP 7.2.0-RC
cc052c
cc052c
* Wed Sep 20 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.12-12
cc052c
- Fix generated code for constant expressions containing wchar_t L
cc052c
  literals
cc052c
cc052c
* Thu Sep 07 2017 Jared Smith <jsmith@fedoraproject.org> - 3.0.12-11
cc052c
- Add patch to support NodeJS versions 7 and 8, fixes FTBFS
cc052c
cc052c
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.12-10
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
cc052c
cc052c
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.12-9
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
cc052c
cc052c
* Wed Jun 14 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.12-8
cc052c
- Fixed tests to building on Perl 5.26 without dot in INC
cc052c
cc052c
* Mon May 15 2017 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.12-7
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
cc052c
cc052c
* Sat Apr 29 2017 Björn Esser <besser82@fedoraproject.org> - 3.0.12-6
cc052c
- Rebuilt for bootstrapping new arch: s390x
cc052c
cc052c
* Mon Feb 13 2017 Björn Esser <besser82@fedoraproject.org> - 3.0.12-5
cc052c
- Rebuilt with R-testsuite enabled
cc052c
cc052c
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.12-4
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cc052c
cc052c
* Wed Feb 01 2017 Björn Esser <besser82@fedoraproject.org> - 3.0.12-3
cc052c
- Rebuilt with Octave-testsuite enabled
cc052c
cc052c
* Sun Jan 29 2017 Björn Esser <besser82@fedoraproject.org> - 3.0.12-2
cc052c
- Rebuilt for Boost 1.63
cc052c
cc052c
* Sat Jan 28 2017 Björn Esser <besser82@fedoraproject.org> - 3.0.12-1
cc052c
- Update to 3.0.12
cc052c
- Drop Patch1 and Patch2, applied in upstream-tarball
cc052c
- Build without Octave and R testsuite, since they are broken due to GCC-7
cc052c
cc052c
* Sat Jan 14 2017 Björn Esser <besser82@fedoraproject.org> - 3.0.11-2
cc052c
- Add Patch1 from upstream
cc052c
  - Do not dump Octave core in examples/test suite scripts
cc052c
- Add Patch2 for Fedora >= 26, backported from upstream
cc052c
  - Support for Octave 4.2
cc052c
cc052c
* Mon Jan 02 2017 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.11-1
cc052c
- Update to 3.0.11
cc052c
  - Add support for PHP 7
cc052c
  - Disable guile tests
cc052c
cc052c
* Wed Oct 19 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.10-2
cc052c
- Sub-package file swig.gdb (bug #1332673)
cc052c
cc052c
* Mon Jun 13 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.10-1
cc052c
- Update to 3.0.10
cc052c
cc052c
* Wed May 25 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.8-8
cc052c
- Fix Ruby opaque pointer handling (bug #1299502)
cc052c
cc052c
* Mon Apr 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.8-7
cc052c
- Add support for Go 1.6
cc052c
cc052c
* Fri Mar 11 2016 Michal Toman <mtoman@fedoraproject.org> - 3.0.8-6
cc052c
- Do not build R, Java and Go on MIPS
cc052c
cc052c
* Tue Mar 01 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.8-5
cc052c
- Used updated upstream fix for GCC 6 issue
cc052c
cc052c
* Mon Feb 22 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.8-4
cc052c
- Patched to build against GCC 6
cc052c
- Disable Go tests, because they failed against new Go 1.6
cc052c
cc052c
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.8-3
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
cc052c
cc052c
* Thu Jan 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.8-2
cc052c
- Move ccache-swig to sub-package
cc052c
- Generate man page for ccache-swig from help
cc052c
cc052c
* Mon Jan 04 2016 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.8-1
cc052c
- Update to 3.0.8
cc052c
cc052c
* Sun Dec 06 2015 Björn Esser <fedora@besser82.io> - 3.0.7-10
cc052c
- fix hunk-offsets in patches
cc052c
cc052c
* Sun Dec 06 2015 Björn Esser <fedora@besser82.io> - 3.0.7-9
cc052c
- add Patch10: Python 3.5, -builtin, excess elements in struct initializer
cc052c
- add Patch11: Fix incorrect director_classic_runme.py test
cc052c
- add Patch12: Python SystemError fix with -builtin
cc052c
- add Patch13: size_type-correction for SwigPySequence_Cont
cc052c
- add Patch14: Python use Py_ssize_t instead of int for better portability
cc052c
- add Patch15: Add python inplace-operator caveats to pyopers.swg
cc052c
cc052c
* Wed Oct 21 2015 David Sommerseth <davids@redhat.com> - 3.0.7-8
cc052c
- Ignore locally installed ccache when running CCache unit tests
cc052c
- Resolves: bz#1274031
cc052c
cc052c
* Wed Sep 16 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.7-7
cc052c
- Remove the old setools patch. The bug was already fixed by upstream
cc052c
- Resolves: bz#1180257
cc052c
cc052c
* Mon Sep 14 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.7-6
cc052c
- Fix Ruby tracking code (BZ#1225140)
cc052c
cc052c
* Thu Sep 03 2015 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-5
cc052c
- Rebuilt for Boost 1.59
cc052c
cc052c
* Tue Sep 01 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.7-4
cc052c
- Disable Ruby tests
cc052c
cc052c
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 3.0.7-3
cc052c
- Rebuilt for Boost 1.59
cc052c
cc052c
* Wed Aug 05 2015 Jonathan Wakely <jwakely@redhat.com> 3.0.7-2
cc052c
- Rebuilt for Boost 1.58
cc052c
cc052c
* Tue Aug 04 2015 Björn Esser <bjoern.esser@gmail.com> - 3.0.7-1
cc052c
- Update to 3.0.7 (#1249845)
cc052c
- Dropped Patch2, changes applied in upstream tarball
cc052c
cc052c
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.6-6
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
cc052c
cc052c
* Thu Jul 23 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.6-5
cc052c
- rebuild for Boost 1.58
cc052c
cc052c
* Thu Jul 23 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.6-4
cc052c
- Disable Ruby tests on Fedora 23 and higher when building on armv7
cc052c
- Update list of Perl dependencies
cc052c
cc052c
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 3.0.6-3
cc052c
- rebuild for Boost 1.58
cc052c
cc052c
* Fri Jul 10 2015 Orion Poplawski <orion@cora.nwra.com> - 3.0.6-2
cc052c
- Add patch for octave 4.0.0 support
cc052c
cc052c
* Mon Jul 06 2015 Björn Esser <bjoern.esser@gmail.com> - 3.0.6-1
cc052c
- Update to 3.0.6 (#1240107)
cc052c
- Dropped Patch2 and Patch3, changes applied in upstream tarball
cc052c
cc052c
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.5-8
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
cc052c
cc052c
* Tue May 26 2015 Dan Horák <dan[at]danny.cz> - 3.0.5-7
cc052c
- skip ruby also on s390 (#1225140)
cc052c
cc052c
* Sat Apr 25 2015 Björn Esser <bjoern.esser@gmail.com> - 3.0.5-6
cc052c
- Updated Patch3 with a more elaborated approach
cc052c
cc052c
* Sat Apr 04 2015 Björn Esser <bjoern.esser@gmail.com> - 3.0.5-5
cc052c
- Disable Ruby-testsuite on fc23 when building on armv7.  It currently
cc052c
  segfaults for unknown reason.
cc052c
- Add a notice about Patch2 got accepted by upstream and can be dropped
cc052c
  on next version.
cc052c
cc052c
* Fri Apr 03 2015 Björn Esser <bjoern.esser@gmail.com> - 3.0.5-4
cc052c
- Add Patch3 to fix segfaults of Python-wrappers when generating
cc052c
  code with `-buildin -modern -modernargs`-flags
cc052c
cc052c
* Thu Feb 19 2015 Orion Poplawski <orion@cora.nwra.com> - 3.0.5-3
cc052c
- Rebuild for gcc 5 C++11 ABI
cc052c
cc052c
* Tue Feb 10 2015 Björn Esser <bjoern.esser@gmail.com> - 3.0.5-2
cc052c
- Enable ccache-swig by default, if ccache is installed (#1176861)
cc052c
cc052c
* Tue Feb 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.5-1
cc052c
- Update to 3.0.5 (#1178440)
cc052c
cc052c
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 3.0.2-3
cc052c
- Rebuild for boost 1.57.0
cc052c
cc052c
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-2
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
cc052c
cc052c
* Mon Jun 09 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.2-1
cc052c
- Update to 3.0.2
cc052c
cc052c
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.1-2
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cc052c
cc052c
* Thu May 29 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.1-1
cc052c
- Update to 3.0.1
cc052c
- Updated parameters for configure and conditions for BRs
cc052c
cc052c
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 3.0.0-7
cc052c
- Rebuild for boost 1.55.0
cc052c
cc052c
* Thu May 22 2014 Dan Horák <dan[at]danny.cz> 3.0.0-6
cc052c
- java unit tests fail on s390(x), too. disable for now
cc052c
cc052c
* Mon May 12 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.0.0-5
cc052c
- unit tests fail on aarch64, too. disable for now
cc052c
cc052c
* Fri Apr 25 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.0.0-4
cc052c
- No golang or R on aarch64 (currently)
cc052c
cc052c
* Tue Apr 22 2014 Karsten Hopp <karsten@redhat.com> 3.0.0-3
cc052c
- golang is exclusivearch %%{ix86} x86_64 %%{arm}, don't BR it on ppc*, s390*
cc052c
- unit tests fail on other ppc archs, too. disable for now
cc052c
cc052c
* Fri Mar 28 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.0-2
cc052c
- Small changes to enable ppc64le (BZ#1081724)
cc052c
cc052c
* Thu Mar 20 2014 Jitka Plesnikova <jplesnik@redhat.com> - 3.0.0-1
cc052c
- Update to 3.0.0
cc052c
- Update BRs to run tests for Java, Ruby, Lua, R, Go
cc052c
- Replace %%define by %%global (BZ#1063589)
cc052c
- Remove Group tag (BZ#1063589)
cc052c
- Generate man page from help to have the correct list of options
cc052c
cc052c
* Fri Feb 28 2014 Orion Poplawski <orion@cora.nwra.com> - 2.0.12-1
cc052c
- Update to 2.0.12
cc052c
- A patch to fix guile locale
cc052c
cc052c
* Wed Oct 09 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.11-2
cc052c
- Use bconds for enabling testsuite
cc052c
cc052c
* Mon Sep 16 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.11-1
cc052c
- Update to 2.0.11
cc052c
cc052c
* Wed Aug 21 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.10-4
cc052c
- Fixed BZ#994120
cc052c
  - Remove the req/prov filtering from version docdir (BZ#489421), because
cc052c
    it is not needed
cc052c
cc052c
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-3
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
cc052c
cc052c
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 2.0.10-2
cc052c
- Rebuild for boost 1.54.0
cc052c
cc052c
* Fri May 31 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.10-1
cc052c
- Update to 2.0.10
cc052c
- swig203-rh706140.patch merged
cc052c
- swig204-rh752054.patch merged
cc052c
- Create swig-2.0.10-Fix-x390-build.patch
cc052c
cc052c
* Fri May 24 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.9-3
cc052c
- Add man page for swig (BZ#948407)
cc052c
cc052c
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.9-2
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
cc052c
cc052c
* Mon Jan 07 2013 Adam Tkac <atkac redhat com> 2.0.9-1
cc052c
- update to 2.0.9
cc052c
cc052c
* Wed Sep 12 2012 Adam Tkac <atkac redhat com> 2.0.8-1
cc052c
- update to 2.0.8 (#851364)
cc052c
- swig207-rh830660.patch merged
cc052c
- swig207-r13128.patch merged
cc052c
- swig-rh841245.patch merged
cc052c
cc052c
* Thu Jul 19 2012 Adam Tkac <atkac redhat com> 2.0.7-4
cc052c
- don't clean "bool" definition in PERL 5 environment (#841245)
cc052c
cc052c
* Wed Jun 27 2012 Adam Tkac <atkac redhat com> 2.0.7-3
cc052c
- fix building of setools package
cc052c
cc052c
* Tue Jun 12 2012 Adam Tkac <atkac redhat com> 2.0.7-2
cc052c
- fix generating of python3 wrappers (#830660)
cc052c
- don't crash when attepmting to warn about wrong descructor (#830249)
cc052c
cc052c
* Thu Jun 07 2012 Adam Tkac <atkac redhat com> 2.0.7-1
cc052c
- update to 2.0.7
cc052c
- swig-1.3.23-pylib.patch is no longer needed
cc052c
cc052c
* Thu May 10 2012 Adam Tkac <atkac redhat com> 2.0.6-1
cc052c
- update to 2.0.6
cc052c
cc052c
* Mon Apr 23 2012 Adam Tkac <atkac redhat com> 2.0.5-1
cc052c
- update to 2.0.5
cc052c
- patches merged
cc052c
  - swig204-rh753321.patch
cc052c
  - swig204-rh679948.patch
cc052c
  - swig204-rh770696.patch
cc052c
cc052c
* Thu Apr 19 2012 Adam Tkac <atkac redhat com> - 2.0.4-7
cc052c
- drop Octave support on RHEL
cc052c
cc052c
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 2.0.4-6
cc052c
- Rebuild against PCRE 8.30
cc052c
cc052c
* Thu Jan 05 2012 Adam Tkac <atkac redhat com> 2.0.4-5
cc052c
- fix for PHP 5.4 bindings (#770696)
cc052c
cc052c
* Tue Nov 15 2011 Adam Tkac <atkac redhat com> 2.0.4-4
cc052c
- don't apply patch for #752054 till guile2 gets into distro
cc052c
cc052c
* Mon Nov 14 2011 Adam Tkac <atkac redhat com> 2.0.4-3
cc052c
- backport r12814 from trunk (#753321)
cc052c
- use scm_to_utf8_string instead of SCM_STRING_CHARS in guile bindings (#752054)
cc052c
- improve Octave compatibility (#679948)
cc052c
cc052c
* Mon Aug 1 2011 Nick Bebout <nb@fedoraproject.org> 2.0.4-2
cc052c
- rebuild to fix 2.0.3 being tagged in over 2.0.4-1
cc052c
cc052c
* Mon Jun 20 2011 Adam Tkac <atkac redhat com> 2.0.4-1
cc052c
- update to 2.0.4
cc052c
- patches merged
cc052c
  - swig200-rh666429.patch
cc052c
  - swig200-rh623854.patch
cc052c
cc052c
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> 2.0.3-3
cc052c
- Perl mass rebuild
cc052c
cc052c
* Fri May 20 2011 Adam Tkac <atkac redhat com> 2.0.3-2
cc052c
- make guile generator compatible with guile2 (#706140)
cc052c
cc052c
* Fri Apr 22 2011 Adam Tkac <atkac redhat com> 2.0.3-1
cc052c
- update to 2.0.3
cc052c
- swig202-rh691513.patch merged
cc052c
cc052c
* Tue Mar 29 2011 Adam Tkac <atkac redhat com> 2.0.2-2
cc052c
- bacport fix for preprocessor regression (#691513)
cc052c
cc052c
* Mon Feb 21 2011 Adam Tkac <atkac redhat com> 2.0.2-1
cc052c
- update to 2.0.2
cc052c
cc052c
* Wed Feb 16 2011 Adam Tkac <atkac redhat com> 2.0.1-4
cc052c
- improve fix for PySlice issue (#666429)
cc052c
cc052c
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-3
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
cc052c
cc052c
* Mon Jan 03 2011 Adam Tkac <atkac redhat com> 2.0.1-2
cc052c
- attempt to fix PySlice* API/ABI issues with the Python 3.2 (#666429)
cc052c
cc052c
* Thu Oct 07 2010 Adam Tkac <atkac redhat com> 2.0.1-1
cc052c
- update to 2.0.1 (#640354)
cc052c
- BR pcre-devel
cc052c
cc052c
* Fri Aug 27 2010 Adam Tkac <atkac redhat com> 2.0.0-5
cc052c
- make PyCObjects->PyCapsule patch C++ compatible (#627310)
cc052c
cc052c
* Fri Aug 20 2010 Adam Tkac <atkac redhat com> 2.0.0-4
cc052c
- improve patch for #623854 (PyCObjects->PyCapsule transition)
cc052c
cc052c
* Tue Aug 17 2010 Adam Tkac <atkac redhat com> 2.0.0-3
cc052c
- python: use new PyCapsule API instead of former PyCObjects API
cc052c
cc052c
* Mon Jul 12 2010 Adam Tkac <atkac redhat com> 2.0.0-2
cc052c
- add LICENSE-GPL, LICENSE-UNIVERSITIES and COPYRIGHT to %%doc
cc052c
- include all license files in the -doc subpkg
cc052c
cc052c
* Thu Jun 24 2010 Adam Tkac <atkac redhat com> 2.0.0-1
cc052c
- update to 2.0.0
cc052c
- license changed to GPLv3+ and BSD
cc052c
cc052c
* Mon Feb 22 2010 Adam Tkac <atkac redhat com> 1.3.40-5
cc052c
- s/LGPL/LGPLv2+
cc052c
cc052c
* Thu Feb 18 2010 Adam Tkac <atkac redhat com> 1.3.40-4
cc052c
- correct license field again
cc052c
cc052c
* Thu Feb 18 2010 Adam Tkac <atkac redhat com> 1.3.40-3
cc052c
- correct license field
cc052c
cc052c
* Mon Dec 07 2009 Adam Tkac <atkac redhat com> 1.3.40-2
cc052c
- package review related fixes (#226442)
cc052c
cc052c
* Wed Sep 02 2009 Adam Tkac <atkac redhat com> 1.3.40-1
cc052c
- update to 1.3.40
cc052c
cc052c
* Tue Aug 11 2009 Adam Tkac <atkac redhat com> 1.3.39-4
cc052c
- correct source URL
cc052c
cc052c
* Mon Aug 03 2009 Adam Tkac <atkac redhat com> 1.3.39-3
cc052c
- rebuilt
cc052c
cc052c
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.39-2
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
cc052c
cc052c
* Mon Mar 30 2009 Adam Tkac <atkac redhat com> 1.3.39-1
cc052c
- update to 1.3.39
cc052c
- swig-1.3.38-rh485540.patch was merged
cc052c
- add Example/ to -doc again (#489077), filter provides correctly
cc052c
cc052c
* Tue Mar 10 2009 Adam Tkac <atkac redhat com> 1.3.38-5
cc052c
- revert #489077 enhancement due #489421
cc052c
cc052c
* Mon Mar 09 2009 Adam Tkac <atkac redhat com> 1.3.38-4
cc052c
- moved documentation to -doc subpackage and build it as noarch
cc052c
- added Example/ directory to -doc (#489077)
cc052c
- fixed build root
cc052c
cc052c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.38-3
cc052c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
cc052c
cc052c
* Mon Feb 16 2009 Adam Tkac <atkac redhat com> 1.3.38-2
cc052c
- handle -co option gracefully (#485540)
cc052c
cc052c
* Thu Feb 12 2009 Adam Tkac <atkac redhat com> 1.3.38-1
cc052c
- updated to 1.3.38
cc052c
cc052c
* Thu Dec 04 2008 Adam Tkac <atkac redhat com> 1.3.36-2
cc052c
- #470811 is fixed => dropped workaround
cc052c
cc052c
* Mon Nov 10 2008 Adam Tkac <atkac redhat com> 1.3.36-1
cc052c
- updated to 1.3.36
cc052c
- finally dropped swig-arch.patch
cc052c
- temporary workaround rpm bug #470811
cc052c
cc052c
* Fri May 16 2008 Adam Tkac <atkac redhat com> 1.3.35-2
cc052c
- readded swig-arch.patch, will be kept downstream
cc052c
cc052c
* Mon May 05 2008 Adam Tkac <atkac redhat com> 1.3.35-1
cc052c
- updated to latest upstream release
cc052c
cc052c
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.33-2
cc052c
- Autorebuild for GCC 4.3
cc052c
cc052c
* Thu Nov 29 2007 Adam Tkac <atkac redhat com> 1.3.33-1
cc052c
- 1.3.33
cc052c
- removed swig-arch.patch because upstream will never accept
cc052c
  it ("swig is not low-level")
cc052c
cc052c
* Wed Aug 22 2007 Adam Tkac <atkac redhat com> 1.31.1-1
cc052c
- rebuild (BuildID feature)
cc052c
- BuildRequires gawk
cc052c
cc052c
* Tue Nov 28 2006 Adam Tkac <atkac redhat.com> 1.31.1-0
cc052c
- updated to 1.2.31 (#216991)
cc052c
cc052c
* Tue Nov 07 2006 Adam Tkac <atkac@redhat.com> 1.3.29-2
cc052c
- swig can determine architecture now (#211095)
cc052c
cc052c
* Mon Aug 28 2006 Jitka Kudrnacova <jkudrnac@redhat.com> -1.3.29-1
cc052c
-rebuilt
cc052c
cc052c
* Tue Jul 18 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0.3
cc052c
- rebuilt
cc052c
cc052c
* Fri Jun 30 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0.2
cc052c
- Build requires autoconf, automake (bug #197132)
cc052c
cc052c
* Wed Apr 19 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0.1
cc052c
- folder /usr/share/swig should be owned by swig package (bug #189145)
cc052c
cc052c
* Tue Mar 28 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0
cc052c
- update to swig-1.2.29-0
cc052c
cc052c
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.24-2.2.1
cc052c
- bump again for double-long bug on ppc(64)
cc052c
cc052c
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.3.24-2.2
cc052c
- rebuilt for new gcc4.1 snapshot and glibc changes
cc052c
cc052c
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 1.3.24-2
cc052c
- bump release and rebuild with gcc 4
cc052c
cc052c
* Thu Feb 03 2005 Karsten Hopp <karsten@redhat.de> 1.3.24-1
cc052c
- update
cc052c
cc052c
* Wed Dec 01 2004 Phil Knirsch <pknirsch@redhat.com> 1.3.23-2
cc052c
- rebuild
cc052c
cc052c
* Tue Nov 23 2004 Karsten Hopp <karsten@redhat.de> 1.3.23-1
cc052c
- update
cc052c
- new pylib patch
cc052c
- remove destdir patch, swig.m4 is no longer included
cc052c
- remove ldconfig patch, swig now uses *-config to find out linker options
cc052c
cc052c
* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 1.3.21-7
cc052c
- rebuild against python 2.4
cc052c
cc052c
* Mon Oct 11 2004 Tim Waugh <twaugh@redhat.com> 1.3.21-6
cc052c
- Build requires tcl-devel (bug #134788).
cc052c
cc052c
* Thu Sep 30 2004 Joe Orton <jorton@redhat.com> 1.3.21-5
cc052c
- don't output -L$libdir in -ldflags
cc052c
cc052c
* Wed Sep 22 2004 Florian La Roche <Florian.LaRoche@redhat.de>
cc052c
- add ldconfig calls to post/postun
cc052c
cc052c
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Wed May 19 2004 Joe Orton <jorton@redhat.com> 1.3.21-2
cc052c
- restore missing runtime libraries
cc052c
cc052c
* Tue May 04 2004 Phil Knirsch <pknirsch@redhat.com>
cc052c
- Update to swig-1.3.21
cc052c
cc052c
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
cc052c
- allow compiling without tcl/guile
cc052c
cc052c
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Sun May 18 2003 Joe Orton <jorton@redhat.com> 1.3.19-3
cc052c
- patch to pick up python libdir correctly
cc052c
cc052c
* Sun May 18 2003 Joe Orton <jorton@redhat.com> 1.3.19-2
cc052c
- add BuildPrereqs to ensure all bindings are built
cc052c
cc052c
* Wed May 14 2003 Phil Knirsch <pknirsch@redhat.com> 1.3.19-1
cc052c
- Update to swig-1.3.19
cc052c
- Major cleanup in specfile, too. :-)
cc052c
- New lib64 fix.
cc052c
cc052c
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 1.1p5-21
cc052c
- lib64'ize
cc052c
cc052c
* Fri Aug 30 2002 Phil Knirsch <pknirsch@redhat.com> 1.1p5-20
cc052c
- Patch by Lon Hohberger for ia64.
cc052c
cc052c
* Wed Aug 28 2002 Phil Knirsch <pknirsch@redhat.com> 1.1p5-19
cc052c
- Added multilib safe patch from arjan (#72523)
cc052c
cc052c
* Tue Aug 13 2002 Karsten Hopp <karsten@redhat.de>
cc052c
- rebuilt with gcc-3.2
cc052c
cc052c
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
cc052c
- rebuilt with gcc-3.2 (we hope)
cc052c
cc052c
* Mon Jul 22 2002 Tim Powers <timp@redhat.com>
cc052c
- rebuild using gcc-3.2-0.1
cc052c
cc052c
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cc052c
- automated rebuild
cc052c
cc052c
* Thu May 23 2002 Tim Powers <timp@redhat.com>
cc052c
- automated rebuild
cc052c
cc052c
* Fri Feb  8 2002 Bill Nottingham <notting@redhat.com>
cc052c
- rebuild
cc052c
cc052c
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
cc052c
- automated rebuild
cc052c
cc052c
* Fri Apr 27 2001 Nalin Dahyabhai <nalin@redhat.com>
cc052c
- use %%{_tmppath} instead of /var/tmp
cc052c
- remove the postscript docs (pdftops from the xpdf pkg converts them just fine)
cc052c
cc052c
* Wed Sep 13 2000 Tim Powers <timp@redhat.com>
cc052c
- rebuilt for 7.1
cc052c
cc052c
* Mon Jul 24 2000 Prospector <prospector@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Mon Jul 17 2000 Tim Powers <timp@redhat.com>
cc052c
- for some reason defattr wasn't before the docs, fixed
cc052c
cc052c
* Mon Jul 10 2000 Tim Powers <timp@redhat.com>
cc052c
- rebuilt
cc052c
cc052c
* Fri Jun 2 2000 Tim Powers <timp@redhat.com>
cc052c
- spec file cleanups
cc052c
cc052c
* Sat May 20 2000 Tim Powers <timp@redhat.com>
cc052c
- rebuilt for 7.0
cc052c
- man pages in /usr/share/man
cc052c
cc052c
* Wed Jan 19 2000 Tim Powers <timp@redhat.com>
cc052c
- bzipped sources to conserve space
cc052c
cc052c
* Thu Jul 22 1999 Tim Powers <timp@redhat.com>
cc052c
- rebuilt for 6.1
cc052c
cc052c
* Thu Apr 15 1999 Michael Maher <mike@redhat.com>
cc052c
- built package for 6.0
cc052c
cc052c
* Tue Sep 15 1998 Michael Maher <mike@redhat.com>
cc052c
- built package