From f15ea0efddb89439fb20548412749542b928b337e5216adff56085494ffb372c Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Mon, 11 Oct 2010 14:08:58 +0000 Subject: [PATCH 1/3] - updated to 1.7.2: * Changed the default font of the LaTeX output to helvetica. * Changed the way parameters and return values are represented in the LaTeX and RTF output. They are now listed using tables. * added support for Apple's block object extension for C/Obj-C/C++. * added support for detecting Python constructors and destructors. * id 624575: Added \endinternal command that can be used to force the end of a section started with \internal. * id 552605: Added parsing support for PHP 5.3+ style namespaces. * id 582532: added \mscfile command which can be used to insert a message sequence chart given a .msc file. Also added a new config option MSCFILE_DIRS to provide directories were msc files are searched (Thanks to Adrien for the patch). * Added support for type specifiers for documenting PHP parameters, format: "@param type $paramname docs" * Added support for rendering formulas in the HTML output using MathJax instead of using prerendered bitmaps. For this purpose the options USE_MATHJAX and MATHJAX_RELPATH were added. * Many bugfixes. * For details see http://www.stack.nl/~dimitri/doxygen/changelog.html. - updated to 1.7.2: * Changed the default font of the LaTeX output to helvetica. * Changed the way parameters and return values are represented in the LaTeX and RTF output. They are now listed using tables. * added support for Apple's block object extension for C/Obj-C/C++. * added support for detecting Python constructors and destructors. * id 624575: Added \endinternal command that can be used to force the end of a section started with \internal. OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=22 --- doxygen-1.7.0-modify_footer.patch | 24 ++++++++++++------------ doxygen-1.7.1-html.tar.bz2 | 3 --- doxygen-1.7.1.src.tar.bz2 | 3 --- doxygen-1.7.2-html.tar.bz2 | 3 +++ doxygen-1.7.2.src.tar.bz2 | 3 +++ doxygen.changes | 24 ++++++++++++++++++++++++ doxygen.spec | 2 +- doxygen_manual-1.7.1.pdf.bz2 | 3 --- doxygen_manual-1.7.2.pdf.bz2 | 3 +++ doxywizard.changes | 24 ++++++++++++++++++++++++ doxywizard.spec | 2 +- 11 files changed, 71 insertions(+), 23 deletions(-) delete mode 100644 doxygen-1.7.1-html.tar.bz2 delete mode 100644 doxygen-1.7.1.src.tar.bz2 create mode 100644 doxygen-1.7.2-html.tar.bz2 create mode 100644 doxygen-1.7.2.src.tar.bz2 delete mode 100644 doxygen_manual-1.7.1.pdf.bz2 create mode 100644 doxygen_manual-1.7.2.pdf.bz2 diff --git a/doxygen-1.7.0-modify_footer.patch b/doxygen-1.7.0-modify_footer.patch index 5133ca2..22b0836 100644 --- a/doxygen-1.7.0-modify_footer.patch +++ b/doxygen-1.7.0-modify_footer.patch @@ -1,8 +1,8 @@ Index: src/config.xml =================================================================== ---- src/config.xml.orig 2010-06-20 11:49:46.000000000 +0200 -+++ src/config.xml 2010-08-29 22:56:28.559367000 +0200 -@@ -761,6 +761,11 @@ The HTML_FOOTER tag can be used to speci +--- src/config.xml.orig ++++ src/config.xml +@@ -762,6 +762,11 @@ The HTML_FOOTER tag can be used to speci each generated HTML page. If it is left blank doxygen will generate a standard footer. ' defval='' depends='GENERATE_HTML'/> @@ -16,16 +16,16 @@ Index: src/config.xml style sheet that is used by each HTML page. It can be used to Index: src/htmlgen.cpp =================================================================== ---- src/htmlgen.cpp.orig 2010-06-23 13:42:37.000000000 +0200 -+++ src/htmlgen.cpp 2010-08-29 22:56:28.573365000 +0200 -@@ -951,10 +951,16 @@ void HtmlGenerator::writeFooterFile(QFil +--- src/htmlgen.cpp.orig ++++ src/htmlgen.cpp +@@ -969,10 +969,16 @@ void HtmlGenerator::writeFooterFile(QFil { FTextStream t(&file); t << "
\n"; + if (Config_getBool("HTML_FOOTER_DESCRIPTION")) { t << theTranslator->trGeneratedAt( "$datetime", "$projectname" ); -- t << " " -+ t << " "; +- t << " " ++ t << " "; + } + t << "" << "\"doxygen\"/" @@ -39,9 +39,9 @@ Index: src/htmlgen.cpp << "\n"; Index: src/configoptions.cpp =================================================================== ---- src/configoptions.cpp.orig 2010-06-20 11:49:52.000000000 +0200 -+++ src/configoptions.cpp 2010-08-29 22:59:38.992606000 +0200 -@@ -1095,6 +1095,15 @@ void addConfigOptions(Config *cfg) +--- src/configoptions.cpp.orig ++++ src/configoptions.cpp +@@ -1096,6 +1096,15 @@ void addConfigOptions(Config *cfg) cs->setWidgetType(ConfigString::File); cs->addDependency("GENERATE_HTML"); //---- @@ -57,7 +57,7 @@ Index: src/configoptions.cpp cs = cfg->addString( "HTML_STYLESHEET", "The HTML_STYLESHEET tag can be used to specify a user-defined cascading\n" -@@ -1145,7 +1154,7 @@ void addConfigOptions(Config *cfg) +@@ -1146,7 +1155,7 @@ void addConfigOptions(Config *cfg) "If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\n" "page will contain the date and time when the page was generated. Setting\n" "this to NO can help when comparing the output of multiple runs.", diff --git a/doxygen-1.7.1-html.tar.bz2 b/doxygen-1.7.1-html.tar.bz2 deleted file mode 100644 index faf0f78..0000000 --- a/doxygen-1.7.1-html.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3cf927f4499fb7ef6a7e860c3ca850328980dd74cfbc783f476aca20e394361 -size 471024 diff --git a/doxygen-1.7.1.src.tar.bz2 b/doxygen-1.7.1.src.tar.bz2 deleted file mode 100644 index 2a20ff5..0000000 --- a/doxygen-1.7.1.src.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76c3f2c02abf6beb11e63a600fcab836f703ad9b58f84e4b9f45bb6e51e47b52 -size 3356569 diff --git a/doxygen-1.7.2-html.tar.bz2 b/doxygen-1.7.2-html.tar.bz2 new file mode 100644 index 0000000..02a521a --- /dev/null +++ b/doxygen-1.7.2-html.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda52571d09f1c9390acda1b7068ba9f1412bf78d6e24659c62a4663f4e9477c +size 475469 diff --git a/doxygen-1.7.2.src.tar.bz2 b/doxygen-1.7.2.src.tar.bz2 new file mode 100644 index 0000000..741e043 --- /dev/null +++ b/doxygen-1.7.2.src.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec59a6d61346aa1bef4dc68af6c2ce2469165c1c7d59580368b7f8db5be1162 +size 3379306 diff --git a/doxygen.changes b/doxygen.changes index 33d5bb3..60598bd 100644 --- a/doxygen.changes +++ b/doxygen.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Mon Oct 11 13:40:56 UTC 2010 - pgajdos@novell.com + +- updated to 1.7.2: + * Changed the default font of the LaTeX output to helvetica. + * Changed the way parameters and return values are represented + in the LaTeX and RTF output. They are now listed using tables. + * added support for Apple's block object extension for C/Obj-C/C++. + * added support for detecting Python constructors and destructors. + * id 624575: Added \endinternal command that can be used to force + the end of a section started with \internal. + * id 552605: Added parsing support for PHP 5.3+ style namespaces. + * id 582532: added \mscfile command which can be used to insert a + message sequence chart given a .msc file. Also added a new + config option MSCFILE_DIRS to provide directories were msc + files are searched (Thanks to Adrien for the patch). + * Added support for type specifiers for documenting PHP + parameters, format: "@param type $paramname docs" + * Added support for rendering formulas in the HTML output using + MathJax instead of using prerendered bitmaps. For this purpose + the options USE_MATHJAX and MATHJAX_RELPATH were added. + * Many bugfixes. + * For details see http://www.stack.nl/~dimitri/doxygen/changelog.html. + ------------------------------------------------------------------- Sun Aug 29 21:00:54 UTC 2010 - cristian.rodriguez@opensuse.org diff --git a/doxygen.spec b/doxygen.spec index d287b30..7806271 100644 --- a/doxygen.spec +++ b/doxygen.spec @@ -20,7 +20,7 @@ Name: doxygen BuildRequires: bison flex gcc-c++ libpng-devel -Version: 1.7.1 +Version: 1.7.2 Release: 3 AutoReqProv: on License: GPLv2+ diff --git a/doxygen_manual-1.7.1.pdf.bz2 b/doxygen_manual-1.7.1.pdf.bz2 deleted file mode 100644 index 0dfe888..0000000 --- a/doxygen_manual-1.7.1.pdf.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b683aa99485528c36d5b907d89ea5932aa084e246c3517e61cd8af60235c8879 -size 671936 diff --git a/doxygen_manual-1.7.2.pdf.bz2 b/doxygen_manual-1.7.2.pdf.bz2 new file mode 100644 index 0000000..290b627 --- /dev/null +++ b/doxygen_manual-1.7.2.pdf.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefc61f28640174d656e374d51499c0ebce6fbd73e3025601645f23b83bd8cbf +size 686870 diff --git a/doxywizard.changes b/doxywizard.changes index 47f35c5..9a32879 100644 --- a/doxywizard.changes +++ b/doxywizard.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Mon Oct 11 13:43:48 UTC 2010 - pgajdos@novell.com + +- updated to 1.7.2: + * Changed the default font of the LaTeX output to helvetica. + * Changed the way parameters and return values are represented + in the LaTeX and RTF output. They are now listed using tables. + * added support for Apple's block object extension for C/Obj-C/C++. + * added support for detecting Python constructors and destructors. + * id 624575: Added \endinternal command that can be used to force + the end of a section started with \internal. + * id 552605: Added parsing support for PHP 5.3+ style namespaces. + * id 582532: added \mscfile command which can be used to insert a + message sequence chart given a .msc file. Also added a new + config option MSCFILE_DIRS to provide directories were msc + files are searched (Thanks to Adrien for the patch). + * Added support for type specifiers for documenting PHP + parameters, format: "@param type $paramname docs" + * Added support for rendering formulas in the HTML output using + MathJax instead of using prerendered bitmaps. For this purpose + the options USE_MATHJAX and MATHJAX_RELPATH were added. + * Many bugfixes. + * For details see http://www.stack.nl/~dimitri/doxygen/changelog.html. + ------------------------------------------------------------------- Fri Jun 25 18:52:36 UTC 2010 - pascal.bleser@opensuse.org diff --git a/doxywizard.spec b/doxywizard.spec index 14986f4..273b4d7 100644 --- a/doxywizard.spec +++ b/doxywizard.spec @@ -20,7 +20,7 @@ Name: doxywizard BuildRequires: bison flex gcc-c++ libdrm-devel libjpeg-devel -Version: 1.7.1 +Version: 1.7.2 Release: 3 AutoReqProv: on Requires: doxygen = %{version} From 67b6ae62babcf04abfc3ac2966823950b83ac24ec8d7677fd1e1abf423198658 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Mon, 11 Oct 2010 14:47:07 +0000 Subject: [PATCH 2/3] Accepting request 50219 from devel:tools checked in (request 50219) OBS-URL: https://build.opensuse.org/request/show/50219 OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=23 --- doxygen-1.7.0-modify_footer.patch | 24 ++++++++++++------------ doxygen-1.7.1-html.tar.bz2 | 3 +++ doxygen-1.7.1.src.tar.bz2 | 3 +++ doxygen-1.7.2-html.tar.bz2 | 3 --- doxygen-1.7.2.src.tar.bz2 | 3 --- doxygen.changes | 24 ------------------------ doxygen.spec | 2 +- doxygen_manual-1.7.1.pdf.bz2 | 3 +++ doxygen_manual-1.7.2.pdf.bz2 | 3 --- doxywizard.changes | 24 ------------------------ doxywizard.spec | 2 +- 11 files changed, 23 insertions(+), 71 deletions(-) create mode 100644 doxygen-1.7.1-html.tar.bz2 create mode 100644 doxygen-1.7.1.src.tar.bz2 delete mode 100644 doxygen-1.7.2-html.tar.bz2 delete mode 100644 doxygen-1.7.2.src.tar.bz2 create mode 100644 doxygen_manual-1.7.1.pdf.bz2 delete mode 100644 doxygen_manual-1.7.2.pdf.bz2 diff --git a/doxygen-1.7.0-modify_footer.patch b/doxygen-1.7.0-modify_footer.patch index 22b0836..5133ca2 100644 --- a/doxygen-1.7.0-modify_footer.patch +++ b/doxygen-1.7.0-modify_footer.patch @@ -1,8 +1,8 @@ Index: src/config.xml =================================================================== ---- src/config.xml.orig -+++ src/config.xml -@@ -762,6 +762,11 @@ The HTML_FOOTER tag can be used to speci +--- src/config.xml.orig 2010-06-20 11:49:46.000000000 +0200 ++++ src/config.xml 2010-08-29 22:56:28.559367000 +0200 +@@ -761,6 +761,11 @@ The HTML_FOOTER tag can be used to speci each generated HTML page. If it is left blank doxygen will generate a standard footer. ' defval='' depends='GENERATE_HTML'/> @@ -16,16 +16,16 @@ Index: src/config.xml style sheet that is used by each HTML page. It can be used to Index: src/htmlgen.cpp =================================================================== ---- src/htmlgen.cpp.orig -+++ src/htmlgen.cpp -@@ -969,10 +969,16 @@ void HtmlGenerator::writeFooterFile(QFil +--- src/htmlgen.cpp.orig 2010-06-23 13:42:37.000000000 +0200 ++++ src/htmlgen.cpp 2010-08-29 22:56:28.573365000 +0200 +@@ -951,10 +951,16 @@ void HtmlGenerator::writeFooterFile(QFil { FTextStream t(&file); t << "
\n"; + if (Config_getBool("HTML_FOOTER_DESCRIPTION")) { t << theTranslator->trGeneratedAt( "$datetime", "$projectname" ); -- t << " " -+ t << " "; +- t << " " ++ t << " "; + } + t << "" << "\"doxygen\"/" @@ -39,9 +39,9 @@ Index: src/htmlgen.cpp << "\n"; Index: src/configoptions.cpp =================================================================== ---- src/configoptions.cpp.orig -+++ src/configoptions.cpp -@@ -1096,6 +1096,15 @@ void addConfigOptions(Config *cfg) +--- src/configoptions.cpp.orig 2010-06-20 11:49:52.000000000 +0200 ++++ src/configoptions.cpp 2010-08-29 22:59:38.992606000 +0200 +@@ -1095,6 +1095,15 @@ void addConfigOptions(Config *cfg) cs->setWidgetType(ConfigString::File); cs->addDependency("GENERATE_HTML"); //---- @@ -57,7 +57,7 @@ Index: src/configoptions.cpp cs = cfg->addString( "HTML_STYLESHEET", "The HTML_STYLESHEET tag can be used to specify a user-defined cascading\n" -@@ -1146,7 +1155,7 @@ void addConfigOptions(Config *cfg) +@@ -1145,7 +1154,7 @@ void addConfigOptions(Config *cfg) "If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\n" "page will contain the date and time when the page was generated. Setting\n" "this to NO can help when comparing the output of multiple runs.", diff --git a/doxygen-1.7.1-html.tar.bz2 b/doxygen-1.7.1-html.tar.bz2 new file mode 100644 index 0000000..faf0f78 --- /dev/null +++ b/doxygen-1.7.1-html.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3cf927f4499fb7ef6a7e860c3ca850328980dd74cfbc783f476aca20e394361 +size 471024 diff --git a/doxygen-1.7.1.src.tar.bz2 b/doxygen-1.7.1.src.tar.bz2 new file mode 100644 index 0000000..2a20ff5 --- /dev/null +++ b/doxygen-1.7.1.src.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76c3f2c02abf6beb11e63a600fcab836f703ad9b58f84e4b9f45bb6e51e47b52 +size 3356569 diff --git a/doxygen-1.7.2-html.tar.bz2 b/doxygen-1.7.2-html.tar.bz2 deleted file mode 100644 index 02a521a..0000000 --- a/doxygen-1.7.2-html.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bda52571d09f1c9390acda1b7068ba9f1412bf78d6e24659c62a4663f4e9477c -size 475469 diff --git a/doxygen-1.7.2.src.tar.bz2 b/doxygen-1.7.2.src.tar.bz2 deleted file mode 100644 index 741e043..0000000 --- a/doxygen-1.7.2.src.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1ec59a6d61346aa1bef4dc68af6c2ce2469165c1c7d59580368b7f8db5be1162 -size 3379306 diff --git a/doxygen.changes b/doxygen.changes index 60598bd..33d5bb3 100644 --- a/doxygen.changes +++ b/doxygen.changes @@ -1,27 +1,3 @@ -------------------------------------------------------------------- -Mon Oct 11 13:40:56 UTC 2010 - pgajdos@novell.com - -- updated to 1.7.2: - * Changed the default font of the LaTeX output to helvetica. - * Changed the way parameters and return values are represented - in the LaTeX and RTF output. They are now listed using tables. - * added support for Apple's block object extension for C/Obj-C/C++. - * added support for detecting Python constructors and destructors. - * id 624575: Added \endinternal command that can be used to force - the end of a section started with \internal. - * id 552605: Added parsing support for PHP 5.3+ style namespaces. - * id 582532: added \mscfile command which can be used to insert a - message sequence chart given a .msc file. Also added a new - config option MSCFILE_DIRS to provide directories were msc - files are searched (Thanks to Adrien for the patch). - * Added support for type specifiers for documenting PHP - parameters, format: "@param type $paramname docs" - * Added support for rendering formulas in the HTML output using - MathJax instead of using prerendered bitmaps. For this purpose - the options USE_MATHJAX and MATHJAX_RELPATH were added. - * Many bugfixes. - * For details see http://www.stack.nl/~dimitri/doxygen/changelog.html. - ------------------------------------------------------------------- Sun Aug 29 21:00:54 UTC 2010 - cristian.rodriguez@opensuse.org diff --git a/doxygen.spec b/doxygen.spec index 7806271..d287b30 100644 --- a/doxygen.spec +++ b/doxygen.spec @@ -20,7 +20,7 @@ Name: doxygen BuildRequires: bison flex gcc-c++ libpng-devel -Version: 1.7.2 +Version: 1.7.1 Release: 3 AutoReqProv: on License: GPLv2+ diff --git a/doxygen_manual-1.7.1.pdf.bz2 b/doxygen_manual-1.7.1.pdf.bz2 new file mode 100644 index 0000000..0dfe888 --- /dev/null +++ b/doxygen_manual-1.7.1.pdf.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b683aa99485528c36d5b907d89ea5932aa084e246c3517e61cd8af60235c8879 +size 671936 diff --git a/doxygen_manual-1.7.2.pdf.bz2 b/doxygen_manual-1.7.2.pdf.bz2 deleted file mode 100644 index 290b627..0000000 --- a/doxygen_manual-1.7.2.pdf.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cefc61f28640174d656e374d51499c0ebce6fbd73e3025601645f23b83bd8cbf -size 686870 diff --git a/doxywizard.changes b/doxywizard.changes index 9a32879..47f35c5 100644 --- a/doxywizard.changes +++ b/doxywizard.changes @@ -1,27 +1,3 @@ -------------------------------------------------------------------- -Mon Oct 11 13:43:48 UTC 2010 - pgajdos@novell.com - -- updated to 1.7.2: - * Changed the default font of the LaTeX output to helvetica. - * Changed the way parameters and return values are represented - in the LaTeX and RTF output. They are now listed using tables. - * added support for Apple's block object extension for C/Obj-C/C++. - * added support for detecting Python constructors and destructors. - * id 624575: Added \endinternal command that can be used to force - the end of a section started with \internal. - * id 552605: Added parsing support for PHP 5.3+ style namespaces. - * id 582532: added \mscfile command which can be used to insert a - message sequence chart given a .msc file. Also added a new - config option MSCFILE_DIRS to provide directories were msc - files are searched (Thanks to Adrien for the patch). - * Added support for type specifiers for documenting PHP - parameters, format: "@param type $paramname docs" - * Added support for rendering formulas in the HTML output using - MathJax instead of using prerendered bitmaps. For this purpose - the options USE_MATHJAX and MATHJAX_RELPATH were added. - * Many bugfixes. - * For details see http://www.stack.nl/~dimitri/doxygen/changelog.html. - ------------------------------------------------------------------- Fri Jun 25 18:52:36 UTC 2010 - pascal.bleser@opensuse.org diff --git a/doxywizard.spec b/doxywizard.spec index 273b4d7..14986f4 100644 --- a/doxywizard.spec +++ b/doxywizard.spec @@ -20,7 +20,7 @@ Name: doxywizard BuildRequires: bison flex gcc-c++ libdrm-devel libjpeg-devel -Version: 1.7.2 +Version: 1.7.1 Release: 3 AutoReqProv: on Requires: doxygen = %{version} From 1910e42afc8874f1cf5a5ac6889bbcf4ff32d4be9dab54635bbdcc1c144ba395 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Mon, 11 Oct 2010 14:47:11 +0000 Subject: [PATCH 3/3] Updating link to change in openSUSE:Factory/doxygen revision 23.0 OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=bcb1e6afa22a470b258e303dc1912632 --- doxygen-1.7.0-modify_footer.patch | 24 ++++++++++++------------ doxygen-1.7.1-html.tar.bz2 | 3 --- doxygen-1.7.1.src.tar.bz2 | 3 --- doxygen-1.7.2-html.tar.bz2 | 3 +++ doxygen-1.7.2.src.tar.bz2 | 3 +++ doxygen.changes | 24 ++++++++++++++++++++++++ doxygen.spec | 6 +++--- doxygen_manual-1.7.1.pdf.bz2 | 3 --- doxygen_manual-1.7.2.pdf.bz2 | 3 +++ doxywizard.changes | 24 ++++++++++++++++++++++++ doxywizard.spec | 6 +++--- 11 files changed, 75 insertions(+), 27 deletions(-) delete mode 100644 doxygen-1.7.1-html.tar.bz2 delete mode 100644 doxygen-1.7.1.src.tar.bz2 create mode 100644 doxygen-1.7.2-html.tar.bz2 create mode 100644 doxygen-1.7.2.src.tar.bz2 delete mode 100644 doxygen_manual-1.7.1.pdf.bz2 create mode 100644 doxygen_manual-1.7.2.pdf.bz2 diff --git a/doxygen-1.7.0-modify_footer.patch b/doxygen-1.7.0-modify_footer.patch index 5133ca2..22b0836 100644 --- a/doxygen-1.7.0-modify_footer.patch +++ b/doxygen-1.7.0-modify_footer.patch @@ -1,8 +1,8 @@ Index: src/config.xml =================================================================== ---- src/config.xml.orig 2010-06-20 11:49:46.000000000 +0200 -+++ src/config.xml 2010-08-29 22:56:28.559367000 +0200 -@@ -761,6 +761,11 @@ The HTML_FOOTER tag can be used to speci +--- src/config.xml.orig ++++ src/config.xml +@@ -762,6 +762,11 @@ The HTML_FOOTER tag can be used to speci each generated HTML page. If it is left blank doxygen will generate a standard footer. ' defval='' depends='GENERATE_HTML'/> @@ -16,16 +16,16 @@ Index: src/config.xml style sheet that is used by each HTML page. It can be used to Index: src/htmlgen.cpp =================================================================== ---- src/htmlgen.cpp.orig 2010-06-23 13:42:37.000000000 +0200 -+++ src/htmlgen.cpp 2010-08-29 22:56:28.573365000 +0200 -@@ -951,10 +951,16 @@ void HtmlGenerator::writeFooterFile(QFil +--- src/htmlgen.cpp.orig ++++ src/htmlgen.cpp +@@ -969,10 +969,16 @@ void HtmlGenerator::writeFooterFile(QFil { FTextStream t(&file); t << "
\n"; + if (Config_getBool("HTML_FOOTER_DESCRIPTION")) { t << theTranslator->trGeneratedAt( "$datetime", "$projectname" ); -- t << " " -+ t << " "; +- t << " " ++ t << " "; + } + t << "" << "\"doxygen\"/" @@ -39,9 +39,9 @@ Index: src/htmlgen.cpp << "\n"; Index: src/configoptions.cpp =================================================================== ---- src/configoptions.cpp.orig 2010-06-20 11:49:52.000000000 +0200 -+++ src/configoptions.cpp 2010-08-29 22:59:38.992606000 +0200 -@@ -1095,6 +1095,15 @@ void addConfigOptions(Config *cfg) +--- src/configoptions.cpp.orig ++++ src/configoptions.cpp +@@ -1096,6 +1096,15 @@ void addConfigOptions(Config *cfg) cs->setWidgetType(ConfigString::File); cs->addDependency("GENERATE_HTML"); //---- @@ -57,7 +57,7 @@ Index: src/configoptions.cpp cs = cfg->addString( "HTML_STYLESHEET", "The HTML_STYLESHEET tag can be used to specify a user-defined cascading\n" -@@ -1145,7 +1154,7 @@ void addConfigOptions(Config *cfg) +@@ -1146,7 +1155,7 @@ void addConfigOptions(Config *cfg) "If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML\n" "page will contain the date and time when the page was generated. Setting\n" "this to NO can help when comparing the output of multiple runs.", diff --git a/doxygen-1.7.1-html.tar.bz2 b/doxygen-1.7.1-html.tar.bz2 deleted file mode 100644 index faf0f78..0000000 --- a/doxygen-1.7.1-html.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b3cf927f4499fb7ef6a7e860c3ca850328980dd74cfbc783f476aca20e394361 -size 471024 diff --git a/doxygen-1.7.1.src.tar.bz2 b/doxygen-1.7.1.src.tar.bz2 deleted file mode 100644 index 2a20ff5..0000000 --- a/doxygen-1.7.1.src.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:76c3f2c02abf6beb11e63a600fcab836f703ad9b58f84e4b9f45bb6e51e47b52 -size 3356569 diff --git a/doxygen-1.7.2-html.tar.bz2 b/doxygen-1.7.2-html.tar.bz2 new file mode 100644 index 0000000..02a521a --- /dev/null +++ b/doxygen-1.7.2-html.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda52571d09f1c9390acda1b7068ba9f1412bf78d6e24659c62a4663f4e9477c +size 475469 diff --git a/doxygen-1.7.2.src.tar.bz2 b/doxygen-1.7.2.src.tar.bz2 new file mode 100644 index 0000000..741e043 --- /dev/null +++ b/doxygen-1.7.2.src.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ec59a6d61346aa1bef4dc68af6c2ce2469165c1c7d59580368b7f8db5be1162 +size 3379306 diff --git a/doxygen.changes b/doxygen.changes index 33d5bb3..60598bd 100644 --- a/doxygen.changes +++ b/doxygen.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Mon Oct 11 13:40:56 UTC 2010 - pgajdos@novell.com + +- updated to 1.7.2: + * Changed the default font of the LaTeX output to helvetica. + * Changed the way parameters and return values are represented + in the LaTeX and RTF output. They are now listed using tables. + * added support for Apple's block object extension for C/Obj-C/C++. + * added support for detecting Python constructors and destructors. + * id 624575: Added \endinternal command that can be used to force + the end of a section started with \internal. + * id 552605: Added parsing support for PHP 5.3+ style namespaces. + * id 582532: added \mscfile command which can be used to insert a + message sequence chart given a .msc file. Also added a new + config option MSCFILE_DIRS to provide directories were msc + files are searched (Thanks to Adrien for the patch). + * Added support for type specifiers for documenting PHP + parameters, format: "@param type $paramname docs" + * Added support for rendering formulas in the HTML output using + MathJax instead of using prerendered bitmaps. For this purpose + the options USE_MATHJAX and MATHJAX_RELPATH were added. + * Many bugfixes. + * For details see http://www.stack.nl/~dimitri/doxygen/changelog.html. + ------------------------------------------------------------------- Sun Aug 29 21:00:54 UTC 2010 - cristian.rodriguez@opensuse.org diff --git a/doxygen.spec b/doxygen.spec index d287b30..27548f7 100644 --- a/doxygen.spec +++ b/doxygen.spec @@ -1,5 +1,5 @@ # -# spec file for package doxygen (Version 1.7.1) +# spec file for package doxygen (Version 1.7.2) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -20,8 +20,8 @@ Name: doxygen BuildRequires: bison flex gcc-c++ libpng-devel -Version: 1.7.1 -Release: 3 +Version: 1.7.2 +Release: 1 AutoReqProv: on License: GPLv2+ Group: Development/Tools/Doc Generators diff --git a/doxygen_manual-1.7.1.pdf.bz2 b/doxygen_manual-1.7.1.pdf.bz2 deleted file mode 100644 index 0dfe888..0000000 --- a/doxygen_manual-1.7.1.pdf.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b683aa99485528c36d5b907d89ea5932aa084e246c3517e61cd8af60235c8879 -size 671936 diff --git a/doxygen_manual-1.7.2.pdf.bz2 b/doxygen_manual-1.7.2.pdf.bz2 new file mode 100644 index 0000000..290b627 --- /dev/null +++ b/doxygen_manual-1.7.2.pdf.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cefc61f28640174d656e374d51499c0ebce6fbd73e3025601645f23b83bd8cbf +size 686870 diff --git a/doxywizard.changes b/doxywizard.changes index 47f35c5..9a32879 100644 --- a/doxywizard.changes +++ b/doxywizard.changes @@ -1,3 +1,27 @@ +------------------------------------------------------------------- +Mon Oct 11 13:43:48 UTC 2010 - pgajdos@novell.com + +- updated to 1.7.2: + * Changed the default font of the LaTeX output to helvetica. + * Changed the way parameters and return values are represented + in the LaTeX and RTF output. They are now listed using tables. + * added support for Apple's block object extension for C/Obj-C/C++. + * added support for detecting Python constructors and destructors. + * id 624575: Added \endinternal command that can be used to force + the end of a section started with \internal. + * id 552605: Added parsing support for PHP 5.3+ style namespaces. + * id 582532: added \mscfile command which can be used to insert a + message sequence chart given a .msc file. Also added a new + config option MSCFILE_DIRS to provide directories were msc + files are searched (Thanks to Adrien for the patch). + * Added support for type specifiers for documenting PHP + parameters, format: "@param type $paramname docs" + * Added support for rendering formulas in the HTML output using + MathJax instead of using prerendered bitmaps. For this purpose + the options USE_MATHJAX and MATHJAX_RELPATH were added. + * Many bugfixes. + * For details see http://www.stack.nl/~dimitri/doxygen/changelog.html. + ------------------------------------------------------------------- Fri Jun 25 18:52:36 UTC 2010 - pascal.bleser@opensuse.org diff --git a/doxywizard.spec b/doxywizard.spec index 14986f4..84c9333 100644 --- a/doxywizard.spec +++ b/doxywizard.spec @@ -1,5 +1,5 @@ # -# spec file for package doxywizard (Version 1.7.1) +# spec file for package doxywizard (Version 1.7.2) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -20,8 +20,8 @@ Name: doxywizard BuildRequires: bison flex gcc-c++ libdrm-devel libjpeg-devel -Version: 1.7.1 -Release: 3 +Version: 1.7.2 +Release: 1 AutoReqProv: on Requires: doxygen = %{version} License: GPLv2+