Blame SPECS/source-highlight.spec

29ea6b
Summary: Produces a document with syntax highlighting
29ea6b
Name: source-highlight
29ea6b
Version: 3.1.9
29ea6b
Release: 11%{?dist}
29ea6b
License: GPLv3+
29ea6b
Source0: ftp://ftp.gnu.org/gnu/src-highlite/%{name}-%{version}.tar.gz
29ea6b
Source1: ftp://ftp.gnu.org/gnu/src-highlite/%{name}-%{version}.tar.gz.sig
29ea6b
URL: http://www.gnu.org/software/src-highlite/
29ea6b
BuildRequires: make
29ea6b
BuildRequires: bison, flex, boost-devel
29ea6b
BuildRequires: help2man, chrpath, pkgconfig(bash-completion)
29ea6b
BuildRequires: gcc, gcc-c++
29ea6b
%if 0%{!?rhel:1} || 0%{?rhel} < 9
29ea6b
BuildRequires: ctags
29ea6b
Requires: ctags
29ea6b
%endif
29ea6b
29ea6b
%description
29ea6b
This program, given a source file, produces a document with syntax
29ea6b
highlighting. At the moment this package can handle:
29ea6b
Java, Javascript, C/C++, Prolog, Perl, Php3, Python, Flex, ChangeLog, Ruby,
29ea6b
Lua, Caml, Sml and Log as source languages, and HTML, XHTML and ANSI color
29ea6b
escape sequences as output format.
29ea6b
29ea6b
29ea6b
%package devel
29ea6b
Summary: Development files for source-highlight
29ea6b
Requires: %{name}%{?_isa} = %{version}-%{release}
29ea6b
# For linking against source-higlight using pkgconfig
29ea6b
Requires: boost-devel
29ea6b
29ea6b
%description devel
29ea6b
Development files for source-highlight
29ea6b
29ea6b
%prep
29ea6b
%autosetup -p1
29ea6b
29ea6b
%build
29ea6b
export CXXFLAGS="-std=c++14 $RPM_OPT_FLAGS"
29ea6b
%if 0%{?rhel} > 8
29ea6b
export CTAGS=do_not_use_ctags
29ea6b
%endif
29ea6b
%configure --disable-static \
29ea6b
           --with-boost-regex=boost_regex
29ea6b
%make_build
29ea6b
29ea6b
%install
29ea6b
%make_install
29ea6b
29ea6b
mv $RPM_BUILD_ROOT%{_datadir}/doc/ docs
29ea6b
%{__sed} -i 's/\r//' docs/source-highlight/*.css
29ea6b
29ea6b
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
29ea6b
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
29ea6b
find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';'
29ea6b
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/source-highlight
29ea6b
chrpath --delete $RPM_BUILD_ROOT%{_bindir}/source-highlight-settings
29ea6b
29ea6b
echo -e "\ncxx = cpp.lang" >> $RPM_BUILD_ROOT%{_datadir}/source-highlight/lang.map
29ea6b
29ea6b
bashcompdir=$(pkg-config --variable=completionsdir bash-completion)
29ea6b
mkdir -p $RPM_BUILD_ROOT$bashcompdir
29ea6b
mv $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/source-highlight \
29ea6b
    $RPM_BUILD_ROOT$bashcompdir/
29ea6b
rmdir $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d
29ea6b
29ea6b
%files
29ea6b
%doc docs/source-highlight/*
29ea6b
%{_bindir}/cpp2html
29ea6b
%{_bindir}/java2html
29ea6b
%{_bindir}/source-highlight
29ea6b
%{_bindir}/source-highlight-esc.sh
29ea6b
%{_bindir}/check-regexp
29ea6b
%{_bindir}/source-highlight-settings
29ea6b
%{_bindir}/src-hilite-lesspipe.sh
29ea6b
%{_datadir}/bash-completion/
29ea6b
%{_libdir}/libsource-highlight.so.*
29ea6b
%dir %{_datadir}/source-highlight
29ea6b
%{_datadir}/source-highlight/*
29ea6b
%{_mandir}/man1/*
29ea6b
%{_infodir}/source-highlight*.info*
29ea6b
29ea6b
%files devel
29ea6b
%dir %{_includedir}/srchilite
29ea6b
%{_libdir}/libsource-highlight.so
29ea6b
%{_libdir}/pkgconfig/source-highlight.pc
29ea6b
%{_includedir}/srchilite/*.h
29ea6b
29ea6b
%changelog
29ea6b
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 3.1.9-11
29ea6b
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
29ea6b
  Related: rhbz#1991688
29ea6b
29ea6b
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 3.1.9-10
29ea6b
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
29ea6b
29ea6b
* Tue Mar 30 2021 Jonathan Wakely <jwakely@redhat.com> - 3.1.9-9
29ea6b
- Rebuilt for removed libstdc++ symbol (#1937698)
29ea6b
29ea6b
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.9-8
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
29ea6b
29ea6b
* Fri Jan 22 2021 Jonathan Wakely <jwakely@redhat.com> - 3.1.9-7
29ea6b
- Rebuilt for Boost 1.75
29ea6b
29ea6b
* Wed Jan  6 2021 Keith Seitz <keiths@redhat.com> - 3.1.9-6
29ea6b
- Disable ctags support for RHEL9+.
29ea6b
29ea6b
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.9-5
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
29ea6b
29ea6b
* Tue Jul 28 2020 Jeff Law <law@redhat.com> - 3.1.9-4
29ea6b
- Force C++14 as this code is not C++17 ready
29ea6b
29ea6b
* Thu May 28 2020 Jonathan Wakely <jwakely@redhat.com> - 3.1.9-3
29ea6b
- Rebuilt for Boost 1.73
29ea6b
29ea6b
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.9-2
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
29ea6b
29ea6b
* Sat Oct 12 2019 Orion Poplawski <orion@nwra.com> - 3.1.9-1
29ea6b
- Update to 3.1.9
29ea6b
29ea6b
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-25
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
29ea6b
29ea6b
* Wed Mar 20 2019 fedora-toolbox <otaylor@redhat.com> - 3.1.8-24
29ea6b
- Patch esc.style to avoid using the black color (#1688372)
29ea6b
29ea6b
* Mon Feb 18 2019 Adrian Reber <adrian@lisas.de> - 3.1.8-23
29ea6b
- Require boost-devel in the source-highlight-devel package (#1638029)
29ea6b
29ea6b
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-22
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
29ea6b
29ea6b
* Fri Jan 25 2019 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-21
29ea6b
- Rebuilt for Boost 1.69
29ea6b
29ea6b
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 3.1.8-20
29ea6b
- Rebuild with fixed binutils
29ea6b
29ea6b
* Sat Jul 28 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.1.8-19
29ea6b
- Replace obsolete scriptlets
29ea6b
29ea6b
* Mon Jul 16 2018 Adrian Reber <adrian@lisas.de> - 3.1.8-18
29ea6b
- Added BR gcc, gcc-c++
29ea6b
- Small SPEC file cleanups
29ea6b
29ea6b
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-17
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
29ea6b
29ea6b
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-16
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
29ea6b
29ea6b
* Tue Jan 23 2018 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-15
29ea6b
- Rebuilt for Boost 1.66
29ea6b
29ea6b
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-14
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
29ea6b
29ea6b
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-13
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
29ea6b
29ea6b
* Wed Jul 19 2017 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-12
29ea6b
- Rebuilt for s390x binutils bug
29ea6b
29ea6b
* Tue Jul 04 2017 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-11
29ea6b
- Rebuilt for Boost 1.64
29ea6b
29ea6b
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-10
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
29ea6b
29ea6b
* Fri Jan 27 2017 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-9
29ea6b
- Rebuilt for Boost 1.63
29ea6b
29ea6b
* Tue May 17 2016 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-8
29ea6b
- Rebuilt for linker errors in boost (#1331983)
29ea6b
29ea6b
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.8-7
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
29ea6b
29ea6b
* Thu Jan 14 2016 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-6
29ea6b
- Rebuilt for Boost 1.60
29ea6b
29ea6b
* Thu Aug 27 2015 Jonathan Wakely <jwakely@redhat.com> - 3.1.8-5
29ea6b
- Rebuilt for Boost 1.59
29ea6b
29ea6b
* Wed Jul 29 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-4
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159
29ea6b
29ea6b
* Fri Jul 24 2015 Adrian Reber <adrian@lisas.de> - 3.1.8-3
29ea6b
- another rebuild for Boost 1.58
29ea6b
29ea6b
* Wed Jul 22 2015 David Tardon <dtardon@redhat.com> - 3.1.8-2
29ea6b
- rebuild for Boost 1.58
29ea6b
29ea6b
* Wed Jul 22 2015 Adrian Reber <adrian@lisas.de> - 3.1.8-1
29ea6b
- updated to 3.1.8
29ea6b
29ea6b
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.7-9
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
29ea6b
29ea6b
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 3.1.7-8
29ea6b
- Rebuilt for GCC 5 C++11 ABI change
29ea6b
29ea6b
* Mon Mar 23 2015 Rex Dieter <rdieter@fedoraproject.org> 3.1.7-7
29ea6b
- rebuild (gcc5)
29ea6b
29ea6b
* Tue Jan 27 2015 Petr Machata <pmachata@redhat.com> - 3.1.7-6
29ea6b
- Rebuild for boost 1.57.0
29ea6b
29ea6b
* Sat Jan 24 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.1.7-5
29ea6b
- Install bash completion to %%{_datadir}/bash-completion
29ea6b
29ea6b
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.7-4
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
29ea6b
29ea6b
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.7-3
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
29ea6b
29ea6b
* Thu May 22 2014 Petr Machata <pmachata@redhat.com> - 3.1.7-2
29ea6b
- Rebuild for boost 1.55.0
29ea6b
29ea6b
* Fri Aug 23 2013 Adrian Reber <adrian@lisas.de> - 3.1.7-1
29ea6b
- updated to 3.1.7
29ea6b
29ea6b
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.6-6
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
29ea6b
29ea6b
* Sat Jul 27 2013 pmachata@redhat.com - 3.1.6-5
29ea6b
- Rebuild for boost 1.54.0
29ea6b
29ea6b
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 3.1.6-4
29ea6b
- Rebuild for Boost-1.53.0
29ea6b
29ea6b
* Wed Aug  8 2012 Bill Nottingham <notting@redhat.com> - 3.1.6-3
29ea6b
- rebuild against new boost
29ea6b
29ea6b
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.6-2
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
29ea6b
29ea6b
* Sun Mar 25 2012 Adrian Reber <adrian@lisas.de> - 3.1.6-1
29ea6b
- updated to 3.1.6
29ea6b
- removed buildroot and clean section
29ea6b
- fixed "missing c++ source language detection for .cxx extension" (#728311)
29ea6b
- fixed "source-highlight : Conflicts with autoconf-archive" (#797794)
29ea6b
29ea6b
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.4-10
29ea6b
- Rebuilt for c++ ABI breakage
29ea6b
29ea6b
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.4-9
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
29ea6b
29ea6b
* Sun Nov 20 2011  <dodji@redhat.com> - 3.1.4-8
29ea6b
- Rebuild against boost 1.48
29ea6b
29ea6b
* Thu Jul 21 2011 Adrian Reber <adrian@lisas.de> - 3.1.4-7
29ea6b
- and again a rebuilt for boost.
29ea6b
29ea6b
* Fri Apr 01 2011 Christoph Wickert <cwickert@fedoraproject.org> - 3.1.4-6
29ea6b
- Another rebuild, libboost SONAME has changed again
29ea6b
29ea6b
* Wed Mar 16 2011 Christoph Wickert <cwickert@fedoraproject.org> - 3.1.4-5
29ea6b
- Rebuild for correct libboost SONAME
29ea6b
29ea6b
* Sun Mar 13 2011 Christoph Wickert <cwickert@fedoraproject.org> - 3.1.4-4
29ea6b
- Rebuild for boost 1.46.1
29ea6b
29ea6b
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.4-3
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
29ea6b
29ea6b
* Sun Feb 06 2011 Bastien Nocera <bnocera@redhat.com> 3.1.4-2
29ea6b
- Rebuild against newer boost
29ea6b
29ea6b
* Mon Aug 16 2010 Leigh Scott <leigh123linux@googlemail.com> - 3.1.4-1
29ea6b
- updated to 3.1.4
29ea6b
29ea6b
* Thu Aug  5 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 3.1.3-3
29ea6b
- rebuild for new boost (again)
29ea6b
29ea6b
* Tue Jul 27 2010 Christoph Wickert <cwickert@fedoraproject.org> - 3.1.3-2
29ea6b
- Rebuild for new boost
29ea6b
- Fix Requires for %%post and %%preun
29ea6b
29ea6b
* Fri Jun 04 2010 Leigh Scott <leigh123linux@googlemail.com> - 3.1.3-1
29ea6b
- updated to 3.1.3
29ea6b
- change configure command so it finds boost_regex
29ea6b
- fix source url's
29ea6b
- add devel package
29ea6b
- fix directory ownership
29ea6b
- fix rpath on binary
29ea6b
29ea6b
* Fri Jan 22 2010 Adrian Reber <adrian@lisas.de> - 2.10-5
29ea6b
- rebuilt for new boost.
29ea6b
29ea6b
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-4
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
29ea6b
29ea6b
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.10-3
29ea6b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
29ea6b
29ea6b
* Wed Dec 17 2008 Benjamin Kosnik  <bkoz@redhat.com> - 2.10-2
29ea6b
- Rebuild for boost-1.37.0.
29ea6b
29ea6b
* Sat Aug 16 2008 Adrian Reber <adrian@lisas.de> - 2.10-1
29ea6b
- updated to 2.10
29ea6b
29ea6b
* Fri Jun 13 2008 Adrian Reber <adrian@lisas.de> - 2.9-1
29ea6b
- updated to 2.9
29ea6b
- removed upstreamed gcc43 patch
29ea6b
29ea6b
* Tue Feb 12 2008 Adrian Reber <adrian@lisas.de> - 2.8-2
29ea6b
- added gcc43 patch
29ea6b
29ea6b
* Fri Dec 14 2007 Adrian Reber <adrian@lisas.de> - 2.8-1
29ea6b
- updated to 2.8
29ea6b
- license changed to GPLv3+
29ea6b
29ea6b
* Sun Sep 16 2007 Adrian Reber <adrian@lisas.de> - 2.7-1
29ea6b
- updated to 2.7
29ea6b
- updated files section
29ea6b
- updated license
29ea6b
29ea6b
* Mon Aug 20 2007 Caolan McNamara <caolanm@redhat.com> - 2.4-2
29ea6b
- rebuild for boost rebuild
29ea6b
29ea6b
* Fri Sep 15 2006 Adrian Reber <adrian@lisas.de> - 2.4-1
29ea6b
- updated to 2.4
29ea6b
29ea6b
* Tue Mar 21 2006 Adrian Reber <adrian@lisas.de> - 2.3-2
29ea6b
- using a new url.lang to fix #195720
29ea6b
  (https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131352)
29ea6b
29ea6b
* Sun Mar 12 2006 Adrian Reber <adrian@lisas.de> - 2.3-1
29ea6b
- updated to 2.3
29ea6b
29ea6b
* Mon Oct 17 2005 Adrian Reber <adrian@lisas.de> - 2.2-1
29ea6b
- updated to 2.2
29ea6b
- added ctags BuildRequires and Requires
29ea6b
29ea6b
* Wed Aug 31 2005 Adrian Reber <adrian@lisas.de> - 2.1.2-1
29ea6b
- updated to 2.1.2
29ea6b
- removed boost-compile-fix patch
29ea6b
29ea6b
* Thu Aug 25 2005 Adrian Reber <adrian@lisas.de> - 2.1.1-2
29ea6b
- rebuilt due to boost's SONAME change (boost 1.33.0)
29ea6b
- added patch to compile with boost 1.33.0
29ea6b
29ea6b
* Wed Aug 03 2005 Adrian Reber <adrian@lisas.de> - 2.1.1-1
29ea6b
- updated to 2.1.1 (fixes #164861)
29ea6b
29ea6b
* Mon Aug 01 2005 Adrian Reber <adrian@lisas.de> - 2.1-1
29ea6b
- updated to 2.1
29ea6b
29ea6b
* Sun Jun 19 2005 Adrian Reber <adrian@lisas.de> - 2.0-1
29ea6b
- updated to 2.0
29ea6b
- added boost-devel, help2man to BR
29ea6b
- included info file
29ea6b
29ea6b
* Wed May 11 2005 Adrian Reber <adrian@lisas.de> - 1.11-1
29ea6b
- updated to 1.11
29ea6b
- included the documentation
29ea6b
- optimised the %%descritpion
29ea6b
29ea6b
* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
29ea6b
- rebuilt
29ea6b
29ea6b
* Tue Jun 22 2004 Adrian Reber <adrian@lisas.de> - 0:1.9-0.fdr.2
29ea6b
- added the Epoch: 0
29ea6b
29ea6b
* Tue Jun 22 2004 Adrian Reber <adrian@lisas.de> - 1.9-0.fdr.1
29ea6b
- removed mandrake specific macros
29ea6b
29ea6b
* Thu Jun 17 2004 Lenny Cartier <lenny@mandrakesoft.com> 1.9-1mdk
29ea6b
- 1.9
29ea6b
29ea6b
* Wed Jan 07 2004 Per Øyvind Karlsen <peroyvind@linux-mandrake.com> 1.8-1mdk
29ea6b
- 1.8
29ea6b
- drop Prefix tag
29ea6b
- clean out redundant buildrequires
29ea6b
- rm -rf $RPM_BUILD_ROOT at the beginning of %%install, not %%prep
29ea6b
- use %%makeinstall_std macro
29ea6b
- cosmetics
29ea6b
29ea6b
* Wed Mar 26 2003 Lenny Cartier <lenny@mandrakesoft.com> 1.7-1mdk
29ea6b
- 1.7
29ea6b
29ea6b
* Sat Feb 01 2003 Lenny Cartier <lenny@mandrakesoft.com> 1.6.3-1mdk
29ea6b
- 1.6.3
29ea6b
29ea6b
* Wed Jan 22 2003 Lenny Cartier <lenny@mandrakesoft.com> 1.6.2-1mdk
29ea6b
- 1.6.2
29ea6b
29ea6b
* Sat Nov 23 2002 Olivier Thauvin <thauvin@aerov.jussieu.fr> 1.6.1-1mdk
29ea6b
- 1.6.1
29ea6b
- fix unpackaged files
29ea6b
29ea6b
* Thu Sep 05 2002 Lenny Cartier <lenny@mandrakesoft.com> 1.5-2mdk
29ea6b
- rebuild
29ea6b
29ea6b
* Thu Jul 18 2002 Lenny Cartier <lenny@mandrakesoft.com> 1.5-1mdk
29ea6b
- 1.5
29ea6b
29ea6b
* Wed Jun 26 2002 Lenny Cartier <lenny@mandrakesoft.com> 1.4-1mdk
29ea6b
- obsoletes java2html & cpp2html