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