Blame SPECS/doxygen.spec

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