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