From 39fe6c187ec3b1640620d39797c102529e919f7eb61d42106c75f3cbf6204485 Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Mon, 20 May 2013 16:44:15 +0000 Subject: [PATCH] - updated to 1.8.4: * id 686384: When INLINE_SIMPLE_STRUCTS is enabled, also structs with simple typedefs will be inlined. * Doxywizard: scrolling with mouse wheel no longer affects the values in the expert view. * id 681733: More consistent warnings and errors. * Added support for "clang assisted parsing", which allows the code to also be parsed via libclang (C/C++ frontend of LLVM) and can improve the quality of the syntax highting, cross-references, and call graphs, especially for template heavy C++ code. To enable this feature you have to configure doxygen with the --with-libclang option. Then you get two new configuration options: CLANG_ASSISTED_PARSING to enable or disable parsing via clang and CLANG_OPTIONS to pass additional compiler options needed to compile the files. Note that enabling this feature has a significant performance penality. * Included patch donated by Intel which adds Docbook support. This can be enabled via GENERATE_DOCBOOK and the output location can be controlled using DOCBOOK_OUTPUT. Docbook specific sections can be added using \docbookonly ... \enddocbookonly * Added support for UNO IDL (interace language used in Open/Libre Office), thanks to Michael Stahl for the patch. * Included patch by Adrian Negreanu which stores data gathered by doxygen in a sqlite3 database. Currently still work in progress and can only be enabled using --with-sqlite3 during ./configure. * For interactive SVG graphs, edges are now highlighted when hovered by the mouse. * Include patch by Adrian Negreanu to show duration statistics OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=63 --- doxygen-1.7.1-qtdir.patch | 11 --------- doxygen-1.8.3.1-html.tar.bz2 | 3 --- doxygen-1.8.3.1.src.tar.gz | 3 --- doxygen-1.8.4-html.tar.bz2 | 3 +++ doxygen-1.8.4.src.tar.gz | 3 +++ doxygen.changes | 41 +++++++++++++++++++++++++++++++++ doxygen.spec | 2 +- doxygen_manual-1.8.3.1.pdf.zip | 3 --- doxygen_manual-1.8.4.pdf.zip | 3 +++ doxywizard.changes | 42 ++++++++++++++++++++++++++++++++++ doxywizard.spec | 6 +---- 11 files changed, 94 insertions(+), 26 deletions(-) delete mode 100644 doxygen-1.7.1-qtdir.patch delete mode 100644 doxygen-1.8.3.1-html.tar.bz2 delete mode 100644 doxygen-1.8.3.1.src.tar.gz create mode 100644 doxygen-1.8.4-html.tar.bz2 create mode 100644 doxygen-1.8.4.src.tar.gz delete mode 100644 doxygen_manual-1.8.3.1.pdf.zip create mode 100644 doxygen_manual-1.8.4.pdf.zip diff --git a/doxygen-1.7.1-qtdir.patch b/doxygen-1.7.1-qtdir.patch deleted file mode 100644 index 559dbb2..0000000 --- a/doxygen-1.7.1-qtdir.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2010-06-25 20:54:23.000000000 +0200 -+++ configure 2010-06-25 20:54:40.000000000 +0200 -@@ -268,7 +268,7 @@ - if test -z "$QTDIR"; then - echo " QTDIR environment variable not set!" - echo -n " Checking for Qt..." -- for d in /usr/{lib,share,qt}/{qt-4,qt4,qt,qt*,4} /usr; do -+ for d in /usr; do - if test -x "$d/bin/qmake"; then - QTDIR=$d - fi diff --git a/doxygen-1.8.3.1-html.tar.bz2 b/doxygen-1.8.3.1-html.tar.bz2 deleted file mode 100644 index e03afa4..0000000 --- a/doxygen-1.8.3.1-html.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d8683c991e42fbd463c94bee44857abec19fa448970208857917068781b7bb73 -size 672825 diff --git a/doxygen-1.8.3.1.src.tar.gz b/doxygen-1.8.3.1.src.tar.gz deleted file mode 100644 index 290be54..0000000 --- a/doxygen-1.8.3.1.src.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0c749f68101b6c04ccb0d9696dd37836a6ba62cd8002add275058a975ee72b55 -size 6196887 diff --git a/doxygen-1.8.4-html.tar.bz2 b/doxygen-1.8.4-html.tar.bz2 new file mode 100644 index 0000000..5cefced --- /dev/null +++ b/doxygen-1.8.4-html.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:870b96a9e44a856127fa7086b4c6014bbf350e5d721f16b6a470fc0d5f3ecb73 +size 701866 diff --git a/doxygen-1.8.4.src.tar.gz b/doxygen-1.8.4.src.tar.gz new file mode 100644 index 0000000..301e7b2 --- /dev/null +++ b/doxygen-1.8.4.src.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526442fb70bea79a4086cc98c22692cc05edc2f4cf231feb7993b5d188ef584e +size 6456090 diff --git a/doxygen.changes b/doxygen.changes index 4a199c5..1e01008 100644 --- a/doxygen.changes +++ b/doxygen.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Mon May 20 16:41:54 UTC 2013 - pgajdos@suse.com + +- updated to 1.8.4: + * id 686384: When INLINE_SIMPLE_STRUCTS is enabled, also structs + with simple typedefs will be inlined. + * Doxywizard: scrolling with mouse wheel no longer affects the + values in the expert view. + * id 681733: More consistent warnings and errors. + * Added support for "clang assisted parsing", which allows the + code to also be parsed via libclang (C/C++ frontend of LLVM) + and can improve the quality of the syntax highting, + cross-references, and call graphs, especially for template + heavy C++ code. To enable this feature you have to configure + doxygen with the --with-libclang option. Then you get two new + configuration options: CLANG_ASSISTED_PARSING to enable or + disable parsing via clang and CLANG_OPTIONS to pass additional + compiler options needed to compile the files. Note that + enabling this feature has a significant performance penality. + * Included patch donated by Intel which adds Docbook support. + This can be enabled via GENERATE_DOCBOOK and the output + location can be controlled using DOCBOOK_OUTPUT. Docbook + specific sections can be added using + \docbookonly ... \enddocbookonly + * Added support for UNO IDL (interace language used in + Open/Libre Office), thanks to Michael Stahl for the patch. + * Included patch by Adrian Negreanu which stores data gathered + by doxygen in a sqlite3 database. Currently still work in + progress and can only be enabled using --with-sqlite3 during + ./configure. + * For interactive SVG graphs, edges are now highlighted when + hovered by the mouse. + * Include patch by Adrian Negreanu to show duration statistics + after a run. You can enable this by running doxygen with the + "-d Time" option. + * Included patch by Markus Geimer which adds a new option + LATEX_EXTRA_FILES which works similarily to HTML_EXTRA_FILES + in that it copied specified files to the LaTeX output + directory. + * etc., see http://www.stack.nl/~dimitri/doxygen/manual/changelog.html + ------------------------------------------------------------------- Tue Mar 26 07:34:31 UTC 2013 - mmeister@suse.com diff --git a/doxygen.spec b/doxygen.spec index 4e5a413..3e05f55 100644 --- a/doxygen.spec +++ b/doxygen.spec @@ -22,7 +22,7 @@ BuildRequires: flex BuildRequires: gcc-c++ BuildRequires: libpng-devel BuildRequires: unzip -Version: 1.8.3.1 +Version: 1.8.4 Release: 0 Summary: Automated C, C++, and Java Documentation Generator License: GPL-2.0+ diff --git a/doxygen_manual-1.8.3.1.pdf.zip b/doxygen_manual-1.8.3.1.pdf.zip deleted file mode 100644 index bf8fe04..0000000 --- a/doxygen_manual-1.8.3.1.pdf.zip +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:10b61961b79b7847cbddf715fa887989306288239d28b6e354ebe2a4c7e72c81 -size 729002 diff --git a/doxygen_manual-1.8.4.pdf.zip b/doxygen_manual-1.8.4.pdf.zip new file mode 100644 index 0000000..d60b257 --- /dev/null +++ b/doxygen_manual-1.8.4.pdf.zip @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95764d9fa97baf2f925ef5a060d9080ecd0c38c220e15bd8954f5b583980f0c4 +size 751798 diff --git a/doxywizard.changes b/doxywizard.changes index 781233f..164312e 100644 --- a/doxywizard.changes +++ b/doxywizard.changes @@ -1,3 +1,44 @@ +------------------------------------------------------------------- +Mon May 20 16:37:04 UTC 2013 - pgajdos@suse.com + +- updated to 1.8.4: + * id 686384: When INLINE_SIMPLE_STRUCTS is enabled, also structs + with simple typedefs will be inlined. + * Doxywizard: scrolling with mouse wheel no longer affects the + values in the expert view. + * id 681733: More consistent warnings and errors. + * Added support for "clang assisted parsing", which allows the + code to also be parsed via libclang (C/C++ frontend of LLVM) + and can improve the quality of the syntax highting, + cross-references, and call graphs, especially for template + heavy C++ code. To enable this feature you have to configure + doxygen with the --with-libclang option. Then you get two new + configuration options: CLANG_ASSISTED_PARSING to enable or + disable parsing via clang and CLANG_OPTIONS to pass additional + compiler options needed to compile the files. Note that + enabling this feature has a significant performance penality. + * Included patch donated by Intel which adds Docbook support. + This can be enabled via GENERATE_DOCBOOK and the output + location can be controlled using DOCBOOK_OUTPUT. Docbook + specific sections can be added using + \docbookonly ... \enddocbookonly + * Added support for UNO IDL (interace language used in + Open/Libre Office), thanks to Michael Stahl for the patch. + * Included patch by Adrian Negreanu which stores data gathered + by doxygen in a sqlite3 database. Currently still work in + progress and can only be enabled using --with-sqlite3 during + ./configure. + * For interactive SVG graphs, edges are now highlighted when + hovered by the mouse. + * Include patch by Adrian Negreanu to show duration statistics + after a run. You can enable this by running doxygen with the + "-d Time" option. + * Included patch by Markus Geimer which adds a new option + LATEX_EXTRA_FILES which works similarily to HTML_EXTRA_FILES + in that it copied specified files to the LaTeX output + directory. + * etc., see http://www.stack.nl/~dimitri/doxygen/manual/changelog.html + ------------------------------------------------------------------- Tue Mar 26 07:35:51 UTC 2013 - mmeister@suse.com @@ -384,6 +425,7 @@ Mon May 4 13:17:40 CEST 2009 - mseben@suse.cz the language code from SE to SV to comply with ISO 639. * id 578382: When referring to a static variable or function doxygen will now look at the file context in case of ambiguity. +- dropped qtdir.patch as it seems it is not needed anymore ------------------------------------------------------------------- Mon Feb 9 10:00:00 CET 2009 - olh@suse.de diff --git a/doxywizard.spec b/doxywizard.spec index 333b5e3..9cff2df 100644 --- a/doxywizard.spec +++ b/doxywizard.spec @@ -21,7 +21,7 @@ BuildRequires: bison BuildRequires: flex BuildRequires: gcc-c++ BuildRequires: libjpeg-devel -Version: 1.8.3.1 +Version: 1.8.4 Release: 0 Requires: doxygen = %{version} Summary: Graphical User Interface for Doxygen @@ -33,7 +33,6 @@ Source1: doxywizard.desktop Patch: doxygen-1.5.9-64archs.patch Patch2: %{name}-1.5.9-flex.patch Patch5: doxygen-1.5.9-man.patch -Patch6: doxygen-1.7.1-qtdir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build ######################################################################################### # SuSE, openSUSE @@ -70,9 +69,6 @@ configuration files. %patch %patch2 %patch5 -%if 0%{?suse_version} -%patch6 -%endif %build %if 0%{?suse_version}