SHA256
8
0
forked from pool/doxygen
OBS User unknown
2008-02-28 00:54:14 +00:00
committed by Git OBS Bridge
parent f95afaa64c
commit c4b221d0f7
14 changed files with 183 additions and 116 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1ea417d44f58eac25bdabab58faecaa73680f70206665e70b01484f6eef71fa9
size 463339

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:58d9fd133bd9fd999194fa72a4b0e0a9375a98f29c55053153ce6346968779ff
size 3053630

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de7a401b1c2b50172b294af935c74db564645d729b8cbb77f85ca74641bd57cc
size 465004

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c4d6364b3145c84aa210449fb350fd03fe2ec8d14d4750da21505374f3664c1b
size 3159174

View File

@@ -1,3 +1,36 @@
-------------------------------------------------------------------
Wed Feb 27 08:59:59 CET 2008 - anosek@suse.cz
- updated to version 1.5.5
Changes:
* Pages created with @page are now chapters in the LaTeX and RTF
output and treeviews, and directly follow the mainpage.
Also the project name is not longer repeated for each chapter.
* For dot graphs with an edge with more than ten labels, only
the first ten are shown followed by an ellipsis; done
to prevent very long dot runs resulting in unreadable graphs.
* Use of pdflatex with hyperlinks is now the default.
* C++ preprocessor macro names are now replaced in the comments
* The options SOURCE_BROWSER, CALL_GRAPH, CALLER_GRAPH,
REFERENCES_RELATION, and REFERENCED_BY_RELATION can now be
indepently enabled and disabled. By default the relations are
now disabled.
New features:
* Added support for VHDL (.vhd or .vhdl extension).
Use OPTIMIZE_OUTPUT_VHDL when parsing VHDL code.
* Added support for Objective-C 2.0 properties.
* Added support for docsets, which allow integration of doxygen
generated API documentation in Xcode 3. new options:
o GENERATE_DOCSET: enables/disables the feature
o DOCSET_FEEDNAME: sets the provider/suite name
under which the set is listed.
o DOCSET_BUNDLE_ID: A unique name for the docset.
* Added support for the \tparam command, which works similar to
\param but is meant for documenting template parameters.
* Added \headerfile command which can be used to specify
the second and third argument of a \class command, when
the documentation is already in front of a class definition.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Oct 30 11:56:25 CET 2007 - anosek@suse.cz Tue Oct 30 11:56:25 CET 2007 - anosek@suse.cz

View File

@@ -1,7 +1,7 @@
# #
# spec file for package doxygen (Version 1.5.4) # spec file for package doxygen (Version 1.5.5)
# #
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine # This file and all modifications and additions to the pristine
# package are under the same license as the package itself. # package are under the same license as the package itself.
# #
@@ -10,9 +10,10 @@
# norootforbuild # norootforbuild
Name: doxygen Name: doxygen
BuildRequires: bison flex gcc-c++ libpng-devel BuildRequires: bison flex gcc-c++ libpng-devel
Version: 1.5.4 Version: 1.5.5
Release: 1 Release: 1
AutoReqProv: on AutoReqProv: on
License: GPL v2 or later License: GPL v2 or later
@@ -81,8 +82,39 @@ rm -rf %{buildroot}
%attr(444,root,root) %doc %{_mandir}/man1/doxygen.1.gz %attr(444,root,root) %doc %{_mandir}/man1/doxygen.1.gz
%attr(444,root,root) %doc %{_mandir}/man1/doxytag.1.gz %attr(444,root,root) %doc %{_mandir}/man1/doxytag.1.gz
%attr(755,root,root) /usr/bin/* %attr(755,root,root) /usr/bin/*
%changelog %changelog
* Tue Oct 30 2007 - anosek@suse.cz * Wed Feb 27 2008 anosek@suse.cz
- updated to version 1.5.5
Changes:
* Pages created with @page are now chapters in the LaTeX and RTF
output and treeviews, and directly follow the mainpage.
Also the project name is not longer repeated for each chapter.
* For dot graphs with an edge with more than ten labels, only
the first ten are shown followed by an ellipsis; done
to prevent very long dot runs resulting in unreadable graphs.
* Use of pdflatex with hyperlinks is now the default.
* C++ preprocessor macro names are now replaced in the comments
* The options SOURCE_BROWSER, CALL_GRAPH, CALLER_GRAPH,
REFERENCES_RELATION, and REFERENCED_BY_RELATION can now be
indepently enabled and disabled. By default the relations are
now disabled.
New features:
* Added support for VHDL (.vhd or .vhdl extension).
Use OPTIMIZE_OUTPUT_VHDL when parsing VHDL code.
* Added support for Objective-C 2.0 properties.
* Added support for docsets, which allow integration of doxygen
generated API documentation in Xcode 3. new options:
o GENERATE_DOCSET: enables/disables the feature
o DOCSET_FEEDNAME: sets the provider/suite name
under which the set is listed.
o DOCSET_BUNDLE_ID: A unique name for the docset.
* Added support for the \tparam command, which works similar to
\param but is meant for documenting template parameters.
* Added \headerfile command which can be used to specify
the second and third argument of a \class command, when
the documentation is already in front of a class definition.
* Tue Oct 30 2007 anosek@suse.cz
- updated to version 1.5.4 - updated to version 1.5.4
Changes: Changes:
* When setting SOURCE_BROWSER to YES, all undocumented classes * When setting SOURCE_BROWSER to YES, all undocumented classes
@@ -99,7 +131,7 @@ rm -rf %{buildroot}
treats a typedef of a struct as a struct with the name of the treats a typedef of a struct as a struct with the name of the
typedef. This behavious was coupled to OPTIMIZE_OUTPUT_FOR_C typedef. This behavious was coupled to OPTIMIZE_OUTPUT_FOR_C
in the previous version and is now an independent option. in the previous version and is now an independent option.
* Fri Jul 27 2007 - anosek@suse.cz * Fri Jul 27 2007 anosek@suse.cz
- updated to version 1.5.3 - updated to version 1.5.3
Changes: Changes:
* When OPTIMIZE_OUTPUT_FOR_C is enabled then a struct definition * When OPTIMIZE_OUTPUT_FOR_C is enabled then a struct definition
@@ -132,9 +164,9 @@ rm -rf %{buildroot}
as JAVADOC_AUTOBRIEF only now for /*! .. */ style comment blocks. as JAVADOC_AUTOBRIEF only now for /*! .. */ style comment blocks.
* id 435108: Reintroduced the MAX_DOT_GRAPH_DEPTH option as a means * id 435108: Reintroduced the MAX_DOT_GRAPH_DEPTH option as a means
to further reduce the size of a graph. to further reduce the size of a graph.
* Tue Apr 10 2007 - anosek@suse.cz * Tue Apr 10 2007 anosek@suse.cz
- fixed build of Doxywizard - fixed build of Doxywizard
* Thu Apr 05 2007 - anosek@suse.cz * Thu Apr 05 2007 anosek@suse.cz
- updated to version 1.5.2: - updated to version 1.5.2:
* Doxygen now uses UTF-8 internally for all strings * Doxygen now uses UTF-8 internally for all strings
A new config option INPUT_ENCODING has been added which can be A new config option INPUT_ENCODING has been added which can be
@@ -149,9 +181,9 @@ rm -rf %{buildroot}
* Added two LaTeX layout enhancements * Added two LaTeX layout enhancements
* Lots of bugfixes * Lots of bugfixes
- dropped obsolete disable-rtf-debug.patch - dropped obsolete disable-rtf-debug.patch
* Thu Mar 29 2007 - mmarek@suse.de * Thu Mar 29 2007 mmarek@suse.de
- added flex and bison to buildrequires - added flex and bison to buildrequires
* Mon Feb 05 2007 - anosek@suse.cz * Mon Feb 05 2007 anosek@suse.cz
-updated to version 1.5.1, bugfixes: -updated to version 1.5.1, bugfixes:
* id 148567: @todo at the end of a comment block caused problem * id 148567: @todo at the end of a comment block caused problem
when copied by @copydoc when copied by @copydoc
@@ -166,10 +198,10 @@ rm -rf %{buildroot}
(both in difference scopes) where merged. (both in difference scopes) where merged.
* Running 2 instances of doxygen on the same output directory * Running 2 instances of doxygen on the same output directory
caused corruption of the temporary files generated by doxygen. caused corruption of the temporary files generated by doxygen.
* Thu Nov 16 2006 - mmarek@suse.cz * Thu Nov 16 2006 mmarek@suse.cz
- don't abort just because of a warning (fixes yast2-core build) - don't abort just because of a warning (fixes yast2-core build)
(dont-exit-on-warning.patch) (dont-exit-on-warning.patch)
* Wed Oct 18 2006 - anosek@suse.cz * Wed Oct 18 2006 anosek@suse.cz
- updated to version 1.5.0 - updated to version 1.5.0
* Cleaned up the internal structures to make them smaller, * Cleaned up the internal structures to make them smaller,
and made doxygen use a temporary file to store the parse and made doxygen use a temporary file to store the parse
@@ -180,7 +212,7 @@ rm -rf %{buildroot}
them a distinct style using a non-default stylesheet them a distinct style using a non-default stylesheet
(i.e. using HTML_STYLESHEET). (i.e. using HTML_STYLESHEET).
* Lots of bugfixes * Lots of bugfixes
* Mon Jun 26 2006 - mmarek@suse.cz * Mon Jun 26 2006 mmarek@suse.cz
- updated to 1.4.7 - updated to 1.4.7
* changes in the CSS stylesheet and HTML class names => possible * changes in the CSS stylesheet and HTML class names => possible
incompatibility with custom stylesheets incompatibility with custom stylesheets
@@ -193,64 +225,64 @@ rm -rf %{buildroot}
* lost of bugfixes * lost of bugfixes
- dropped patches: qtools.patch, segfault.patch - dropped patches: qtools.patch, segfault.patch
- added script to update the html docu tarball to source rpm - added script to update the html docu tarball to source rpm
* Wed Jan 25 2006 - mls@suse.de * Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires - converted neededforbuild to BuildRequires
* Thu Jan 05 2006 - mmarek@suse.cz * Thu Jan 05 2006 mmarek@suse.cz
- fix segfault in doxygen.cpp - fix segfault in doxygen.cpp
[#141384] (segfault.patch) [#141384] (segfault.patch)
- use make -j - use make -j
- add -fno-strict-aliasing - add -fno-strict-aliasing
* Mon Jan 02 2006 - mmarek@suse.cz * Mon Jan 02 2006 mmarek@suse.cz
- update to 1.4.6 - update to 1.4.6
* Mon Oct 10 2005 - mmarek@suse.cz * Mon Oct 10 2005 mmarek@suse.cz
- update to 1.4.5 - update to 1.4.5
* Tue Sep 20 2005 - mmarek@suse.cz * Tue Sep 20 2005 mmarek@suse.cz
- fix qtools to build with gcc-4.1.0 - fix qtools to build with gcc-4.1.0
* Wed Aug 24 2005 - mmarek@suse.cz * Wed Aug 24 2005 mmarek@suse.cz
- disable RTF debug comments in src/rtfdocvisitor.cpp (those - disable RTF debug comments in src/rtfdocvisitor.cpp (those
comments are displayed by default in ooffice and abiword). See comments are displayed by default in ooffice and abiword). See
gnome bugzilla #149797 gnome bugzilla #149797
* Thu Jul 28 2005 - postadal@suse.cz * Thu Jul 28 2005 postadal@suse.cz
- updated to version 1.4.4 - updated to version 1.4.4
* added man pages * added man pages
- removed obsoleted qt-mt patch - removed obsoleted qt-mt patch
* Wed Apr 06 2005 - uli@suse.de * Wed Apr 06 2005 uli@suse.de
- un-packing QChar seems to break doxygen; removed the - un-packing QChar seems to break doxygen; removed the
incriminated methods instead as they are unused anyway incriminated methods instead as they are unused anyway
* Thu Mar 31 2005 - uli@suse.de * Thu Mar 31 2005 uli@suse.de
- GCC does not allow references to members of packed structs on - GCC does not allow references to members of packed structs on
ARM ARM
* Wed Jan 12 2005 - postadal@suse.cz * Wed Jan 12 2005 postadal@suse.cz
- updated to version 1.4.1 - updated to version 1.4.1
* Wed Aug 11 2004 - postadal@suse.cz * Wed Aug 11 2004 postadal@suse.cz
- linked dynamically against libpng - linked dynamically against libpng
* Tue Aug 03 2004 - postadal@suse.cz * Tue Aug 03 2004 postadal@suse.cz
- updated to version 1.3.8 - updated to version 1.3.8
* Tue Apr 27 2004 - postadal@suse.cz * Tue Apr 27 2004 postadal@suse.cz
- doxywizard split off (removed qt3 dependency) - doxywizard split off (removed qt3 dependency)
* Tue Mar 23 2004 - postadal@suse.cz * Tue Mar 23 2004 postadal@suse.cz
- applied patches from cvs to fix bug #36397 (doxygen ate all memory building the libstdc++) - applied patches from cvs to fix bug #36397 (doxygen ate all memory building the libstdc++)
* Fri Feb 13 2004 - postadal@suse.cz * Fri Feb 13 2004 postadal@suse.cz
- updated to version 1.3.6 - updated to version 1.3.6
* Sat Jan 10 2004 - adrian@suse.de * Sat Jan 10 2004 adrian@suse.de
- build as user - build as user
* Mon Oct 06 2003 - kukuk@suse.de * Mon Oct 06 2003 kukuk@suse.de
- Use prebuild documentation from website - Use prebuild documentation from website
* Thu Oct 02 2003 - adrian@suse.de * Thu Oct 02 2003 adrian@suse.de
- update to version 1.3.4 - update to version 1.3.4
* Sat Aug 16 2003 - adrian@suse.de * Sat Aug 16 2003 adrian@suse.de
- add desktop file for doxywizard - add desktop file for doxywizard
* Thu Jul 24 2003 - postadal@suse.cz * Thu Jul 24 2003 postadal@suse.cz
- updated to version 1.3.2 - updated to version 1.3.2
* Sun Jun 15 2003 - mmj@suse.de * Sun Jun 15 2003 mmj@suse.de
- Update to 1.3.1 - Update to 1.3.1
* Mon Feb 10 2003 - ro@suse.de * Mon Feb 10 2003 ro@suse.de
- fix build with tetex-2.0 - fix build with tetex-2.0
* Thu Feb 06 2003 - ro@suse.de * Thu Feb 06 2003 ro@suse.de
- force install tool - force install tool
* Wed Nov 20 2002 - ro@suse.de * Wed Nov 20 2002 ro@suse.de
- use ghostscript-mini-packages in neededforbuild - use ghostscript-mini-packages in neededforbuild
* Tue Oct 08 2002 - postadal@suse.cz * Tue Oct 08 2002 postadal@suse.cz
- updated to version 1.2.18 - updated to version 1.2.18
* @deprecated is now treated as @todo, @test, and @bug * @deprecated is now treated as @todo, @test, and @bug
* enum value documentation was added to the XML output. * enum value documentation was added to the XML output.
@@ -259,112 +291,112 @@ rm -rf %{buildroot}
* included language updates * included language updates
* added new configuration options XML_DTD and XML_SCHEMA to set the DTD or Schema used in the XML output. * added new configuration options XML_DTD and XML_SCHEMA to set the DTD or Schema used in the XML output.
- patch for 64bit archs - patch for 64bit archs
* Sun Aug 18 2002 - ro@suse.de * Sun Aug 18 2002 ro@suse.de
- added ghostscript-x11-packages to neededforbuild (for gs) - added ghostscript-x11-packages to neededforbuild (for gs)
* Sun Jul 28 2002 - meissner@suse.de * Sun Jul 28 2002 meissner@suse.de
- use RPM_OPT_FLAGS so it builds on ppc64. - use RPM_OPT_FLAGS so it builds on ppc64.
* Thu Jul 18 2002 - coolo@suse.de * Thu Jul 18 2002 coolo@suse.de
- updating to 1.2.17 (needed for new kdelibs3) - updating to 1.2.17 (needed for new kdelibs3)
* Sun Jun 09 2002 - olh@suse.de * Sun Jun 09 2002 olh@suse.de
- build with -mminimal-toc on ppc64, workaround - build with -mminimal-toc on ppc64, workaround
* Fri May 03 2002 - meissner@suse.de * Fri May 03 2002 meissner@suse.de
- really write %%_lib instead of just lib64 - really write %%_lib instead of just lib64
* Thu May 02 2002 - meissner@suse.de * Thu May 02 2002 meissner@suse.de
- %%_lib fixes - %%_lib fixes
* Sun Apr 07 2002 - adrian@suse.de * Sun Apr 07 2002 adrian@suse.de
- export compiler flags via RPM_OPTL_FLAGS to get an effect - export compiler flags via RPM_OPTL_FLAGS to get an effect
(fix compile for mips) (fix compile for mips)
* Thu Mar 14 2002 - ro@suse.de * Thu Mar 14 2002 ro@suse.de
- patch tmake config file as well to use qt-mt - patch tmake config file as well to use qt-mt
* Tue Mar 12 2002 - ro@suse.de * Tue Mar 12 2002 ro@suse.de
- build against qt3 - build against qt3
* Thu Jan 31 2002 - ro@suse.de * Thu Jan 31 2002 ro@suse.de
- added libgimpprint to neededforbuild - added libgimpprint to neededforbuild
* Tue Jan 29 2002 - cihlar@suse.cz * Tue Jan 29 2002 cihlar@suse.cz
- use %%{suse_update_libdir} - use %%{suse_update_libdir}
* Mon Jan 07 2002 - cihlar@suse.cz * Mon Jan 07 2002 cihlar@suse.cz
- updated to version 1.2.13.1 - updated to version 1.2.13.1
* Wed Jan 02 2002 - cihlar@suse.cz * Wed Jan 02 2002 cihlar@suse.cz
- updated to version 1.2.13 - updated to version 1.2.13
* Mon Nov 19 2001 - cihlar@suse.cz * Mon Nov 19 2001 cihlar@suse.cz
- updated to version 1.2.12 - updated to version 1.2.12
* Fri Nov 09 2001 - ro@suse.de * Fri Nov 09 2001 ro@suse.de
- use qt-devel-packages - use qt-devel-packages
* Mon Oct 08 2001 - cihlar@suse.cz * Mon Oct 08 2001 cihlar@suse.cz
- updated to version 1.2.11.1 - updated to version 1.2.11.1
* Mon Oct 01 2001 - tiwai@suse.de * Mon Oct 01 2001 tiwai@suse.de
- updated to version 1.2.11 - updated to version 1.2.11
* Thu Sep 27 2001 - tiwai@suse.de * Thu Sep 27 2001 tiwai@suse.de
- updated to version 1.2.10 - updated to version 1.2.10
* Wed Aug 08 2001 - cihlar@suse.cz * Wed Aug 08 2001 cihlar@suse.cz
- update to version 1.2.9.1 - update to version 1.2.9.1
* Fri Aug 03 2001 - cihlar@suse.cz * Fri Aug 03 2001 cihlar@suse.cz
- update to version 1.2.9 - update to version 1.2.9
- gzipped doxygen_manual.ps - gzipped doxygen_manual.ps
* Thu Jul 26 2001 - cihlar@suse.cz * Thu Jul 26 2001 cihlar@suse.cz
- update to version 1.2.8.1 - update to version 1.2.8.1
* Mon Jul 23 2001 - cihlar@suse.cz * Mon Jul 23 2001 cihlar@suse.cz
- added glib to neededforbuild - added glib to neededforbuild
* Fri Jul 20 2001 - kukuk@suse.de * Fri Jul 20 2001 kukuk@suse.de
- changed neededforbuild <gs_fonts> to <ghostscript-fonts-std> - changed neededforbuild <gs_fonts> to <ghostscript-fonts-std>
- changed neededforbuild <gs_lib> to <ghostscript-library> - changed neededforbuild <gs_lib> to <ghostscript-library>
- changed neededforbuild <gs_x11> to <ghostscript-x11> - changed neededforbuild <gs_x11> to <ghostscript-x11>
* Wed May 16 2001 - cihlar@suse.cz * Wed May 16 2001 cihlar@suse.cz
- update to version 1.2.7 - update to version 1.2.7
- fixed warnings on ia64 - fixed warnings on ia64
* Sun Mar 18 2001 - ro@suse.de * Mon Mar 19 2001 ro@suse.de
- fixed neededforbuild - fixed neededforbuild
* Mon Mar 12 2001 - cihlar@suse.cz * Mon Mar 12 2001 cihlar@suse.cz
- update to version 1.2.6 - update to version 1.2.6
* Tue Mar 06 2001 - cihlar@suse.cz * Tue Mar 06 2001 cihlar@suse.cz
- update to version 1.2.5 - update to version 1.2.5
* Mon Jan 22 2001 - cihlar@suse.cz * Mon Jan 22 2001 cihlar@suse.cz
- update to version 1.2.4 - update to version 1.2.4
* Thu Nov 30 2000 - cihlar@suse.cz * Thu Nov 30 2000 cihlar@suse.cz
- fixed neededforbuild: += liblcms - fixed neededforbuild: += liblcms
* Fri Nov 17 2000 - ro@suse.de * Fri Nov 17 2000 ro@suse.de
- fixed neededforbuild: += libmng-devel - fixed neededforbuild: += libmng-devel
* Mon Nov 13 2000 - cihlar@suse.cz * Mon Nov 13 2000 cihlar@suse.cz
- fixed to compile - fixed to compile
* Fri Nov 03 2000 - cihlar@suse.cz * Fri Nov 03 2000 cihlar@suse.cz
- fixed neededforbuild - fixed neededforbuild
* Tue Oct 31 2000 - cihlar@suse.cz * Tue Oct 31 2000 cihlar@suse.cz
- update to version 1.2.3 - update to version 1.2.3
* Mon Oct 09 2000 - cihlar@suse.cz * Mon Oct 09 2000 cihlar@suse.cz
- update to version 1.2.2 - update to version 1.2.2
- added libmng to neededforbuild - added libmng to neededforbuild
* Fri Aug 25 2000 - cihlar@suse.cz * Fri Aug 25 2000 cihlar@suse.cz
- added BuildRoot - added BuildRoot
- fixed neededforbuild - fixed neededforbuild
* Tue Aug 15 2000 - garloff@suse.de * Tue Aug 15 2000 garloff@suse.de
- Update to stable version 1.2.1. - Update to stable version 1.2.1.
- No need for using -g for release version any longer. - No need for using -g for release version any longer.
* Wed Jul 05 2000 - garloff@suse.de * Wed Jul 05 2000 garloff@suse.de
- Update to doxygen-1.1.5: Many bugfixes (last pre-1.2) - Update to doxygen-1.1.5: Many bugfixes (last pre-1.2)
- Documentation (.ps,.pdf) is now being build from the sources - Documentation (.ps,.pdf) is now being build from the sources
* Tue Jun 27 2000 - garloff@suse.de * Tue Jun 27 2000 garloff@suse.de
- Detect qtlib2 version and pass it to the dynamic linker with - Detect qtlib2 version and pass it to the dynamic linker with
LD_RUN_PATH (equivalent to -rpath). LD_RUN_PATH (equivalent to -rpath).
* Wed Jun 21 2000 - garloff@suse.de * Wed Jun 21 2000 garloff@suse.de
- Change QTDIR to /usr/lib/qt2 (instead of qt-2.1.1) to avoid - Change QTDIR to /usr/lib/qt2 (instead of qt-2.1.1) to avoid
breakage in case of qtlib2 upgrade. breakage in case of qtlib2 upgrade.
* Tue Jun 06 2000 - garloff@suse.de * Tue Jun 06 2000 garloff@suse.de
- Upgrade to doxygen-1.1.4. - Upgrade to doxygen-1.1.4.
- Use qt2 to build. - Use qt2 to build.
- The Makefile for the doc subdir is now correctly created. - The Makefile for the doc subdir is now correctly created.
* Wed May 24 2000 - garloff@suse.de * Wed May 24 2000 garloff@suse.de
- Use %%{_docdir} - Use %%{_docdir}
* Wed Jan 05 2000 - garloff@suse.de * Wed Jan 05 2000 garloff@suse.de
- Upgrade to doxygen-1.0.0 - Upgrade to doxygen-1.0.0
* Sun Oct 31 1999 - ro@suse.de * Sun Oct 31 1999 ro@suse.de
- re-added -g to CFLAGS (workaround for a segfault without) - re-added -g to CFLAGS (workaround for a segfault without)
* Sat Oct 30 1999 - garloff@suse.de * Sat Oct 30 1999 garloff@suse.de
- Update to 0.49-991003. - Update to 0.49-991003.
- Added pdf docu. - Added pdf docu.
* Wed Aug 04 1999 - garloff@suse.de * Wed Aug 04 1999 garloff@suse.de
- Update to 0.49-990728. - Update to 0.49-990728.
* Wed Jul 28 1999 - garloff@suse.de * Thu Jul 29 1999 garloff@suse.de
- Added missing neededforbuild packages. - Added missing neededforbuild packages.
- Add -g to compile flags: Workaround for egcs on AXP (!) - Add -g to compile flags: Workaround for egcs on AXP (!)
* Sat Jul 24 1999 - garloff@suse.de * Sat Jul 24 1999 garloff@suse.de
- Check in der 0.49-990522 Version. linux-egcs Target. - Check in der 0.49-990522 Version. linux-egcs Target.

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f052b3387322c1e5c3344dbb67ce39021f2affe2249ad943f0a1767518c39999
size 563873

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cad7985278a532d13c9d165d0583348cfcfc9e33b302a17f7dd92ff5b76bc089
size 587045

View File

@@ -1,7 +1,7 @@
# #
# spec file for package doxywizard (Version 1.5.4) # spec file for package doxywizard (Version 1.5.5)
# #
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine # This file and all modifications and additions to the pristine
# package are under the same license as the package itself. # package are under the same license as the package itself.
# #
@@ -10,9 +10,10 @@
# norootforbuild # norootforbuild
Name: doxywizard Name: doxywizard
BuildRequires: bison flex libdrm-devel libjpeg-devel qt3-devel update-desktop-files BuildRequires: bison flex libdrm-devel libjpeg-devel qt3-devel update-desktop-files
Version: 1.5.4 Version: 1.5.5
Release: 1 Release: 1
AutoReqProv: on AutoReqProv: on
Requires: doxygen = %{version} Requires: doxygen = %{version}
@@ -78,24 +79,25 @@ rm -rf %{buildroot}
%attr(755,root,root) /usr/bin/doxywizard %attr(755,root,root) /usr/bin/doxywizard
/usr/share/applications/doxywizard.desktop /usr/share/applications/doxywizard.desktop
%attr(444,root,root) %doc %{_mandir}/man1/doxywizard.1.gz %attr(444,root,root) %doc %{_mandir}/man1/doxywizard.1.gz
%changelog %changelog
* Tue Oct 30 2007 - anosek@suse.cz * Tue Oct 30 2007 anosek@suse.cz
- updated to version 1.5.4 - updated to version 1.5.4
* Fri Jul 27 2007 - anosek@suse.cz * Fri Jul 27 2007 anosek@suse.cz
- updated to version 1.5.3 - updated to version 1.5.3
* Tue Apr 10 2007 - anosek@suse.cz * Tue Apr 10 2007 anosek@suse.cz
- fixed build of Doxywizard - fixed build of Doxywizard
* Thu Apr 05 2007 - anosek@suse.cz * Thu Apr 05 2007 anosek@suse.cz
- updated to version 1.5.2 - updated to version 1.5.2
* Thu Mar 29 2007 - mmarek@suse.de * Thu Mar 29 2007 mmarek@suse.de
- added flex and bison to buildrequires - added flex and bison to buildrequires
* Mon Feb 05 2007 - anosek@suse.cz * Mon Feb 05 2007 anosek@suse.cz
- updated to version 1.5.1 - updated to version 1.5.1
* fixed build (makefile.patch) * fixed build (makefile.patch)
* Wed Oct 18 2006 - anosek@suse.cz * Wed Oct 18 2006 anosek@suse.cz
- updated to version 1.5.0 - updated to version 1.5.0
* bugfixes * bugfixes
* Mon Jun 26 2006 - mmarek@suse.cz * Mon Jun 26 2006 mmarek@suse.cz
- updated to 1.4.7 - updated to 1.4.7
* new CALLER_GRAPH option to add called-by graph to functions * new CALLER_GRAPH option to add called-by graph to functions
* new REFERENCES_LINK_SOURCE option to set whether function names * new REFERENCES_LINK_SOURCE option to set whether function names
@@ -103,31 +105,31 @@ rm -rf %{buildroot}
source or documentation source or documentation
* doxywizard asks for confirmation before overwriting files in * doxywizard asks for confirmation before overwriting files in
the save dialog the save dialog
* Wed Jan 25 2006 - mls@suse.de * Wed Jan 25 2006 mls@suse.de
- converted neededforbuild to BuildRequires - converted neededforbuild to BuildRequires
* Tue Jan 17 2006 - mmarek@suse.cz * Tue Jan 17 2006 mmarek@suse.cz
- remove %%_lib fix, which isn't needed anymore and actually breaks - remove %%_lib fix, which isn't needed anymore and actually breaks
build on 64bit build on 64bit
* Thu Jan 05 2006 - mmarek@suse.cz * Thu Jan 05 2006 mmarek@suse.cz
- use make -j - use make -j
- add -fno-strict-aliasing - add -fno-strict-aliasing
* Mon Jan 02 2006 - mmarek@suse.cz * Mon Jan 02 2006 mmarek@suse.cz
- update to 1.4.6 - update to 1.4.6
* Mon Oct 10 2005 - mmarek@suse.cz * Mon Oct 10 2005 mmarek@suse.cz
- update to 1.4.5 - update to 1.4.5
* Tue Sep 20 2005 - mmarek@suse.cz * Tue Sep 20 2005 mmarek@suse.cz
- fix qtools to build with gcc-4.1.0 - fix qtools to build with gcc-4.1.0
* Thu Jul 28 2005 - postadal@suse.cz * Thu Jul 28 2005 postadal@suse.cz
- updated to version 1.4.4 - updated to version 1.4.4
* added man pages * added man pages
- removed obsoleted qt-mt patch - removed obsoleted qt-mt patch
* Sat Jan 22 2005 - ro@suse.de * Sat Jan 22 2005 ro@suse.de
- fix build (qt-mt instead of qt) - fix build (qt-mt instead of qt)
* Wed Jan 12 2005 - postadal@suse.cz * Wed Jan 12 2005 postadal@suse.cz
- updated to version 1.4.1 - updated to version 1.4.1
* Tue Aug 31 2004 - postadal@suse.cz * Tue Aug 31 2004 postadal@suse.cz
- fixed for new flex - fixed for new flex
* Tue Aug 03 2004 - postadal@suse.cz * Tue Aug 03 2004 postadal@suse.cz
- updated to version 1.3.8 - updated to version 1.3.8
* Tue Apr 27 2004 - postadal@suse.cz * Tue Apr 27 2004 postadal@suse.cz
- doxywizard split off (qt3 dependency) - doxywizard split off (qt3 dependency)