From 1a8df8c24a7ae99320d846e09dac08778ee061b58e4e24ee5d904db36a14adf8 Mon Sep 17 00:00:00 2001 From: Petr Gajdos Date: Mon, 27 Feb 2012 09:54:11 +0000 Subject: [PATCH] - updated to 1.8.0: * Auto list items can now consist of multiple paragraphs. * When UML_LOOK is enabled, relations shown on the edge of a graph are not shown as attributes. * Updated the manual and improved the look. * Latex: made the margins of latex page layout smaller using the geometry package. * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html - updated to 1.8.0: * Auto list items can now consist of multiple paragraphs. * When UML_LOOK is enabled, relations shown on the edge of a graph are not shown as attributes. * Updated the manual and improved the look. * Latex: made the margins of latex page layout smaller using the geometry package. * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=45 --- doxygen-1.7.0-warnings.patch | 25 ++++--------------------- doxygen-1.7.6.1-html.tar.bz2 | 3 --- doxygen-1.7.6.1.src.tar.bz2 | 3 --- doxygen-1.8.0-html.tar.bz2 | 3 +++ doxygen-1.8.0.src.tar.bz2 | 3 +++ doxygen.changes | 12 ++++++++++++ doxygen.spec | 5 ++--- doxygen_manual-1.7.6.1.pdf.bz2 | 3 --- doxygen_manual-1.8.0.pdf.bz2 | 3 +++ doxywizard.changes | 12 ++++++++++++ doxywizard.spec | 4 ++-- 11 files changed, 41 insertions(+), 35 deletions(-) delete mode 100644 doxygen-1.7.6.1-html.tar.bz2 delete mode 100644 doxygen-1.7.6.1.src.tar.bz2 create mode 100644 doxygen-1.8.0-html.tar.bz2 create mode 100644 doxygen-1.8.0.src.tar.bz2 delete mode 100644 doxygen_manual-1.7.6.1.pdf.bz2 create mode 100644 doxygen_manual-1.8.0.pdf.bz2 diff --git a/doxygen-1.7.0-warnings.patch b/doxygen-1.7.0-warnings.patch index 377c8b8..67e1647 100644 --- a/doxygen-1.7.0-warnings.patch +++ b/doxygen-1.7.0-warnings.patch @@ -2,29 +2,12 @@ Index: src/util.cpp =================================================================== --- src/util.cpp.orig +++ src/util.cpp -@@ -4807,9 +4807,9 @@ QCString escapeCharsInString(const char - static bool caseSenseNames = Config_getBool("CASE_SENSE_NAMES"); - static StrBuf strBuf; - strBuf.clear(); -- char c; -+ unsigned char c; - const char *p=name; -- while ((c=*p++)!=0) -+ while ((c=(unsigned char)*p++)!=0) - { - switch(c) - { -@@ -4837,11 +4837,11 @@ QCString escapeCharsInString(const char - case '=': strBuf.addStr("_0A"); break; - case '$': strBuf.addStr("_0B"); break; +@@ -4834,7 +4834,7 @@ QCString escapeCharsInString(const char + case '=': growBuf.addStr("_0A"); break; + case '$': growBuf.addStr("_0B"); break; default: - if (c<0) -+ if (c>0x7f) ++ if ((unsigned char)c>0x7f) { static char map[] = "0123456789ABCDEF"; char ids[5]; -- unsigned char id = (unsigned char)c; -+ unsigned char id = c; - ids[0]='_'; - ids[1]='x'; - ids[2]=map[id>>4]; diff --git a/doxygen-1.7.6.1-html.tar.bz2 b/doxygen-1.7.6.1-html.tar.bz2 deleted file mode 100644 index 390a183..0000000 --- a/doxygen-1.7.6.1-html.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c74c9aaadaeba40b3a9e654ffa35d8cdb96d5cba724d5baf91b294d516f94142 -size 516059 diff --git a/doxygen-1.7.6.1.src.tar.bz2 b/doxygen-1.7.6.1.src.tar.bz2 deleted file mode 100644 index 3ee3991..0000000 --- a/doxygen-1.7.6.1.src.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6d2e3ad53b686212246b404c8f3340edf6803ffcf370ba66f5f1c453d69fab3 -size 4011253 diff --git a/doxygen-1.8.0-html.tar.bz2 b/doxygen-1.8.0-html.tar.bz2 new file mode 100644 index 0000000..2ba469d --- /dev/null +++ b/doxygen-1.8.0-html.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17f4275fc9469d832e402d8841c13bc40ea9fa455e85117a5c92ad8dddc02ea5 +size 622335 diff --git a/doxygen-1.8.0.src.tar.bz2 b/doxygen-1.8.0.src.tar.bz2 new file mode 100644 index 0000000..435d800 --- /dev/null +++ b/doxygen-1.8.0.src.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897836ac503b2e34d389121b4c3ed25e734dc93f5d4b8b39c92edf6b9ed3cfca +size 4880039 diff --git a/doxygen.changes b/doxygen.changes index 0c8c83e..e5a4e9f 100644 --- a/doxygen.changes +++ b/doxygen.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Mon Feb 27 09:47:59 UTC 2012 - pgajdos@suse.com + +- updated to 1.8.0: + * Auto list items can now consist of multiple paragraphs. + * When UML_LOOK is enabled, relations shown on the edge of a + graph are not shown as attributes. + * Updated the manual and improved the look. + * Latex: made the margins of latex page layout smaller using the + geometry package. + * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html + ------------------------------------------------------------------- Mon Dec 12 08:59:26 UTC 2011 - pgajdos@suse.com diff --git a/doxygen.spec b/doxygen.spec index a9e9d89..5675368 100644 --- a/doxygen.spec +++ b/doxygen.spec @@ -1,7 +1,7 @@ # # spec file for package doxygen # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ Name: doxygen BuildRequires: bison flex gcc-c++ libpng-devel -Version: 1.7.6.1 +Version: 1.8.0 Release: 1 License: GPL-2.0+ Group: Development/Tools/Doc Generators @@ -92,7 +92,6 @@ cp doxygen_manual-%{version}.pdf $RPM_BUILD_ROOT%{_docdir}/doxygen %defattr(-,root,root) %doc %{_docdir}/doxygen %attr(444,root,root) %doc %{_mandir}/man1/doxygen.1.%{man_ext} -%attr(444,root,root) %doc %{_mandir}/man1/doxytag.1.%{man_ext} %attr(755,root,root) /usr/bin/* %changelog diff --git a/doxygen_manual-1.7.6.1.pdf.bz2 b/doxygen_manual-1.7.6.1.pdf.bz2 deleted file mode 100644 index a7b097b..0000000 --- a/doxygen_manual-1.7.6.1.pdf.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:19059d27a00da7ccb8178924c18c25cae73996da2d5989e840a92caaf2acb663 -size 757324 diff --git a/doxygen_manual-1.8.0.pdf.bz2 b/doxygen_manual-1.8.0.pdf.bz2 new file mode 100644 index 0000000..3174dc8 --- /dev/null +++ b/doxygen_manual-1.8.0.pdf.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:205ddef9e041e86f698236bfbff2f7b26720c500db11bda69755b966c81e780a +size 689577 diff --git a/doxywizard.changes b/doxywizard.changes index 8fdaca7..923cb2a 100644 --- a/doxywizard.changes +++ b/doxywizard.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Mon Feb 27 09:51:17 UTC 2012 - pgajdos@suse.com + +- updated to 1.8.0: + * Auto list items can now consist of multiple paragraphs. + * When UML_LOOK is enabled, relations shown on the edge of a + graph are not shown as attributes. + * Updated the manual and improved the look. + * Latex: made the margins of latex page layout smaller using the + geometry package. + * etc., see http://www.stack.nl/~dimitri/doxygen/changelog.html + ------------------------------------------------------------------- Mon Dec 5 09:44:06 UTC 2011 - pgajdos@suse.com diff --git a/doxywizard.spec b/doxywizard.spec index 79d60cf..6bce2c3 100644 --- a/doxywizard.spec +++ b/doxywizard.spec @@ -1,7 +1,7 @@ # # spec file for package doxywizard # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ Name: doxywizard BuildRequires: bison flex gcc-c++ libjpeg-devel -Version: 1.7.6.1 +Version: 1.8.0 Release: 1 Requires: doxygen = %{version} License: GPL-2.0+