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