b76630
%if 0%{?fedora}
b76630
%global xapian_core_support ON
b76630
%else
b76630
%global xapian_core_support OFF
b76630
%endif
b76630
b76630
Summary: A documentation system for C/C++
b76630
Name:    doxygen
b76630
Epoch:   1
b76630
Version: 1.8.14
4710de
Release: 12%{?dist}
b76630
b76630
# No version is specified.
b76630
License: GPL+
b76630
Url: http://www.stack.nl/~dimitri/doxygen/index.html
b76630
Source0: ftp://ftp.stack.nl/pub/users/dimitri/%{name}-%{version}.src.tar.gz
b76630
# this icon is part of kdesdk
b76630
Source1: doxywizard.png
b76630
Source2: doxywizard.desktop
b76630
b76630
# upstream patches
b76630
b76630
BuildRequires: python3-devel
b76630
BuildRequires: perl-interpreter
b76630
%if ! 0%{?_module_build}
b76630
BuildRequires: tex(dvips)
b76630
BuildRequires: tex(latex)
b76630
BuildRequires: tex(multirow.sty)
b76630
BuildRequires: tex(sectsty.sty)
b76630
BuildRequires: tex(tocloft.sty)
b76630
BuildRequires: tex(xtab.sty)
b76630
BuildRequires: tex(import.sty)
b76630
BuildRequires: tex(tabu.sty)
b76630
BuildRequires: tex(appendix.sty)
b76630
BuildRequires: tex(adjustbox.sty)
b76630
BuildRequires: /usr/bin/epstopdf
b76630
BuildRequires: texlive-epstopdf
b76630
BuildRequires: ghostscript
b76630
BuildRequires: gettext
b76630
BuildRequires: desktop-file-utils
b76630
BuildRequires: graphviz
b76630
%else
b76630
BuildRequires: zlib-devel
b76630
%endif
b76630
BuildRequires: flex
b76630
BuildRequires: bison
b76630
BuildRequires: cmake
b76630
%if %{xapian_core_support} == "ON"
b76630
BuildRequires: xapian-core-devel
b76630
%endif
b76630
Requires: perl-interpreter
b76630
Requires: platform-python
b76630
b76630
%description
b76630
Doxygen can generate an online class browser (in HTML) and/or a
b76630
reference manual (in LaTeX) from a set of documented source files. The
b76630
documentation is extracted directly from the sources. Doxygen can
b76630
also be configured to extract the code structure from undocumented
b76630
source files.
b76630
b76630
%if ! 0%{?_module_build}
b76630
%package doxywizard
b76630
Summary: A GUI for creating and editing configuration files
b76630
Requires: %{name} = %{epoch}:%{version}-%{release}
b76630
BuildRequires: qt5-qtbase-devel
b76630
b76630
%description doxywizard
b76630
Doxywizard is a GUI for creating and editing configuration files that
b76630
are used by doxygen.
b76630
b76630
%package latex
b76630
Summary: Support for producing latex/pdf output from doxygen
b76630
Requires: %{name} = %{epoch}:%{version}-%{release}
b76630
Requires: tex(latex)
b76630
%if 0%{?fedora} > 17 || 0%{?rhel} > 6
b76630
Requires: tex(multirow.sty)
b76630
Requires: tex(sectsty.sty)
b76630
Requires: tex(tocloft.sty)
b76630
Requires: tex(xtab.sty)
b76630
Requires: tex(import.sty)
b76630
Requires: tex(tabu.sty)
b76630
Requires: tex(appendix.sty)
b76630
Requires: texlive-epstopdf-bin
b76630
%endif
b76630
b76630
%description latex
b76630
%{summary}.
b76630
%endif
b76630
b76630
b76630
%prep
b76630
%autosetup -p1
b76630
b76630
# convert into utf-8
b76630
iconv --from=ISO-8859-1 --to=UTF-8 LANGUAGE.HOWTO > LANGUAGE.HOWTO.new
b76630
touch -r LANGUAGE.HOWTO LANGUAGE.HOWTO.new
b76630
mv LANGUAGE.HOWTO.new LANGUAGE.HOWTO
b76630
b76630
b76630
%build
b76630
b76630
mkdir -p %{_target_platform}
b76630
pushd %{_target_platform}
b76630
%if ! 0%{?_module_build}
b76630
%cmake \
b76630
      -Dbuild_doc=OFF \
b76630
      -Dbuild_wizard=ON \
b76630
      -Dbuild_xmlparser=ON \
b76630
      -Dbuild_search=%{xapian_core_support} \
b76630
      -DMAN_INSTALL_DIR=%{_mandir}/man1 \
b76630
      -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
b76630
      -DBUILD_SHARED_LIBS=OFF \
b76630
      ..
b76630
%else
b76630
%cmake \
b76630
      -Dbuild_doc=OFF \
b76630
      -Dbuild_wizard=OFF \
b76630
      -Dbuild_xmlparser=ON \
b76630
      -Dbuild_search=OFF \
b76630
      -DMAN_INSTALL_DIR=%{_mandir}/man1 \
b76630
      -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \
b76630
      -DBUILD_SHARED_LIBS=OFF \
b76630
      ..
b76630
%endif
b76630
popd
b76630
b76630
make %{?_smp_mflags} -C %{_target_platform}
b76630
b76630
%install
b76630
make install DESTDIR=%{buildroot} -C %{_target_platform}
b76630
b76630
install -m644 -p -D %{SOURCE1} %{buildroot}%{_datadir}/pixmaps/doxywizard.png
b76630
b76630
# install man pages
b76630
mkdir -p %{buildroot}/%{_mandir}/man1
b76630
cp doc/*.1 %{buildroot}/%{_mandir}/man1/
b76630
%if 0%{?_module_build}
b76630
rm -f %{buildroot}/%{_mandir}/man1/doxywizard.1*
b76630
%endif
b76630
b76630
%if %{xapian_core_support} == "OFF"
b76630
rm -f %{buildroot}/%{_mandir}/man1/doxyindexer.1* %{buildroot}/%{_mandir}/man1/doxysearch.1*
b76630
%endif
b76630
b76630
# remove duplicate
b76630
rm -rf %{buildroot}/%{_docdir}/packages
b76630
b76630
%if ! 0%{?_module_build}
b76630
desktop-file-install --dir=%{buildroot}%{_datadir}/applications %{SOURCE2}
b76630
%endif
b76630
b76630
%files
b76630
%doc LANGUAGE.HOWTO README.md
4710de
%license LICENSE
b76630
%if ! 0%{?_module_build}
b76630
%if %{xapian_core_support} == "ON"
b76630
%{_bindir}/doxyindexer
b76630
%{_bindir}/doxysearch*
b76630
%endif
b76630
%endif
b76630
%{_bindir}/doxygen
b76630
%{_mandir}/man1/doxygen.1*
b76630
%if %{xapian_core_support} == "ON"
b76630
%{_mandir}/man1/doxyindexer.1*
b76630
%{_mandir}/man1/doxysearch.1*
b76630
%endif
b76630
%if ! 0%{?_module_build}
b76630
%files doxywizard
b76630
%{_bindir}/doxywizard
b76630
%{_mandir}/man1/doxywizard*
b76630
%{_datadir}/applications/doxywizard.desktop
b76630
%endif
b76630
%{_datadir}/pixmaps/doxywizard.png
b76630
b76630
%if ! 0%{?_module_build}
b76630
%files latex
b76630
# intentionally left blank
b76630
%endif
b76630
b76630
%changelog
4710de
* Mon May 13 2019 Than Ngo <than@redhat.com> - 1:1.8.14-12
4710de
- Related: #1693329 - rpmdiff execshield failures, rebuilt against new annobin
4710de
4710de
* Thu May 09 2019 Than Ngo <than@redhat.com> - 1:1.8.14-11
4710de
- Resolves: #1681518, gating tests
4710de
4710de
* Thu Apr 18 2019 Than Ngo <than@redhat.com> - 1:1.8.14-10
4710de
- Resolves: #1693329, include license file
4710de
b76630
* Wed Oct 24 2018 Than Ngo <than@redhat.com> - 1:1.8.14-9
b76630
- Related: #1633618, multilib regressions 
b76630
b76630
* Tue Oct 09 2018 Than Ngo <than@redhat.com> - 1:1.8.14-8
b76630
- Related: #1633618, rebuild
b76630
b76630
* Thu Sep 27 2018 Than Ngo <than@redhat.com> - 1:1.8.14-7
b76630
- Resolves: #1633618, switch Requires from python3 to platform-python
b76630
b76630
* Tue Aug 14 2018 Than Ngo <than@redhat.com> - 1:1.8.14-6
b76630
- Resolves: #1615513 - doxygen FTBFS on rhel-8.0
b76630
b76630
* Wed Jun 27 2018 Than Ngo <than@redhat.com> - 1:1.8.14-5
b76630
- support Qt5
b76630
b76630
* Wed Jun 20 2018 Than Ngo <than@redhat.com> - 1:1.8.14-4
b76630
- added missing BR on adjustbox.sty for refman
b76630
b76630
* Wed Jun 20 2018 Than Ngo <than@redhat.com> - 1:1.8.14-3
b76630
- disable search addon
b76630
b76630
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.8.14-2
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b76630
b76630
* Fri Dec 29 2017 Than Ngo <than@redhat.com> - 1:1.8.14-1
b76630
- update to 1.8.14
b76630
b76630
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.8.13-12
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
b76630
b76630
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.8.13-11
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b76630
b76630
* Thu Jul 13 2017 Petr Pisar <ppisar@redhat.com> - 1:1.8.13-10
b76630
- perl dependency renamed to perl-interpreter
b76630
  <https://fedoraproject.org/wiki/Changes/perl_Package_to_Install_Core_Modules>
b76630
b76630
* Tue Jul 04 2017 Than Ngo <than@redhat.com> - 1:1.8.13-9
b76630
- backport to fix C# property initializer parsing 
b76630
- backport to fix non reachable links and redirected links in documentation
b76630
b76630
* Tue May 30 2017 Than Ngo <than@redhat.com> - 1:1.8.13-8
b76630
- backport to fix problem where automatic line breaking caused
b76630
  missing vertical bars in the parameter table for Latex output
b76630
b76630
* Sat Apr 22 2017 Karsten Hopp <karsten@redhat.com> - 1.8.13-7
b76630
- fix _module_build macro
b76630
b76630
* Fri Apr 21 2017 Karsten Hopp <karsten@redhat.com> - 1.8.13-6
b76630
- use new _module_build macro to limit dependencies for Modularity
b76630
b76630
* Mon Mar 13 2017 Than Ngo <than@redhat.com> - 1:1.8.13-5
b76630
- backport to fix behavior of @ref const matching (#776988)
b76630
b76630
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.8.13-4
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b76630
b76630
* Thu Jan 19 2017 Than Ngo <than@redhat.com> - 1:1.8.13-3
b76630
- Bug 775493 - Usage of underscore's in parameter names
b76630
b76630
* Tue Jan 17 2017 Björn Esser <besser82@fedoraproject.org> - 1:1.8.13-2
b76630
- Add upstream patch to fix regression (rhbz#1413296)
b76630
b76630
* Thu Dec 29 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.8.13-1
b76630
- Update to 1.8.13
b76630
- Drop upstream patches
b76630
b76630
* Thu Dec 22 2016 Orion Poplawski <orion@cora.nwra.com> - 1:1.8.12-7
b76630
- Rebuild for xapian soname bump
b76630
- Add patch to build with python rc
b76630
b76630
* Mon Dec 12 2016 Than Ngo <than@redhat.com> - 1:1.8.12-6
b76630
- backport upstream patch to fix
b76630
    Bug 707266 - C++/CLI indexed property not documented
b76630
    Bug 774949 - Unknown reference in manual
b76630
    Bug 775245 - referencing Python files via tagfile broken
b76630
b76630
* Thu Dec 08 2016 Than Ngo <than@redhat.com> - 1:1.8.12-5
b76630
- fixed bz#1402043 - runtime dependency on perl
b76630
- backport upstream patch to fix Bug 774138 . add HTML classes to "Definition at..." & "Referenced by..." for CSS
b76630
b76630
* Fri Nov 25 2016 Than Ngo <than@redhat.com> - - 1:1.8.12-4
b76630
- Bug 774273 - INLINE_SIMPLE_STRUCTS with enums in classes does not work
b76630
b76630
* Tue Nov 15 2016 Than Ngo <than@redhat.com> - 1:1.8.12-3
b76630
- bz#1394456, add missing docs
b76630
- fix build issue when build_doc=ON
b76630
b76630
* Thu Oct 20 2016 Than Ngo <than@redhat.com> - 1:1.8.12-2
b76630
- backport upstream fixes
b76630
  Bug 771310 - French description for "Namespace Members" is wrong and causes fatal javascript error
b76630
  Bug 771344 - Class name 'internal' breaks class hierarchy in C++
b76630
b76630
* Tue Sep 06 2016 Than Ngo <than@redhat.com> - 1:1.8.12-1
b76630
- 1.8.12
b76630
- fixed bz#1373167 - doxygen ships bogus man pages 
b76630
b76630
* Sun Mar 06 2016 Than Ngo <than@redhat.com> - 1:1.8.11-4
b76630
- bz#1305739, Unescaped percent sign in doxygen
b76630
b76630
* Mon Feb 22 2016 Than Ngo <than@redhat.com> - 1:1.8.11-3
b76630
- fix bz#1305739, Unescaped percent sign in doxygen
b76630
b76630
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.8.11-2
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b76630
b76630
* Wed Jan 13 2016 Than Ngo <than@redhat.com> - 1:1.8.11-1
b76630
- 1.8.11
b76630
b76630
* Fri Dec 04 2015 Than Ngo <than@redhat.com> - 1:1.8.10-7
b76630
- backport to fix a couple of small memory leaks
b76630
b76630
* Tue Nov 10 2015 Than Ngo <than@redhat.com> - 1:1.8.10-6
b76630
- backport patches to fix follow issues:
b76630
   angle brackets (< and >) not escaped in HTML formula alt text
b76630
   don't support longer key in bibtex
b76630
   math does not work in LaTeX with custom header and footer
b76630
   writeMemberNavIndex template calls static fixSpaces
b76630
   XML empty <argsstring/> in python
b76630
   XML not documenting a class in python
b76630
   add option to build latex without timestamps
b76630
b76630
* Mon Nov 09 2015 Than Ngo <than@redhat.com> - 1:1.8.10-5
b76630
- fix install issue
b76630
b76630
* Thu Oct 08 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1:1.8.10-4
b76630
- Fix patch to apply
b76630
b76630
* Thu Oct 08 2015 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1:1.8.10-3
b76630
- drop QT_ARCH_X86_64 hardcoded definition to get doxygen built on aarch64
b76630
  (it built by pure luck on other architectures)
b76630
b76630
* Wed Sep 23 2015 Than Ngo <than@redhat.com> - 1.8.10-2
b76630
- fix broken deps
b76630
b76630
* Fri Aug 28 2015 Than Ngo <than@redhat.com> - 1.8.10-1
b76630
- update to 1.8.10
b76630
b76630
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.9.1-4
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b76630
b76630
* Thu May 28 2015 Than Ngo <than@redhat.com> - 1:1.8.9.1-3
b76630
- rebuild
b76630
b76630
* Wed Apr 29 2015 Than Ngo <than@redhat.com> - 1:1.8.9.1-2
b76630
- Resolves: bz#1198355, doxygen generates \backmatter in article class
b76630
b76630
* Wed Jan 21 2015 Than Ngo <than@redhat.com> 1:1.8.9.1-1
b76630
- update to 1.8.9.1
b76630
b76630
* Mon Aug 25 2014 Than Ngo <than@redhat.com> - 1:1.8.8-1
b76630
- 1.8.8
b76630
b76630
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.7-3
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
b76630
b76630
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.7-2
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b76630
b76630
* Mon May 12 2014 Than Ngo <than@redhat.com> - 1:1.8.7-1
b76630
- 1.8.7
b76630
b76630
* Thu Dec 26 2013 Orion Poplawski <orion@cora.nwra.com> - 1:1.8.6-1
b76630
- 1.8.6
b76630
b76630
* Tue Oct 08 2013 Than Ngo <than@redhat.com> - 1:1.8.5-2
b76630
- add exlive-epstopdf-bin in requirement
b76630
b76630
* Mon Aug 26 2013 Than Ngo <than@redhat.com> - 1:1.8.5-1
b76630
- 1.8.5
b76630
b76630
* Sat Aug 03 2013 Robert Scheck <robert@fedoraproject.org> - 1:1.8.4-4
b76630
- Work around strange dependencies in epstopdf packages (#991699)
b76630
b76630
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.4-3
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b76630
b76630
* Mon Jun 24 2013 Than Ngo <than@redhat.com> - 1:1.8.4-2
b76630
- backport upstream patch to fix endless loop
b76630
b76630
* Tue May 21 2013 Than Ngo <than@redhat.com> - 1:1.8.4-1
b76630
- 1.8.4
b76630
b76630
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.3.1-2
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
b76630
b76630
* Tue Jan 22 2013 Than Ngo <than@redhat.com> - 1.8.3.1-1
b76630
- 1.8.3.1
b76630
- fedora/rhel condition
b76630
b76630
* Tue Jan 08 2013 Rex Dieter <rdieter@fedoraproject.org> - 1:1.8.3-3
b76630
- -latex subpkg (#892288)
b76630
- .spec cleanup
b76630
b76630
* Thu Jan 03 2013 Rex Dieter <rdieter@fedoraproject.org> - 1:1.8.3-2
b76630
- doxygen is missing dependencies for texlive update (#891452)
b76630
- doxywizard: tighten dep on main pkg
b76630
b76630
* Wed Jan 02 2013 Than Ngo <than@redhat.com> - 1:1.8.3-1
b76630
- 1.8.3
b76630
b76630
* Mon Aug 13 2012 Than Ngo <than@redhat.com> - 1:1.8.2-1
b76630
- 1.8.2
b76630
b76630
* Mon Jul 30 2012 Than Ngo <than@redhat.com> - 1:1.8.1.2-1
b76630
- 1.8.1.2
b76630
b76630
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.8.1.1-4
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b76630
b76630
* Wed Jun 20 2012 Than Ngo <than@redhat.com> - 1:1.8.1.1-3
b76630
- bz#832525, fix multilib issue
b76630
b76630
* Wed Jun 13 2012 Rex Dieter <rdieter@fedoraproject.org> 1:1.8.1.1-2
b76630
- make HTML_TIMESTAMP default FALSE
b76630
b76630
* Mon Jun 11 2012 Than Ngo <than@redhat.com> - 1:1.8.1.1-1
b76630
- 1.8.1.1
b76630
b76630
* Wed Jun 06 2012 Than Ngo <than@redhat.com> - 1:1.8.1-1
b76630
- 1.8.1
b76630
b76630
* Mon Feb 27 2012 Than Ngo <than@redhat.com> - 1:1.8.0-1
b76630
- 1.8.0
b76630
b76630
* Wed Jan 18 2012 Than Ngo <than@redhat.com> - 1:1.7.6.1-2
b76630
- bz#772523, add desktop file
b76630
b76630
* Fri Dec 16 2011 Than Ngo <than@redhat.com> - 1:1.7.6.1-1
b76630
- 1.7.6.1
b76630
b76630
* Tue Dec 06 2011 Than Ngo <than@redhat.com> - 1:1.7.6-1
b76630
- 1.7.6
b76630
b76630
* Tue Nov 08 2011 Than Ngo <than@redhat.com> - 1:1.7.5.1-1
b76630
- 1.7.5.1
b76630
b76630
* Tue Aug 23 2011 Than Ngo <than@redhat.com> - 1:1.7.5-1
b76630
- 1.7.5
b76630
b76630
* Mon Jun 27 2011 Than Ngo <than@redhat.com> - 1:1.7.4-2
b76630
- bz#688684, apply patch to fix crash when not generating man format
b76630
b76630
* Tue Mar 29 2011 Than Ngo <than@redhat.com> - 1.7.4-1
b76630
- 1.7.4
b76630
b76630
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.7.3-2
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
b76630
b76630
* Mon Jan 17 2011 Than Ngo <than@redhat.com> - 1.7.3-1
b76630
- 1.7.3
b76630
- bz#661107
b76630
b76630
* Fri Nov 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.7.2-2
b76630
- Wrong Buildrequire to qt-devel (#651064)
b76630
b76630
* Mon Oct 11 2010 Than Ngo <than@redhat.com> - 1.7.2-1
b76630
- 1.7.2
b76630
b76630
* Wed Sep 08 2010 Than Ngo <than@redhat.com> - 1:1.7.1-2
b76630
- bz#629286, apply patch to fix broken thread handling
b76630
- bz#627553, #define in included file in different directory not handled properly
b76630
- Inherited documentation doesn't work in case of multiple inheritance
b76630
b76630
* Mon Jul 19 2010 Than Ngo <than@redhat.com> - 1.7.1-1
b76630
- 1.7.1
b76630
b76630
* Fri Feb 12 2010 Than Ngo <than@redhat.com> - 1.6.2-1.svn20100208
b76630
- fix #555526, snapshot 1.6.2-20100208
b76630
b76630
* Mon Jan 04 2010 Than Ngo <than@redhat.com> - 1:1.6.2-1
b76630
- 1.6.2
b76630
b76630
* Fri Dec 18 2009 Than Ngo <than@redhat.com> - 1:1.6.1-4
b76630
- drop _default_patch_fuzz
b76630
b76630
* Fri Dec 18 2009 Than Ngo <than@redhat.com> - 1:1.6.1-3
b76630
- bz#225709, merged review
b76630
b76630
* Fri Dec 11 2009 Than Ngo <than@redhat.com> - 1:1.6.1-2
b76630
- bz#225709, merged review 
b76630
b76630
* Tue Aug 25 2009 Than Ngo <than@redhat.com> - 1.6.1-1
b76630
- 1.6.1
b76630
b76630
* Mon Aug 24 2009 Than Ngo <than@redhat.com> - 1.6.0-2
b76630
- fix #516339, allow to enable/disable timstamp to avoid the multilib issue
b76630
  HTMP_TIMESTAMP is disable by default
b76630
b76630
* Fri Aug 21 2009 Than Ngo <than@redhat.com> - 1.6.0-1
b76630
- 1.6.0
b76630
b76630
* Mon Aug 10 2009 Ville Skyttä <ville.skytta at iki.fi> - 1:1.5.9-3
b76630
- Convert specfile to UTF-8.
b76630
b76630
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.9-2
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
b76630
b76630
* Fri Jul 03 2009 Than Ngo <than@redhat.com> - 1.5.9-1
b76630
- 1.5.9
b76630
b76630
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.5.8-2
b76630
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
b76630
b76630
* Thu Feb 05 2009 Than Ngo <than@redhat.com> 1.5.8-1
b76630
- 1.5.8
b76630
b76630
* Mon Oct 06 2008 Than Ngo <than@redhat.com> 1.5.7.1-1
b76630
- 1.5.7.1
b76630
b76630
* Wed Jul 16 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.6-3
b76630
- fix license tag
b76630
b76630
* Wed May 21 2008 Than Ngo <than@redhat.com> 1.5.6-2
b76630
- rebuild
b76630
b76630
* Mon May 19 2008 Than Ngo <than@redhat.com> 1.5.6-1
b76630
- 1.5.6
b76630
b76630
* Fri Mar 14 2008 Than Ngo <than@redhat.com> 1.5.5-3
b76630
- apply patch to not break partial include paths, thanks to Tim Niemueller
b76630
b76630
* Wed Feb 20 2008 Than Ngo <than@redhat.com> 1.5.5-2
b76630
- apply patch to make doxygen using system libpng/zlib
b76630
b76630
* Fri Feb 15 2008 Than Ngo <than@redhat.com> 1.5.5-1
b76630
- 1.5.5
b76630
b76630
* Wed Nov 28 2007 Than Ngo <than@redhat.com> 1.5.4-1
b76630
- 1.5.4
b76630
b76630
* Fri Aug 10 2007 Than Ngo <than@redhat.com> - 1:1.5.3-1
b76630
- 1.5.3
b76630
b76630
* Thu Apr 12 2007 Than Ngo <than@redhat.com> - 1:1.5.2-1
b76630
- 1.5.2
b76630
b76630
* Fri Nov 03 2006 Than Ngo <than@redhat.com> 1:1.5.1-2
b76630
- 1.5.1
b76630
b76630
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.7-1.1
b76630
- rebuild
b76630
b76630
* Mon Jun 12 2006 Than Ngo <than@redhat.com> 1:1.4.7-1
b76630
- update to 1.4.7
b76630
b76630
* Thu Jun 08 2006 Than Ngo <than@redhat.com> 1:1.4.6-5
b76630
- fix build problem in mock #193358 
b76630
b76630
* Fri May 12 2006 Than Ngo <than@redhat.com> 1:1.4.6-4
b76630
- apply patch to fix Doxygen crash on empty file #191392 
b76630
- html docs #187177 
b76630
b76630
* Wed Mar 08 2006 Than Ngo <than@redhat.com> 1:1.4.6-3
b76630
- fix typo bug #184400
b76630
b76630
* Mon Mar 06 2006 Than Ngo <than@redhat.com> 1:1.4.6-2
b76630
- fix build problem #184042
b76630
b76630
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.6-1.2
b76630
- bump again for double-long bug on ppc(64)
b76630
b76630
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:1.4.6-1.1
b76630
- rebuilt for new gcc4.1 snapshot and glibc changes
b76630
b76630
* Tue Jan 31 2006 Than Ngo <than@redhat.com> 1.4.6-1
b76630
- 1.4.6
b76630
b76630
* Mon Dec 19 2005 Than Ngo <than@redhat.com> 1.4.5-3
b76630
- apply patch to fix build problem with gcc-4.1
b76630
b76630
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
b76630
- rebuilt
b76630
b76630
* Fri Nov 18 2005 Bill Nottingham <notting@redhat.com>
b76630
- fix references to /usr/X11R6
b76630
b76630
* Sat Oct 15 2005 Florian La Roche <laroche@redhat.com>
b76630
- 1.4.5
b76630
b76630
* Mon Sep 19 2005 Than Ngo <than@redhat.com> 1:1.4.4-2
b76630
- move doxywizard man page to subpackge doxywizard
b76630
b76630
* Thu Jul 21 2005 Than Ngo <than@redhat.com> 1:1.4.4-1
b76630
- update to 1.4.4
b76630
b76630
* Tue Jun 14 2005 Than Ngo <than@redhat.com> 1.4.3-1
b76630
- 1.4.3
b76630
b76630
* Thu Mar 31 2005 Than Ngo <than@redhat.com> 1:1.4.2-1
b76630
- 1.4.2
b76630
b76630
* Fri Mar 04 2005 Than Ngo <than@redhat.com> 1:1.4.1-2
b76630
- rebuilt against gcc-4
b76630
b76630
* Wed Jan 19 2005 Than Ngo <than@redhat.com> 1:1.4.1-1
b76630
- update to 1.4.1
b76630
b76630
* Sun Oct 10 2004 Than Ngo <than@redhat.com> 1:1.3.9.1-1
b76630
- update to 1.3.9.1
b76630
b76630
* Wed Oct 06 2004 Than Ngo <than@redhat.com> 1:1.3.9-1
b76630
- update to 1.3.9
b76630
b76630
* Sun Jul 25 2004 Than Ngo <than@redhat.com> 1:1.3.8-1
b76630
- update to 1.3.8
b76630
b76630
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
b76630
- rebuilt
b76630
b76630
* Tue May 11 2004 Than Ngo <than@redhat.com> 1.3.7-1
b76630
- update to 1.3.7, bug #119340
b76630
b76630
* Sun Apr 04 2004 Than Ngo <than@redhat.com> 1:1.3.6-2
b76630
- fix qt-mt linking problem
b76630
b76630
* Thu Feb 26 2004 Than Ngo <than@redhat.com> 1:1.3.6-1
b76630
- update to 1.3.6
b76630
- added more buildrequires, #110752
b76630
b76630
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
b76630
- rebuilt
b76630
b76630
* Wed Dec 17 2003 Than Ngo <than@redhat.com> 1:1.3.5-1
b76630
- 1.3.5 release
b76630
b76630
* Fri Sep 26 2003 Harald Hoyer <harald@redhat.de> 1:1.3.4-1
b76630
- update to 1.3.4
b76630
- doxsearch was removed
b76630
b76630
* Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
b76630
- allow compiling without qt/doxywizard
b76630
b76630
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
b76630
- rebuilt
b76630
b76630
* Tue Jun  3 2003 Jeff Johnson <jbj@redhat.com>
b76630
- add explicit epoch's where needed.
b76630
b76630
* Tue May  6 2003 Than Ngo <than@redhat.com> 1.3-1
b76630
- 1.3
b76630
b76630
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
b76630
- rebuilt
b76630
b76630
* Fri Dec 27 2002 Than Ngo <than@redhat.com> 1.2.18-2
b76630
- use gnu install
b76630
b76630
* Sat Nov  9 2002 Than Ngo <than@redhat.com> 1.2.18-1.2
b76630
- fix some build problem
b76630
b76630
* Tue Oct 15 2002 Than Ngo <than@redhat.com> 1.2.18-1
b76630
- 1.2.18
b76630
b76630
* Wed Aug 28 2002 Than Ngo <than@redhat.com> 1.2.17-1
b76630
- 1.2.17 fixes many major bugs
b76630
b76630
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com>
b76630
- rebuilt with gcc-3.2 (we hope)
b76630
b76630
* Mon Jul 22 2002 Tim Powers <timp@redhat.com>
b76630
- rebuild using gcc-3.2-0.1
b76630
b76630
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
b76630
- automated rebuild
b76630
b76630
* Thu May 23 2002 Tim Powers <timp@redhat.com>
b76630
- automated rebuild
b76630
b76630
* Tue Apr 16 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.13-5
b76630
- rebuild against qt 3.0.3-10
b76630
b76630
* Fri Mar  8 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.13-4
b76630
- rebuild against qt 3.0.2
b76630
b76630
* Tue Feb 26 2002 Than Ngo <than@redhat.com> 1.2.14-2
b76630
- rebuild against qt 2.3.2
b76630
b76630
* Tue Feb 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 1.2.14-1
b76630
- 1.2.14
b76630
b76630
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
b76630
- automated rebuild
b76630
b76630
* Sun Jan 06 2002 Than Ngo <than@redhat.com> 1.2.13.1-1
b76630
- update to 1.2.13.1
b76630
- fixed build doxywizard with qt3
b76630
b76630
* Sun Dec 30 2001 Jeff Johnson <jbj@redhat.com> 1.2.13-1
b76630
- update to 1.2.13
b76630
b76630
* Sun Nov 18 2001 Than Ngo <than@redhat.com> 1.2.12-1
b76630
- update to 1.2.12
b76630
- s/Copyright/License
b76630
b76630
* Wed Sep 12 2001 Tim Powers <timp@redhat.com>
b76630
- rebuild with new gcc and binutils
b76630
b76630
* Wed Jun 13 2001 Than Ngo <than@redhat.com>
b76630
- update tp 1.2.8.1
b76630
- make doxywizard as separat package
b76630
- fix to use install as default
b76630
b76630
* Tue Jun 05 2001 Than Ngo <than@redhat.com>
b76630
- update to 1.2.8
b76630
b76630
* Tue May 01 2001 Than Ngo <than@redhat.com>
b76630
- update to 1.2.7
b76630
- clean up specfile
b76630
- patch to use RPM_OPT_FLAG
b76630
b76630
* Wed Mar 14 2001 Jeff Johnson <jbj@redhat.com>
b76630
- update to 1.2.6
b76630
b76630
* Wed Feb 28 2001 Trond Eivind Glomsrød <teg@redhat.com>
b76630
- rebuild
b76630
b76630
* Tue Dec 26 2000 Than Ngo <than@redhat.com>
b76630
- update to 1.2.4
b76630
- remove excludearch ia64
b76630
- bzip2 sources
b76630
b76630
* Mon Dec 11 2000 Than Ngo <than@redhat.com>
b76630
- rebuild with the fixed fileutils
b76630
b76630
* Mon Oct 30 2000 Jeff Johnson <jbj@redhat.com>
b76630
- update to 1.2.3.
b76630
b76630
* Sun Oct  8 2000 Jeff Johnson <jbj@redhat.com>
b76630
- update to 1.2.2.
b76630
- enable doxywizard.
b76630
b76630
* Sat Aug 19 2000 Preston Brown <pbrown@redhat.com>
b76630
- 1.2.1 is latest stable, so we upgrade before Winston is released.
b76630
b76630
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
b76630
- automatic rebuild
b76630
b76630
* Tue Jul  4 2000 Jakub Jelinek <jakub@redhat.com>
b76630
- Rebuild with new C++
b76630
b76630
* Fri Jun 30 2000 Florian La Roche <laroche@redhat.de>
b76630
- fix QTDIR detection
b76630
b76630
* Fri Jun 09 2000 Preston Brown <pbrown@redhat.com>
b76630
- compile on x86 w/o optimization, revert when compiler fixed!!
b76630
b76630
* Wed Jun 07 2000 Preston Brown <pbrown@redhat.com>
b76630
- use newer RPM macros
b76630
b76630
* Tue Jun  6 2000 Jeff Johnson <jbj@redhat.com>
b76630
- add to distro.
b76630
b76630
* Tue May  9 2000 Tim Powers <timp@redhat.com>
b76630
- rebuilt for 7.0
b76630
b76630
* Wed Feb  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
b76630
- recompile with current Qt (2.1.0/1.45)
b76630
b76630
* Wed Jan  5 2000 Jeff Johnson <jbj@redhat.com>
b76630
- update to 1.0.0.
b76630
- recompile with qt-2.0.1 if available.
b76630
- relocatable package.
b76630
b76630
* Mon Nov  8 1999 Tim Powers <timp@redhat.com>
b76630
-updated to 0.49-991106
b76630
b76630
* Tue Jul 13 1999 Tim Powers <timp@redhat.com>
b76630
- updated source
b76630
- cleaned up some stuff in the spec file
b76630
b76630
* Thu Apr 22 1999 Jeff Johnson <jbj@redhat.com>
b76630
- Create Power Tools 6.0 package.