070b5d
# We can skip tests
070b5d
%bcond_without testsuite
070b5d
070b5d
%{!?tcl:%define tcl 1}
070b5d
%{!?guile:%define guile 1}
070b5d
070b5d
%if 0%{?rhel}
070b5d
%{!?octave:%define octave 0}
070b5d
%else
070b5d
%{!?octave:%define octave 1}
070b5d
%endif
070b5d
070b5d
Summary: Connects C/C++/Objective C to some high-level programming languages
070b5d
Name:    swig
070b5d
Version: 2.0.10
e9b231
Release: 5%{?dist}
070b5d
License: GPLv3+ and BSD
070b5d
Group:   Development/Tools
070b5d
URL:     http://swig.sourceforge.net/
070b5d
Source0: http://downloads.sourceforge.net/project/swig/swig/swig-%{version}/swig-%{version}.tar.gz
070b5d
Source1: swig.1
070b5d
# Fix the failure on arch x390 during testing
e9b231
Patch1:  swig-2.0.10-Fix-x390-build.patch
e9b231
Patch2:  swig-2.0.10-Support-octave-3.8.0.patch
070b5d
070b5d
BuildRequires: perl, python-devel, pcre-devel
070b5d
%if %{tcl}
070b5d
BuildRequires: tcl-devel
070b5d
%endif
070b5d
%if %{guile}
070b5d
BuildRequires: guile-devel
070b5d
%endif
070b5d
BuildRequires: autoconf, automake, gawk, dos2unix
070b5d
%if %{octave}
070b5d
BuildRequires: octave-devel
070b5d
%endif
070b5d
# Tests
070b5d
BuildRequires: perl-devel
070b5d
BuildRequires: perl(Test::More)
070b5d
BuildRequires: boost-devel
070b5d
070b5d
%description
070b5d
Simplified Wrapper and Interface Generator (SWIG) is a software
070b5d
development tool for connecting C, C++ and Objective C programs with a
070b5d
variety of high-level programming languages.  SWIG is primarily used
070b5d
with Perl, Python and Tcl/TK, but it has also been extended to Java,
070b5d
Eiffel and Guile. SWIG is normally used to create high-level
070b5d
interpreted programming environments, systems integration, and as a
070b5d
tool for building user interfaces
070b5d
070b5d
%package doc
070b5d
Summary:   Documentation files for SWIG
070b5d
License:   BSD
070b5d
Group:     Development/Tools
070b5d
BuildArch: noarch
070b5d
070b5d
%description doc
070b5d
This package contains documentation for SWIG and useful examples
070b5d
070b5d
%prep
070b5d
%setup -q -n swig-%{version}
070b5d
e9b231
%patch1 -p1 -b .x390
e9b231
%patch2 -p1 -b .octave
070b5d
070b5d
# as written on https://fedoraproject.org/wiki/Packaging_talk:Perl, section 2
070b5d
# (specific req/prov filtering). Before you remove this hack make sure you don't
070b5d
# reintroduce https://bugzilla.redhat.com/show_bug.cgi?id=489421
070b5d
%global __provides_exclude_from %{_docdir}/%{name}-doc-%{version}
070b5d
%global __requires_exclude_from %{_docdir}/%{name}-doc-%{version}
070b5d
070b5d
for all in CHANGES README; do
070b5d
    iconv -f ISO88591 -t UTF8 < $all > $all.new
070b5d
    touch -r $all $all.new
070b5d
    mv -f $all.new $all
070b5d
done
070b5d
070b5d
%build
070b5d
./autogen.sh
070b5d
070b5d
# Disable maximum compile warnings when octave is supported, because Octave
070b5d
# code produces lots of the warnings demanded by strict ISO C and ISO C++. 
070b5d
# It causes that log had more then 600M.
070b5d
%configure \
070b5d
%if %{octave}
070b5d
  --with-octave=/usr/bin/octave \
070b5d
  --without-maximum-compile-warnings \
070b5d
%endif
070b5d
;
070b5d
make %{?_smp_mflags}
070b5d
070b5d
%if %{with testsuite}
070b5d
# Test suite
070b5d
make check
070b5d
%endif
070b5d
070b5d
%install
070b5d
# Remove all arch dependent files in Examples/ created during tests
070b5d
make clean-examples
070b5d
070b5d
pushd Examples/
070b5d
# Remove all arch dependent files in Examples/
070b5d
find -type f -name 'Makefile.in' | xargs rm -f --
070b5d
070b5d
# We don't want to ship files below.
070b5d
rm -rf test-suite
070b5d
find -type f -name '*.dsp' | xargs rm -f --
070b5d
find -type f -name '*.dsw' | xargs rm -f --
070b5d
070b5d
# Convert files to UNIX format
070b5d
for all in `find -type f`; do
070b5d
    dos2unix -k $all
070b5d
    chmod -x $all
070b5d
done
070b5d
popd
070b5d
070b5d
make DESTDIR=%{buildroot} install
070b5d
070b5d
# Add man page for swig
070b5d
mkdir -p %{buildroot}%{_mandir}/man1/
070b5d
install -p -m 0644 %{SOURCE1} %{buildroot}%{_mandir}/man1/
070b5d
gzip %{buildroot}%{_mandir}/man1/$(basename %{SOURCE1})
070b5d
070b5d
%files
070b5d
%{_bindir}/*
070b5d
%{_datadir}/swig
070b5d
%{_mandir}/man1/ccache-swig.1*
070b5d
%{_mandir}/man1/swig.1*
070b5d
%doc ANNOUNCE CHANGES CHANGES.current INSTALL LICENSE LICENSE-GPL
070b5d
%doc LICENSE-UNIVERSITIES COPYRIGHT README TODO
070b5d
070b5d
%files doc
070b5d
%doc Doc Examples LICENSE LICENSE-GPL LICENSE-UNIVERSITIES COPYRIGHT
070b5d
070b5d
%changelog
e9b231
* Wed Mar 16 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.10-5
e9b231
- Remove setools patch (bug #1263740)
e9b231
- Add support for Octave 3.8 (bug #1136487)
e9b231
8329c0
* Fri Jan 24 2014 Daniel Mach <dmach@redhat.com> - 2.0.10-4
8329c0
- Mass rebuild 2014-01-24
8329c0
8329c0
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 2.0.10-3
8329c0
- Mass rebuild 2013-12-27
8329c0
070b5d
* Tue Oct 08 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.10-2
070b5d
- Use bconds for enabling testsuite
070b5d
- Resolves: rhbz#1016153
070b5d
070b5d
* Fri May 31 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.10-1
070b5d
- Update to 2.0.10
070b5d
- swig203-rh706140.patch merged
070b5d
- swig204-rh752054.patch merged
070b5d
- Create swig-2.0.10-Fix-x390-build.patch
070b5d
070b5d
* Fri May 24 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.0.9-3
070b5d
- Add man page for swig (BZ#948407)
070b5d
070b5d
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.9-2
070b5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
070b5d
070b5d
* Mon Jan 07 2013 Adam Tkac <atkac redhat com> 2.0.9-1
070b5d
- update to 2.0.9
070b5d
070b5d
* Wed Sep 12 2012 Adam Tkac <atkac redhat com> 2.0.8-1
070b5d
- update to 2.0.8 (#851364)
070b5d
- swig207-rh830660.patch merged
070b5d
- swig207-r13128.patch merged
070b5d
- swig-rh841245.patch merged
070b5d
070b5d
* Thu Jul 19 2012 Adam Tkac <atkac redhat com> 2.0.7-4
070b5d
- don't clean "bool" definition in PERL 5 environment (#841245)
070b5d
070b5d
* Wed Jun 27 2012 Adam Tkac <atkac redhat com> 2.0.7-3
070b5d
- fix building of setools package
070b5d
070b5d
* Tue Jun 12 2012 Adam Tkac <atkac redhat com> 2.0.7-2
070b5d
- fix generating of python3 wrappers (#830660)
070b5d
- don't crash when attepmting to warn about wrong descructor (#830249)
070b5d
070b5d
* Thu Jun 07 2012 Adam Tkac <atkac redhat com> 2.0.7-1
070b5d
- update to 2.0.7
070b5d
- swig-1.3.23-pylib.patch is no longer needed
070b5d
070b5d
* Thu May 10 2012 Adam Tkac <atkac redhat com> 2.0.6-1
070b5d
- update to 2.0.6
070b5d
070b5d
* Mon Apr 23 2012 Adam Tkac <atkac redhat com> 2.0.5-1
070b5d
- update to 2.0.5
070b5d
- patches merged
070b5d
  - swig204-rh753321.patch
070b5d
  - swig204-rh679948.patch
070b5d
  - swig204-rh770696.patch
070b5d
070b5d
* Thu Apr 19 2012 Adam Tkac <atkac redhat com> - 2.0.4-7
070b5d
- drop Octave support on RHEL
070b5d
070b5d
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 2.0.4-6
070b5d
- Rebuild against PCRE 8.30
070b5d
070b5d
* Thu Jan 05 2012 Adam Tkac <atkac redhat com> 2.0.4-5
070b5d
- fix for PHP 5.4 bindings (#770696)
070b5d
070b5d
* Tue Nov 15 2011 Adam Tkac <atkac redhat com> 2.0.4-4
070b5d
- don't apply patch for #752054 till guile2 gets into distro
070b5d
070b5d
* Mon Nov 14 2011 Adam Tkac <atkac redhat com> 2.0.4-3
070b5d
- backport r12814 from trunk (#753321)
070b5d
- use scm_to_utf8_string instead of SCM_STRING_CHARS in guile bindings (#752054)
070b5d
- improve Octave compatibility (#679948)
070b5d
070b5d
* Mon Aug 1 2011 Nick Bebout <nb@fedoraproject.org> 2.0.4-2
070b5d
- rebuild to fix 2.0.3 being tagged in over 2.0.4-1
070b5d
070b5d
* Mon Jun 20 2011 Adam Tkac <atkac redhat com> 2.0.4-1
070b5d
- update to 2.0.4
070b5d
- patches merged
070b5d
  - swig200-rh666429.patch
070b5d
  - swig200-rh623854.patch
070b5d
070b5d
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> 2.0.3-3
070b5d
- Perl mass rebuild
070b5d
070b5d
* Fri May 20 2011 Adam Tkac <atkac redhat com> 2.0.3-2
070b5d
- make guile generator compatible with guile2 (#706140)
070b5d
070b5d
* Fri Apr 22 2011 Adam Tkac <atkac redhat com> 2.0.3-1
070b5d
- update to 2.0.3
070b5d
- swig202-rh691513.patch merged
070b5d
070b5d
* Tue Mar 29 2011 Adam Tkac <atkac redhat com> 2.0.2-2
070b5d
- bacport fix for preprocessor regression (#691513)
070b5d
070b5d
* Mon Feb 21 2011 Adam Tkac <atkac redhat com> 2.0.2-1
070b5d
- update to 2.0.2
070b5d
070b5d
* Wed Feb 16 2011 Adam Tkac <atkac redhat com> 2.0.1-4
070b5d
- improve fix for PySlice issue (#666429)
070b5d
070b5d
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.1-3
070b5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
070b5d
070b5d
* Mon Jan 03 2011 Adam Tkac <atkac redhat com> 2.0.1-2
070b5d
- attempt to fix PySlice* API/ABI issues with the Python 3.2 (#666429)
070b5d
070b5d
* Thu Oct 07 2010 Adam Tkac <atkac redhat com> 2.0.1-1
070b5d
- update to 2.0.1 (#640354)
070b5d
- BR pcre-devel
070b5d
070b5d
* Fri Aug 27 2010 Adam Tkac <atkac redhat com> 2.0.0-5
070b5d
- make PyCObjects->PyCapsule patch C++ compatible (#627310)
070b5d
070b5d
* Fri Aug 20 2010 Adam Tkac <atkac redhat com> 2.0.0-4
070b5d
- improve patch for #623854 (PyCObjects->PyCapsule transition)
070b5d
070b5d
* Tue Aug 17 2010 Adam Tkac <atkac redhat com> 2.0.0-3
070b5d
- python: use new PyCapsule API instead of former PyCObjects API
070b5d
070b5d
* Mon Jul 12 2010 Adam Tkac <atkac redhat com> 2.0.0-2
070b5d
- add LICENSE-GPL, LICENSE-UNIVERSITIES and COPYRIGHT to %%doc
070b5d
- include all license files in the -doc subpkg
070b5d
070b5d
* Thu Jun 24 2010 Adam Tkac <atkac redhat com> 2.0.0-1
070b5d
- update to 2.0.0
070b5d
- license changed to GPLv3+ and BSD
070b5d
070b5d
* Mon Feb 22 2010 Adam Tkac <atkac redhat com> 1.3.40-5
070b5d
- s/LGPL/LGPLv2+
070b5d
070b5d
* Thu Feb 18 2010 Adam Tkac <atkac redhat com> 1.3.40-4
070b5d
- correct license field again
070b5d
070b5d
* Thu Feb 18 2010 Adam Tkac <atkac redhat com> 1.3.40-3
070b5d
- correct license field
070b5d
070b5d
* Mon Dec 07 2009 Adam Tkac <atkac redhat com> 1.3.40-2
070b5d
- package review related fixes (#226442)
070b5d
070b5d
* Wed Sep 02 2009 Adam Tkac <atkac redhat com> 1.3.40-1
070b5d
- update to 1.3.40
070b5d
070b5d
* Tue Aug 11 2009 Adam Tkac <atkac redhat com> 1.3.39-4
070b5d
- correct source URL
070b5d
070b5d
* Mon Aug 03 2009 Adam Tkac <atkac redhat com> 1.3.39-3
070b5d
- rebuilt
070b5d
070b5d
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.39-2
070b5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
070b5d
070b5d
* Mon Mar 30 2009 Adam Tkac <atkac redhat com> 1.3.39-1
070b5d
- update to 1.3.39
070b5d
- swig-1.3.38-rh485540.patch was merged
070b5d
- add Example/ to -doc again (#489077), filter provides correctly
070b5d
070b5d
* Tue Mar 10 2009 Adam Tkac <atkac redhat com> 1.3.38-5
070b5d
- revert #489077 enhancement due #489421
070b5d
070b5d
* Mon Mar 09 2009 Adam Tkac <atkac redhat com> 1.3.38-4
070b5d
- moved documentation to -doc subpackage and build it as noarch
070b5d
- added Example/ directory to -doc (#489077)
070b5d
- fixed build root
070b5d
070b5d
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.38-3
070b5d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
070b5d
070b5d
* Mon Feb 16 2009 Adam Tkac <atkac redhat com> 1.3.38-2
070b5d
- handle -co option gracefully (#485540)
070b5d
070b5d
* Thu Feb 12 2009 Adam Tkac <atkac redhat com> 1.3.38-1
070b5d
- updated to 1.3.38
070b5d
070b5d
* Thu Dec 04 2008 Adam Tkac <atkac redhat com> 1.3.36-2
070b5d
- #470811 is fixed => dropped workaround
070b5d
070b5d
* Mon Nov 10 2008 Adam Tkac <atkac redhat com> 1.3.36-1
070b5d
- updated to 1.3.36
070b5d
- finally dropped swig-arch.patch
070b5d
- temporary workaround rpm bug #470811
070b5d
070b5d
* Fri May 16 2008 Adam Tkac <atkac redhat com> 1.3.35-2
070b5d
- readded swig-arch.patch, will be kept downstream
070b5d
070b5d
* Mon May 05 2008 Adam Tkac <atkac redhat com> 1.3.35-1
070b5d
- updated to latest upstream release
070b5d
070b5d
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.33-2
070b5d
- Autorebuild for GCC 4.3
070b5d
070b5d
* Thu Nov 29 2007 Adam Tkac <atkac redhat com> 1.3.33-1
070b5d
- 1.3.33
070b5d
- removed swig-arch.patch because upstream will never accept
070b5d
  it ("swig is not low-level")
070b5d
070b5d
* Wed Aug 22 2007 Adam Tkac <atkac redhat com> 1.31.1-1
070b5d
- rebuild (BuildID feature)
070b5d
- BuildRequires gawk
070b5d
070b5d
* Tue Nov 28 2006 Adam Tkac <atkac redhat.com> 1.31.1-0
070b5d
- updated to 1.2.31 (#216991)
070b5d
070b5d
* Tue Nov 07 2006 Adam Tkac <atkac@redhat.com> 1.3.29-2
070b5d
- swig can determine architecture now (#211095)
070b5d
070b5d
* Mon Aug 28 2006 Jitka Kudrnacova <jkudrnac@redhat.com> -1.3.29-1
070b5d
-rebuilt 
070b5d
070b5d
* Tue Jul 18 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0.3
070b5d
- rebuilt 
070b5d
070b5d
* Fri Jun 30 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0.2 
070b5d
- Build requires autoconf, automake (bug #197132)
070b5d
070b5d
* Wed Apr 19 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0.1
070b5d
- folder /usr/share/swig should be owned by swig package (bug #189145)
070b5d
070b5d
* Tue Mar 28 2006 Jitka Kudrnacova <jkudrnac@redhat.com> - 1.3.29-0
070b5d
- update to swig-1.2.29-0
070b5d
070b5d
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.3.24-2.2.1
070b5d
- bump again for double-long bug on ppc(64)
070b5d
070b5d
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.3.24-2.2
070b5d
- rebuilt for new gcc4.1 snapshot and glibc changes
070b5d
070b5d
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Wed Mar 02 2005 Phil Knirsch <pknirsch@redhat.com> 1.3.24-2
070b5d
- bump release and rebuild with gcc 4
070b5d
070b5d
* Thu Feb 03 2005 Karsten Hopp <karsten@redhat.de> 1.3.24-1 
070b5d
- update
070b5d
070b5d
* Wed Dec 01 2004 Phil Knirsch <pknirsch@redhat.com> 1.3.23-2
070b5d
- rebuild
070b5d
070b5d
* Tue Nov 23 2004 Karsten Hopp <karsten@redhat.de> 1.3.23-1 
070b5d
- update
070b5d
- new pylib patch
070b5d
- remove destdir patch, swig.m4 is no longer included
070b5d
- remove ldconfig patch, swig now uses *-config to find out linker options
070b5d
070b5d
* Mon Nov  8 2004 Jeremy Katz <katzj@redhat.com> - 1.3.21-7
070b5d
- rebuild against python 2.4
070b5d
070b5d
* Mon Oct 11 2004 Tim Waugh <twaugh@redhat.com> 1.3.21-6
070b5d
- Build requires tcl-devel (bug #134788).
070b5d
070b5d
* Thu Sep 30 2004 Joe Orton <jorton@redhat.com> 1.3.21-5
070b5d
- don't output -L$libdir in -ldflags
070b5d
070b5d
* Wed Sep 22 2004 Florian La Roche <Florian.LaRoche@redhat.de>
070b5d
- add ldconfig calls to post/postun
070b5d
070b5d
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Wed May 19 2004 Joe Orton <jorton@redhat.com> 1.3.21-2
070b5d
- restore missing runtime libraries
070b5d
070b5d
* Tue May 04 2004 Phil Knirsch <pknirsch@redhat.com>
070b5d
- Update to swig-1.3.21
070b5d
070b5d
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
070b5d
- allow compiling without tcl/guile
070b5d
070b5d
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Sun May 18 2003 Joe Orton <jorton@redhat.com> 1.3.19-3
070b5d
- patch to pick up python libdir correctly
070b5d
070b5d
* Sun May 18 2003 Joe Orton <jorton@redhat.com> 1.3.19-2
070b5d
- add BuildPrereqs to ensure all bindings are built
070b5d
070b5d
* Wed May 14 2003 Phil Knirsch <pknirsch@redhat.com> 1.3.19-1
070b5d
- Update to swig-1.3.19
070b5d
- Major cleanup in specfile, too. :-)
070b5d
- New lib64 fix.
070b5d
070b5d
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Wed Nov 27 2002 Tim Powers <timp@redhat.com> 1.1p5-21
070b5d
- lib64'ize
070b5d
070b5d
* Fri Aug 30 2002 Phil Knirsch <pknirsch@redhat.com> 1.1p5-20
070b5d
- Patch by Lon Hohberger for ia64.
070b5d
070b5d
* Wed Aug 28 2002 Phil Knirsch <pknirsch@redhat.com> 1.1p5-19
070b5d
- Added multilib safe patch from arjan (#72523)
070b5d
070b5d
* Tue Aug 13 2002 Karsten Hopp <karsten@redhat.de>
070b5d
- rebuilt with gcc-3.2
070b5d
070b5d
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
070b5d
- rebuilt with gcc-3.2 (we hope)
070b5d
070b5d
* Mon Jul 22 2002 Tim Powers <timp@redhat.com>
070b5d
- rebuild using gcc-3.2-0.1
070b5d
070b5d
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
070b5d
- automated rebuild
070b5d
070b5d
* Thu May 23 2002 Tim Powers <timp@redhat.com>
070b5d
- automated rebuild
070b5d
070b5d
* Fri Feb  8 2002 Bill Nottingham <notting@redhat.com>
070b5d
- rebuild
070b5d
070b5d
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
070b5d
- automated rebuild
070b5d
070b5d
* Fri Apr 27 2001 Nalin Dahyabhai <nalin@redhat.com>
070b5d
- use %%{_tmppath} instead of /var/tmp
070b5d
- remove the postscript docs (pdftops from the xpdf pkg converts them just fine)
070b5d
070b5d
* Wed Sep 13 2000 Tim Powers <timp@redhat.com>
070b5d
- rebuilt for 7.1
070b5d
070b5d
* Mon Jul 24 2000 Prospector <prospector@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Mon Jul 17 2000 Tim Powers <timp@redhat.com>
070b5d
- for some reason defattr wasn't before the docs, fixed
070b5d
070b5d
* Mon Jul 10 2000 Tim Powers <timp@redhat.com>
070b5d
- rebuilt
070b5d
070b5d
* Fri Jun 2 2000 Tim Powers <timp@redhat.com>
070b5d
- spec file cleanups
070b5d
070b5d
* Sat May 20 2000 Tim Powers <timp@redhat.com>
070b5d
- rebuilt for 7.0
070b5d
- man pages in /usr/share/man
070b5d
070b5d
* Wed Jan 19 2000 Tim Powers <timp@redhat.com>
070b5d
- bzipped sources to conserve space
070b5d
070b5d
* Thu Jul 22 1999 Tim Powers <timp@redhat.com>
070b5d
- rebuilt for 6.1
070b5d
070b5d
* Thu Apr 15 1999 Michael Maher <mike@redhat.com>
070b5d
- built package for 6.0 
070b5d
070b5d
* Tue Sep 15 1998 Michael Maher <mike@redhat.com>
070b5d
- built package