commit doxygen for openSUSE:Factory

2020-10-15 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2020-10-15 13:46:39

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.3486 (New)


Package is "doxygen"

Thu Oct 15 13:46:39 2020 rev:81 rq:841450 version:1.8.20

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2020-10-08 
13:07:50.878936882 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new.3486/doxygen.changes
2020-10-15 13:46:52.821211092 +0200
@@ -1,0 +2,10 @@
+Mon Oct 12 15:55:24 UTC 2020 - Franz Sirl 
+
+- Use gcc9 for building on SLE_15 based distributions to workaround
+  gcc7 bug PR85180.
+- Adjust building with libclang support for doxygen-1.8.20.
+  - doxygen-llvm-libs.patch
+  - doxygen-libclang-cpp.patch
+  + doxygen-no-libclang-cpp.patch
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2020-09-24 
16:13:11.208835174 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new.3486/doxywizard.changes 
2020-10-15 13:46:57.813213117 +0200
@@ -1,0 +2,9 @@
+Mon Oct 12 15:51:33 UTC 2020 - Franz Sirl 
+
+- Use gcc9 for building on SLE_15 based distributions to workaround
+  gcc7 bug PR85180.
+  - doxygen-llvm-libs.patch
+  - doxygen-libclang-cpp.patch
+  + doxygen-no-libclang-cpp.patch
+
+---

Old:

  doxygen-libclang-cpp.patch
  doxygen-llvm-libs.patch

New:

  doxygen-no-libclang-cpp.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.5lODHY/_old  2020-10-15 13:46:58.981213606 +0200
+++ /var/tmp/diff_new_pack.5lODHY/_new  2020-10-15 13:46:58.981213606 +0200
@@ -16,8 +16,11 @@
 #
 
 
+%if 0%{?sle_version} >= 150100
 # build with "--with libclang" to enable libclang support
 %bcond_with libclang
+%endif
+
 Name:   doxygen
 Version:1.8.20
 Release:0
@@ -33,14 +36,17 @@
 Patch1: %{name}-no-lowercase-man-names.patch
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
-Patch6: doxygen-llvm-libs.patch
-Patch10:doxygen-libclang-cpp.patch
+Patch10:doxygen-no-libclang-cpp.patch
 # PATCH-FIX-UPSTREAM
 Patch11:0001-issue-7979-C++-enums-being-defined-in-multiple-files.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
+%if 0%{?suse_version} <= 1500
+BuildRequires:  gcc9-c++
+%else
 BuildRequires:  gcc-c++
+%endif
 BuildRequires:  python3-base
 BuildRequires:  python3-xml
 # Do not bother building documentation with latex since it is present on the
@@ -64,10 +70,7 @@
 %patch1 -p1
 %patch3 -p1
 %if %{with libclang}
-%patch6
-%endif
-%if %{with libclang}
-%if 0%{?suse_version} > 1500 || 0%{?sle_version} >= 150200
+%if 0%{?sle_version} == 150100 || (0%{?sle_version} == 150200 && 
!0%{?is_opensuse})
 %patch10 -p1
 %endif
 %endif
@@ -82,6 +85,10 @@
 %if %{with libclang}
 -Duse_libclang=ON \
 %endif
+%if 0%{?suse_version} <= 1500
+-DCMAKE_C_COMPILER=gcc-9 \
+-DCMAKE_CXX_COMPILER=g++-9 \
+%endif
 -DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
 -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
 -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.5lODHY/_old  2020-10-15 13:46:59.001213614 +0200
+++ /var/tmp/diff_new_pack.5lODHY/_new  2020-10-15 13:46:59.001213614 +0200
@@ -31,7 +31,11 @@
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
+%if 0%{?suse_version} <= 1500
+BuildRequires:  gcc9-c++
+%else
 BuildRequires:  gcc-c++
+%endif
 BuildRequires:  libjpeg-devel
 BuildRequires:  pkgconfig
 BuildRequires:  python3-base
@@ -61,6 +65,10 @@
 export CXXFLAGS="%{optflags} -fPIC"
 %cmake \
 -Dbuild_wizard=ON \
+%if 0%{?suse_version} <= 1500
+-DCMAKE_C_COMPILER=gcc-9 \
+-DCMAKE_CXX_COMPILER=g++-9 \
+%endif
 -DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
 -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
 -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \

++ doxygen-no-libclang-cpp.patch ++
--- doxygen-1.8.20/src/CMakeLists.txt.orig  2020-10-06 15:56:02.841527965 
+0200
+++ doxygen-1.8.20/src/CMakeLists.txt   2020-10-06 16:07:14.226206979 +0200
@@ -341,7 +341,7 @@
 set(CLANG_LIBS libclang clangTooling)
 else() # dynamically linked version of clang
 llvm_config(doxymain USE_SHARED support)
-set(CLANG_LIBS libclang clang-cpp)
+set(CLANG_LIBS libclang clangTooling)
 endif()
 

commit doxygen for openSUSE:Factory

2020-10-08 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2020-10-08 13:06:52

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.4249 (New)


Package is "doxygen"

Thu Oct  8 13:06:52 2020 rev:80 rq:839059 version:1.8.20

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2020-09-24 
16:13:10.736834702 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new.4249/doxygen.changes
2020-10-08 13:07:50.878936882 +0200
@@ -1,0 +2,6 @@
+Fri Oct  2 00:59:49 UTC 2020 - Stefan Brüns 
+
+- Fix anonymous enums from multiple files being squashed together:
+  Add 0001-issue-7979-C++-enums-being-defined-in-multiple-files.patch
+
+---

New:

  0001-issue-7979-C++-enums-being-defined-in-multiple-files.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.hSzukL/_old  2020-10-08 13:07:52.498938349 +0200
+++ /var/tmp/diff_new_pack.hSzukL/_new  2020-10-08 13:07:52.498938349 +0200
@@ -35,6 +35,8 @@
 Patch3: vhdlparser-no-return.patch
 Patch6: doxygen-llvm-libs.patch
 Patch10:doxygen-libclang-cpp.patch
+# PATCH-FIX-UPSTREAM
+Patch11:0001-issue-7979-C++-enums-being-defined-in-multiple-files.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -69,6 +71,7 @@
 %patch10 -p1
 %endif
 %endif
+%patch11 -p1
 
 %build
 %cmake \

++ 0001-issue-7979-C++-enums-being-defined-in-multiple-files.patch ++
>From 9d9d08582ccea7ef9acebfd09f8c8acc577a Mon Sep 17 00:00:00 2001
From: Dimitri van Heesch 
Date: Fri, 28 Aug 2020 20:22:46 +0200
Subject: [PATCH] issue #7979: C++ enums being defined in multiple files after
 b265433 (multi-thread input processing)

---
 src/scanner.l | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/scanner.l b/src/scanner.l
index 7c710fa43..70f15d65c 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -60,6 +60,9 @@
 
 #define USE_STATE2STRING 0
 
+static AtomicInt  anonCount;
+static AtomicInt  anonNSCount;
+
 struct scannerYY_state
 {
   OutlineParserInterface *thisParser;
@@ -105,8 +108,6 @@ struct scannerYY_state
   int  yyBegLineNr  = 1 ;
   int  yyColNr  = 1 ;
   int  yyBegColNr   = 1 ;
-  int  anonCount= 0 ;
-  int  anonNSCount  = 0 ;
   QCString yyFileName;
   MethodTypes  mtype = Method;
   bool stat = false;
@@ -3784,7 +3785,7 @@ OPERATOR  
"operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
  BEGIN(MemberSpecSkip); 
}
 ";"   { /* typedef of anonymous type */
- 
yyextra->current->name.sprintf("@%d",yyextra->anonCount++);
+ 
yyextra->current->name.sprintf("@%d",anonCount++);
  if ((yyextra->current->section == 
Entry::ENUM_SEC) || (yyextra->current->spec::Enum))
  {
yyextra->current->program+=','; // 
add field terminator
@@ -3859,7 +3860,7 @@ OPERATOR  
"operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
{
  // anonymous compound 
yyextra->inside -> insert dummy variable name
  //printf("Adding anonymous 
variable for scope %s\n",p->name.data());
- 
yyextra->msName.sprintf("@%d",yyextra->anonCount++); 
+ 
yyextra->msName.sprintf("@%d",anonCount++); 
  break;
}
  }
@@ -5644,12 +5645,12 @@ OPERATOR  
"operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
  }
  else // use invisible name
  {
-   
yyextra->current->name.sprintf("@%d",yyextra->anonNSCount);
+   
yyextra->current->name.sprintf("@%d",anonNSCount.load());
  }
}
else
{
- 

commit doxygen for openSUSE:Factory

2020-09-24 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2020-09-24 16:12:35

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.4249 (New)


Package is "doxygen"

Thu Sep 24 16:12:35 2020 rev:79 rq:835773 version:1.8.20

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2020-07-13 
09:05:02.120018468 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new.4249/doxygen.changes
2020-09-24 16:13:10.736834702 +0200
@@ -1,0 +2,17 @@
+Sun Sep 20 15:49:59 UTC 2020 - Andreas Stieger 
+
+- doxygen 1.8.20:
+  * Add configuration setting to have docstrings net as pre-
+formatted text but as normal documentation
+  * bug fixes
+- includes changes from 1.8.19:
+  * Add experimental multi-thread input processing support
+  * Add the xml:lang tag to XML and Docbook output
+  * Scalable search bar for high resolution displays
+  * Add doxygen version information to tag file
+  * Add options to enable various sanitizers
+  * Add configuration option to better control the sqlite3 output
+  * Improve using plantuml for vhfl flowcharts
+  * bug fixes
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2020-07-13 
09:05:03.160021082 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new.4249/doxywizard.changes 
2020-09-24 16:13:11.208835174 +0200
@@ -1,0 +2,9 @@
+Sun Sep 20 15:49:59 UTC 2020 - Andreas Stieger 
+
+- doxygen 1.8.20:
+  * bug fixes
+- includes changes from 1.8.19:
+  * show doxywizard version by means of --version
+  * bug fixes
+
+---

Old:

  doxygen-1.8.18.src.tar.gz

New:

  doxygen-1.8.20.src.tar.gz



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.j1ZE8j/_old  2020-09-24 16:13:12.744836711 +0200
+++ /var/tmp/diff_new_pack.j1ZE8j/_new  2020-09-24 16:13:12.744836711 +0200
@@ -19,13 +19,13 @@
 # build with "--with libclang" to enable libclang support
 %bcond_with libclang
 Name:   doxygen
-Version:1.8.18
+Version:1.8.20
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 # qtools are used for building and they are GPL-3.0 licensed
 License:GPL-2.0-or-later AND GPL-3.0-only
 Group:  Development/Tools/Doc Generators
-URL:http://www.doxygen.nl/
+URL:https://www.doxygen.nl/
 Source0:http://doxygen.nl/files/doxygen-%{version}.src.tar.gz
 # suse specific
 Patch0: %{name}-modify_footer.patch

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.j1ZE8j/_old  2020-09-24 16:13:12.772836738 +0200
+++ /var/tmp/diff_new_pack.j1ZE8j/_new  2020-09-24 16:13:12.776836743 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   doxywizard
-Version:1.8.18
+Version:1.8.20
 Release:0
 Summary:Graphical User Interface for Doxygen
 # qtools are used for building and they are GPL-3.0 licensed
 License:GPL-2.0-or-later AND GPL-3.0-only
 Group:  Development/Tools/Doc Generators
-URL:http://www.doxygen.nl/
+URL:https://www.doxygen.nl/
 Source: http://doxygen.nl/files/doxygen-%{version}.src.tar.gz
 Source1:doxywizard.desktop
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
@@ -86,6 +86,6 @@
 %files
 %attr(755,root,root) %{_bindir}/doxywizard
 %{_datadir}/applications/doxywizard.desktop
-%{_mandir}/man1/doxywizard.1%{ext_man}
+%{_mandir}/man1/doxywizard.1%{?ext_man}
 
 %changelog

++ doxygen-1.8.18.src.tar.gz -> doxygen-1.8.20.src.tar.gz ++
 56576 lines of diff (skipped)

++ vhdlparser-no-return.patch ++
--- /var/tmp/diff_new_pack.j1ZE8j/_old  2020-09-24 16:13:13.484837451 +0200
+++ /var/tmp/diff_new_pack.j1ZE8j/_new  2020-09-24 16:13:13.484837451 +0200
@@ -1,7 +1,7 @@
-Index: doxygen-1.8.18/vhdlparser/VhdlParser.cc
+Index: doxygen-1.8.20/vhdlparser/VhdlParser.cc
 ===
 doxygen-1.8.18.orig/vhdlparser/VhdlParser.cc   2020-07-10 
09:16:16.163910205 +0200
-+++ doxygen-1.8.18/vhdlparser/VhdlParser.cc2020-07-10 09:21:27.033679741 
+0200
+--- doxygen-1.8.20.orig/vhdlparser/VhdlParser.cc
 doxygen-1.8.20/vhdlparser/VhdlParser.cc
 @@ -56,6 +56,7 @@ return tok->image.c_str();
errorHandler->handleParseError(token, getToken(1), __FUNCTION__, this), 
hasError = true;
  }
@@ -930,7 +930,7 @@
  }
  
  
-@@ -7065,6 +7181,7 @@ s+="(";s+=s1;s+=")";
+@@ -7047,6 +7163,7 @@ s+="(";s+=s1;s+=")";
  }
  return s;
  assert(false);
@@ -938,7 +938,7 @@
  }
  
  
-@@ -7094,6 +7211,7 @@ return s;
+@@ -7076,6 

commit doxygen for openSUSE:Factory

2020-07-13 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2020-07-13 09:04:44

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.3060 (New)


Package is "doxygen"

Mon Jul 13 09:04:44 2020 rev:78 rq:819899 version:1.8.18

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2020-01-27 
00:20:23.193401202 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.3060/doxygen.changes
2020-07-13 09:05:02.120018468 +0200
@@ -1,0 +2,39 @@
+Fri Jul 10 07:34:45 UTC 2020 - pgaj...@suse.com
+
+- version update to 1.8.18
+  Removed functionality
+* Removed support for TCL (code is too buggy and unmaintained, language 
not very popular)
+  Features
+* Added the few missing French translations [view]
+* Updated Swedish translation to match the latest version [view]
+* Adding check on configuration setting EXTENSION_MAPPING [view]
+* Adding commands `\rtfinclude`, `\docbookinclude`, `\maninclude` and 
`\xmlinclude` [view]
+* output on doxyparse if a function is a prototype [view]
+* print protection information on doxyparse [view]
+* Creation of svg images for formulas with inkscape [view]
+* Improve formula handling and rendering. [view]
+* Doxygen version in the messages output (#7640) [view]
+* Doxygen version information (#7645) [view]
+* Enabling Travis builds for s390x [view]
+* Relative markdown file reference (#7032) [view]
+  Bugs fixed
+* see https://www.doxygen.nl/manual/changelog.html
+- modified patches
+  % doxygen-no-lowercase-man-names.patch (refreshed)
+  % vhdlparser-no-return.patch (refreshed)
+- deleted patches
+  - 0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch 
(upstreamed)
+  - PR_7193_fix_blank_file_patterns.patch (upstreamed)
+  - doxygen-64f1f2357ae764f2c8190d067aff801bc0a56721.patch (upstreamed)
+  - doxygen-git-not-required.patch (upstreamed)
+  - reproducible-sort.patch (upstreamed)
+
+---
+Wed Jul  8 07:53:57 UTC 2020 - Franz Sirl 
+
+- Improve build with libclang support:
+  * add doxygen-libclang-cpp.patch to support linking against libclang-cpp
+  * add upstream doxygen-64f1f2357ae764f2c8190d067aff801bc0a56721.patch
+to support clang-10
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2020-01-12 
23:18:42.926690336 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.3060/doxywizard.changes 
2020-07-13 09:05:03.160021082 +0200
@@ -1,0 +2,31 @@
+Fri Jul 10 07:34:45 UTC 2020 - pgaj...@suse.com
+
+- version update to 1.8.18
+  Removed functionality
+* Removed support for TCL (code is too buggy and unmaintained, language 
not very popular)
+  Features
+* Added the few missing French translations [view]
+* Updated Swedish translation to match the latest version [view]
+* Adding check on configuration setting EXTENSION_MAPPING [view]
+* Adding commands `\rtfinclude`, `\docbookinclude`, `\maninclude` and 
`\xmlinclude` [view]
+* output on doxyparse if a function is a prototype [view]
+* print protection information on doxyparse [view]
+* Creation of svg images for formulas with inkscape [view]
+* Improve formula handling and rendering. [view]
+* Doxygen version in the messages output (#7640) [view]
+* Doxygen version information (#7645) [view]
+* Enabling Travis builds for s390x [view]
+* Relative markdown file reference (#7032) [view]
+  Bugs fixed
+* see https://www.doxygen.nl/manual/changelog.html
+- modified patches
+  % doxygen-no-lowercase-man-names.patch (refreshed)
+  % vhdlparser-no-return.patch (refreshed)
+- deleted patches
+  - 0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch 
(upstreamed)
+  - PR_7193_fix_blank_file_patterns.patch (upstreamed)
+  - doxygen-64f1f2357ae764f2c8190d067aff801bc0a56721.patch (upstreamed)
+  - doxygen-git-not-required.patch (upstreamed)
+  - reproducible-sort.patch (upstreamed)
+
+---

Old:

  0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch
  PR_7193_fix_blank_file_patterns.patch
  doxygen-1.8.16.src.tar.gz
  doxygen-git-not-required.patch
  reproducible-sort.patch

New:

  doxygen-1.8.18.src.tar.gz
  doxygen-libclang-cpp.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.r3fN4w/_old  2020-07-13 09:05:04.168023616 +0200
+++ /var/tmp/diff_new_pack.r3fN4w/_new  2020-07-13 09:05:04.172023626 +0200
@@ -19,7 +19,7 @@
 # build with "--with libclang" to enable libclang support
 %bcond_with libclang
 

commit doxygen for openSUSE:Factory

2020-01-26 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2020-01-27 00:20:20

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.26092 (New)


Package is "doxygen"

Mon Jan 27 00:20:20 2020 rev:77 rq:766491 version:1.8.16

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2020-01-12 
23:18:40.258689350 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.26092/doxygen.changes   
2020-01-27 00:20:23.193401202 +0100
@@ -1,0 +2,6 @@
+Wed Jan 22 17:31:41 UTC 2020 - Bernhard Wiedemann 
+
+- Add reproducible-sort.patch to make html output reproducible
+  in spite of ASLR (boo#1062303)
+
+---

New:

  reproducible-sort.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.M1JRwh/_old  2020-01-27 00:20:25.881403496 +0100
+++ /var/tmp/diff_new_pack.M1JRwh/_new  2020-01-27 00:20:25.885403500 +0100
@@ -40,6 +40,7 @@
 Patch7: PR_7193_fix_blank_file_patterns.patch
 # PATCH-FIX-UPSTREAM Including external tag files with TOC produces a broken 
index.qhp
 Patch8: 0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch
+Patch9: reproducible-sort.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -72,6 +73,7 @@
 %endif
 %patch7 -p1
 %patch8 -p1
+%patch9 -p1
 
 %build
 %cmake \

++ reproducible-sort.patch ++
>From dc67dbe5bd5a48756c591ad02b9f68fbd2a57687 Mon Sep 17 00:00:00 2001
From: Dimitri van Heesch 
Date: Sun, 19 Jan 2020 20:31:52 +0100
Subject: [PATCH] issue #7474: [1.8.16 regression] HTML output varies from ASLR

---
 src/memberlist.cpp | 11 +--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/src/memberlist.cpp b/src/memberlist.cpp
index 278023bb6..edd164bec 100644
--- a/src/memberlist.cpp
+++ b/src/memberlist.cpp
@@ -75,8 +75,15 @@ int MemberList::compareValues(const MemberDef *c1, const 
MemberDef *c2) const
   return 1;
   }
   int cmp = qstricmp(c1->name(),c2->name());
-  if (cmp==0) cmp = qstricmp(c1->argsString(),c2->argsString());
-  return cmp!=0 ? cmp : c1->getDefLine()-c2->getDefLine();
+  if (cmp==0 && c1->argsString() && c2->argsString())
+  {
+cmp = qstricmp(c1->argsString(),c2->argsString());
+  }
+  if (cmp==0)
+  {
+cmp = c1->getDefLine()-c2->getDefLine();
+  }
+  return cmp;
 }
 
 int MemberList::countInheritableMembers(const ClassDef *inheritedFrom) const



commit doxygen for openSUSE:Factory

2020-01-12 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2020-01-12 23:18:08

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.6675 (New)


Package is "doxygen"

Sun Jan 12 23:18:08 2020 rev:76 rq:762643 version:1.8.16

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2019-12-07 
15:20:10.475755495 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.6675/doxygen.changes
2020-01-12 23:18:40.258689350 +0100
@@ -1,0 +2,11 @@
+Fri Jan 10 09:14:20 UTC 2020 - Martin Pluskal 
+
+- Use modern cmake macros
+
+---
+Thu Jan  9 21:13:50 UTC 2020 - Christophe Giboudeaux 
+
+- Add upstream patch 
0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch
+  (boo#1160629)
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2019-12-07 
15:20:11.403755367 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.6675/doxywizard.changes 
2020-01-12 23:18:42.926690336 +0100
@@ -1,0 +2,5 @@
+Fri Jan 10 09:14:32 UTC 2020 - Martin Pluskal 
+
+- Use modern cmake macros
+
+---

New:

  0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.75bRtO/_old  2020-01-12 23:18:45.382691245 +0100
+++ /var/tmp/diff_new_pack.75bRtO/_new  2020-01-12 23:18:45.386691246 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,6 @@
 
 # build with "--with libclang" to enable libclang support
 %bcond_with libclang
-
 Name:   doxygen
 Version:1.8.16
 Release:0
@@ -26,7 +25,7 @@
 # qtools are used for building and they are GPL-3.0 licensed
 License:GPL-2.0-or-later AND GPL-3.0-only
 Group:  Development/Tools/Doc Generators
-Url:http://www.doxygen.nl/
+URL:http://www.doxygen.nl/
 Source0:http://doxygen.nl/files/doxygen-%{version}.src.tar.gz
 # suse specific
 Patch0: %{name}-modify_footer.patch
@@ -39,18 +38,20 @@
 Patch6: doxygen-llvm-libs.patch
 # PATCH-FIX-UPSTREAM: Populate FILE_PATTERN default if not set (issue#7190)
 Patch7: PR_7193_fix_blank_file_patterns.patch
+# PATCH-FIX-UPSTREAM Including external tag files with TOC produces a broken 
index.qhp
+Patch8: 0001-issue-7248-Including-external-tag-files-with-TOC-pro.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  python3-base
 BuildRequires:  python3-xml
-%if %{with libclang}
-BuildRequires:  llvm-clang-devel
-%endif
 # Do not bother building documentation with latex since it is present on the
 # web trivialy for all versions of doxygen
 Obsoletes:  doxygen-doc
+%if %{with libclang}
+BuildRequires:  llvm-clang-devel
+%endif
 
 %description
 Doxygen is a documentation system for C, C++, Java, and IDL. It can
@@ -70,6 +71,7 @@
 %patch6
 %endif
 %patch7 -p1
+%patch8 -p1
 
 %build
 %cmake \
@@ -85,7 +87,7 @@
 -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
 -DBUILD_SHARED_LIBS=OFF \
 -DBUILD_STATIC_LIBS=ON
-%make_jobs
+%cmake_build
 
 %install
 %cmake_install

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.75bRtO/_old  2020-01-12 23:18:45.402691252 +0100
+++ /var/tmp/diff_new_pack.75bRtO/_new  2020-01-12 23:18:45.402691252 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxywizard
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 # qtools are used for building and they are GPL-3.0 licensed
 License:GPL-2.0-or-later AND GPL-3.0-only
 Group:  Development/Tools/Doc Generators
-Url:http://www.doxygen.nl/
+URL:http://www.doxygen.nl/
 Source: http://doxygen.nl/files/doxygen-%{version}.src.tar.gz
 Source1:doxywizard.desktop
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
@@ -35,14 +35,15 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
+BuildRequires:  pkgconfig
 BuildRequires:  python3-base
 BuildRequires:  python3-xml
 BuildRequires:  

commit doxygen for openSUSE:Factory

2019-12-07 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2019-12-07 15:16:31

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.4691 (New)


Package is "doxygen"

Sat Dec  7 15:16:31 2019 rev:75 rq:746480 version:1.8.16

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2019-01-15 
13:16:24.880355901 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.4691/doxygen.changes
2019-12-07 15:20:10.475755495 +0100
@@ -1,0 +2,32 @@
+Thu Nov  7 21:07:47 UTC 2019 - Stefan Brüns 
+
+- Add PR_7193_fix_blank_file_patterns.patch to populate the
+  default for FILE_PATTERNS if not set, otherwise no files are
+  processed [https://github.com/doxygen/doxygen/issues/7190]
+- Remove obsolete and no longer applying patch:
+  doxygen-dot-one-thread.patch
+
+---
+Mon Sep 30 13:06:06 UTC 2019 - Franz Sirl 
+
+- Optional build with libclang support:
+  * add doxygen-llvm-libs.patch to link with monolithic libLLVM
+  * support "--with libclang" in specfile
+
+---
+Mon Sep 30 11:13:23 UTC 2019 - pgaj...@suse.com
+
+- version update to 1.8.16
+  - many bugs fixed
+  - many features implemented
+  - http://www.doxygen.nl/manual/changelog.html
+- modified patches
+  % doxygen-modify_footer.patch (refreshed)
+- deleted patches
+  - doxygen-empty-strings-segfault.patch (upstreamed)
+  - doxygen-latex-makeindex.patch (upstreamed)
+- added patches
+  really do not require git executable
+  + doxygen-git-not-required.patch
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2019-01-15 
13:16:24.920355869 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.4691/doxywizard.changes 
2019-12-07 15:20:11.403755367 +0100
@@ -1,0 +2,15 @@
+Mon Sep 30 11:13:23 UTC 2019 - pgaj...@suse.com
+
+- version update to 1.8.16
+  - many bugs fixed
+  - many features implemented
+  - http://www.doxygen.nl/manual/changelog.html
+- modified patches
+  % doxygen-modify_footer.patch (refreshed)
+- deleted patches
+  - doxygen-empty-strings-segfault.patch (upstreamed)
+  - doxygen-latex-makeindex.patch (upstreamed)
+- added patches
+  really do not require git executable
+  + doxygen-git-not-required.patch
+---

Old:

  doxygen-1.8.15.src.tar.gz
  doxygen-dot-one-thread.patch
  doxygen-empty-strings-segfault.patch
  doxygen-latex-makeindex.patch

New:

  PR_7193_fix_blank_file_patterns.patch
  doxygen-1.8.16.src.tar.gz
  doxygen-git-not-required.patch
  doxygen-llvm-libs.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.cqt0Kg/_old  2019-12-07 15:20:12.375755232 +0100
+++ /var/tmp/diff_new_pack.cqt0Kg/_new  2019-12-07 15:20:12.375755232 +0100
@@ -16,8 +16,11 @@
 #
 
 
+# build with "--with libclang" to enable libclang support
+%bcond_with libclang
+
 Name:   doxygen
-Version:1.8.15
+Version:1.8.16
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 # qtools are used for building and they are GPL-3.0 licensed
@@ -31,18 +34,20 @@
 Patch1: %{name}-no-lowercase-man-names.patch
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
-# suse specific, for ppc64le ppc64, workaround for bnc#921577
-Patch4: doxygen-dot-one-thread.patch
-# https://github.com/doxygen/doxygen/issues/6725
-Patch5: doxygen-latex-makeindex.patch
-# https://github.com/doxygen/doxygen/issues/6749
-Patch6: doxygen-empty-strings-segfault.patch
+# really do not require git executable
+Patch5: doxygen-git-not-required.patch
+Patch6: doxygen-llvm-libs.patch
+# PATCH-FIX-UPSTREAM: Populate FILE_PATTERN default if not set (issue#7190)
+Patch7: PR_7193_fix_blank_file_patterns.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  python3-base
 BuildRequires:  python3-xml
+%if %{with libclang}
+BuildRequires:  llvm-clang-devel
+%endif
 # Do not bother building documentation with latex since it is present on the
 # web trivialy for all versions of doxygen
 Obsoletes:  doxygen-doc
@@ -57,14 +62,14 @@
 
 %prep
 %setup -q
-%patch0
+%patch0 -p1
 %patch1 -p1
 %patch3 -p1
-%ifarch ppc64le ppc64
-%patch4 -p1
-%endif
 %patch5 -p1
-%patch6 -p1
+%if %{with libclang}
+%patch6
+%endif
+%patch7 -p1
 
 %build
 %cmake \
@@ -72,9 +77,14 @@
 -Dbuild_xmlparser=ON \
 -Dbuild_search=OFF \
 

commit doxygen for openSUSE:Factory

2019-01-15 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2019-01-15 13:16:23

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new.28833 (New)


Package is "doxygen"

Tue Jan 15 13:16:23 2019 rev:74 rq:664565 version:1.8.15

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2018-01-09 
14:37:12.644769822 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new.28833/doxygen.changes   
2019-01-15 13:16:24.880355901 +0100
@@ -1,0 +2,22 @@
+Mon Jan  7 14:45:46 UTC 2019 - Petr Gajdos 
+
+- add doxygen-latex-makeindex.patch to fix build of libssh and
+  cmocka [https://github.com/doxygen/doxygen/issues/6725]
+- add doxygen-empty-strings-segfault.patch to fix build of ldb
+  [https://github.com/doxygen/doxygen/pull/6751]
+
+---
+Mon Dec 31 08:45:19 UTC 2018 - Petr Gajdos 
+
+- fix url and source url
+
+---
+Mon Dec 31 07:07:14 UTC 2018 - s...@suspend.net
+
+- Update to 1.8.15:
+  * Another year, another lengthy set of fixes
+http://www.doxygen.nl/manual/changelog.html#log_1_8_15
+
+- Removed res2cc_sort_resources.diff (issue fixed upstream)
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2018-07-04 
23:48:06.160358129 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new.28833/doxywizard.changes
2019-01-15 13:16:24.920355869 +0100
@@ -1,0 +2,17 @@
+Fri Jan 11 08:13:11 UTC 2019 - Petr Gajdos 
+
+- remove upstreamed doxywizard-qt-5.11.patch
+
+---
+Mon Dec 31 08:47:21 UTC 2018 - Petr Gajdos 
+
+- fix url and source url
+
+---
+Mon Dec 31 01:19:11 UTC 2018 - s...@suspend.net
+
+- Update to 1.8.15:
+  * Another year, another lengthy set of development changes:
+http://www.doxygen.nl/manual/changelog.html#log_1_8_15
+
+---

Old:

  doxygen-1.8.14.src.tar.gz
  doxywizard-qt-5.11.patch
  res2cc_sort_resources.diff

New:

  doxygen-1.8.15.src.tar.gz
  doxygen-empty-strings-segfault.patch
  doxygen-latex-makeindex.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.pup8XB/_old  2019-01-15 13:16:25.952355057 +0100
+++ /var/tmp/diff_new_pack.pup8XB/_new  2019-01-15 13:16:25.956355054 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,19 +12,19 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 Name:   doxygen
-Version:1.8.14
+Version:1.8.15
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 # qtools are used for building and they are GPL-3.0 licensed
 License:GPL-2.0-or-later AND GPL-3.0-only
 Group:  Development/Tools/Doc Generators
-Url:http://www.stack.nl/~dimitri/doxygen/
-Source0:
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
+Url:http://www.doxygen.nl/
+Source0:http://doxygen.nl/files/doxygen-%{version}.src.tar.gz
 # suse specific
 Patch0: %{name}-modify_footer.patch
 # suse specific
@@ -33,8 +33,10 @@
 Patch3: vhdlparser-no-return.patch
 # suse specific, for ppc64le ppc64, workaround for bnc#921577
 Patch4: doxygen-dot-one-thread.patch
-# Submitted upstream, fix for https://bugzilla.gnome.org/show_bug.cgi?id=777672
-Patch6: res2cc_sort_resources.diff
+# https://github.com/doxygen/doxygen/issues/6725
+Patch5: doxygen-latex-makeindex.patch
+# https://github.com/doxygen/doxygen/issues/6749
+Patch6: doxygen-empty-strings-segfault.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -61,7 +63,8 @@
 %ifarch ppc64le ppc64
 %patch4 -p1
 %endif
-%patch6
+%patch5 -p1
+%patch6 -p1
 
 %build
 %cmake \

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.pup8XB/_old  2019-01-15 13:16:25.972355041 +0100
+++ /var/tmp/diff_new_pack.pup8XB/_new  2019-01-15 13:16:25.972355041 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package 

commit doxygen for openSUSE:Factory

2018-07-04 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2018-07-04 23:48:01

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Wed Jul  4 23:48:01 2018 rev:73 rq:617747 version:1.8.14

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2018-01-09 
14:37:12.680768133 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2018-07-04 
23:48:06.160358129 +0200
@@ -1,0 +2,6 @@
+Tue Jun 19 09:51:37 UTC 2018 - pgaj...@suse.com
+
+- fix build with qt 5.11
+  + doxywizard-qt-5.11.patch
+
+---

New:

  doxywizard-qt-5.11.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.iPJ7Jj/_old  2018-07-04 23:48:07.644356486 +0200
+++ /var/tmp/diff_new_pack.iPJ7Jj/_new  2018-07-04 23:48:07.648356482 +0200
@@ -21,7 +21,7 @@
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 # qtools are used for building and they are GPL-3.0 licensed
-License:GPL-2.0+ AND GPL-3.0
+License:GPL-2.0-or-later AND GPL-3.0-only
 Group:  Development/Tools/Doc Generators
 Url:http://www.stack.nl/~dimitri/doxygen/
 Source0:
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
@@ -80,7 +80,7 @@
 install -m 644 doc/doxygen.1 %{buildroot}%{_mandir}/man1/
 
 %files
-%doc LICENSE
+%license LICENSE
 %attr(644,root,root) %{_mandir}/man1/doxygen.1%{?ext_man}
 %attr(755,root,root) %{_bindir}/*
 

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.iPJ7Jj/_old  2018-07-04 23:48:07.668356460 +0200
+++ /var/tmp/diff_new_pack.iPJ7Jj/_new  2018-07-04 23:48:07.668356460 +0200
@@ -21,13 +21,14 @@
 Release:0
 Summary:Graphical User Interface for Doxygen
 # qtools are used for building and they are GPL-3.0 licensed
-License:GPL-2.0+ AND GPL-3.0
+License:GPL-2.0-or-later AND GPL-3.0-only
 Group:  Development/Tools/Doc Generators
 Url:http://www.stack.nl/~dimitri/doxygen/
 Source: 
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
 Source1:doxywizard.desktop
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
+Patch4: doxywizard-qt-5.11.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -54,6 +55,7 @@
 %prep
 %setup -q -n doxygen-%{version}
 %patch3 -p1
+%patch4 -p1
 
 %build
 export CFLAGS="%{optflags} -fPIC"

++ doxywizard-qt-5.11.patch ++
--- a/addon/doxywizard/CMakeLists.txt   
+++ a/addon/doxywizard/CMakeLists.txt   
@@ -4,9 +4,6 @@ if (NOT force_qt4)
   if (Qt5Core_FOUND)
 message(STATUS "Using Qt5")
 find_package(Qt5 COMPONENTS Widgets Gui Xml)
-macro(qt_use_modules)
-qt5_use_modules(${ARGN})
-endmacro()
 macro(qt_wrap_cpp)
 qt5_wrap_cpp(${ARGN})
 endmacro()
@@ -23,8 +20,6 @@ if (NOT Qt5Core_FOUND)
 message(STATUS "Using Qt4")
   endif()
   find_package(Qt4 REQUIRED COMPONENTS QtCore QtXml QtGui)
-  macro(qt_use_modules)
-  endmacro()
   macro(qt_wrap_cpp)
   qt4_wrap_cpp(${ARGN})
   endmacro()
@@ -104,9 +99,11 @@ ${GENERATED_SRC_WIZARD}/configdoc.cpp
 ${doxywizard_MOC}
 ${doxywizard_RESOURCES_RCC}
 )
-qt_use_modules(doxywizard Core Gui Widgets Xml)
-target_link_libraries(doxywizard
-${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY}
-)
+
+if(Qt5Core_FOUND)
+  target_link_libraries(doxywizard Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Xml)
+else()
+  target_link_libraries(doxywizard ${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY})
+endif()
 
 install(TARGETS doxywizard DESTINATION bin)




commit doxygen for openSUSE:Factory

2018-01-09 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2018-01-09 14:37:11

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Tue Jan  9 14:37:11 2018 rev:72 rq:561876 version:1.8.14

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2017-11-14 
14:18:46.108234856 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2018-01-09 
14:37:12.644769822 +0100
@@ -1,0 +2,12 @@
+Wed Jan  3 12:52:54 UTC 2018 - tchva...@suse.com
+
+- Update to 1.8.14:
+  * Many fixes during the one year development cycle:
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_14
+- Switch to python3 instead of python2
+- Remove upstream merged doxygen-guard-null-variable.patch
+- Refresh patch vhdlparser-no-return.patch
+- Kill doxygen-doc subpackages the latex deps keep growing while
+  it is really easy to download the generated pdfs from upstream
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2017-11-14 
14:18:46.836208300 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2018-01-09 
14:37:12.680768133 +0100
@@ -1,0 +2,16 @@
+Fri Jan  5 12:23:15 UTC 2018 - dims...@opensuse.org
+
+- Export LANG=C.UTF-8 before running the test suite. Python3 is
+  kinda strict and generally expects an UTF8 terminal.
+
+---
+Wed Jan  3 12:52:54 UTC 2018 - tchva...@suse.com
+
+- Update to 1.8.14:
+  * Many fixes during the one year development cycle:
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_14
+- Switch to python3 instead of python2
+- Refresh patch vhdlparser-no-return.patch
+- Use qt5 doxywizard even on leaps
+
+---

Old:

  doxygen-1.8.13.src.tar.gz
  doxygen-doc.changes
  doxygen-doc.spec
  doxygen-guard-null-variable.patch

New:

  doxygen-1.8.14.src.tar.gz



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.NGttFe/_old  2018-01-09 14:37:13.616724231 +0100
+++ /var/tmp/diff_new_pack.NGttFe/_new  2018-01-09 14:37:13.620724043 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   doxygen
-Version:1.8.13
+Version:1.8.14
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 # qtools are used for building and they are GPL-3.0 licensed
@@ -35,14 +35,15 @@
 Patch4: doxygen-dot-one-thread.patch
 # Submitted upstream, fix for https://bugzilla.gnome.org/show_bug.cgi?id=777672
 Patch6: res2cc_sort_resources.diff
-# PATCH-FIX-UPSTREAM doxygen-guard-null-variable.patch gh#doxygen/doxygen#555 
dims...@opensuse.org -- Protected against NULL pointer of variable al
-Patch7: doxygen-guard-null-variable.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
 BuildRequires:  gcc-c++
-BuildRequires:  python2-base
-BuildRequires:  python2-xml
+BuildRequires:  python3-base
+BuildRequires:  python3-xml
+# Do not bother building documentation with latex since it is present on the
+# web trivialy for all versions of doxygen
+Obsoletes:  doxygen-doc
 
 %description
 Doxygen is a documentation system for C, C++, Java, and IDL. It can
@@ -61,7 +62,6 @@
 %patch4 -p1
 %endif
 %patch6
-%patch7 -p1
 
 %build
 %cmake \
@@ -81,7 +81,7 @@
 
 %files
 %doc LICENSE
-%attr(444,root,root) %{_mandir}/man1/doxygen.1.gz
+%attr(644,root,root) %{_mandir}/man1/doxygen.1%{?ext_man}
 %attr(755,root,root) %{_bindir}/*
 
 %changelog

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.NGttFe/_old  2018-01-09 14:37:13.644722917 +0100
+++ /var/tmp/diff_new_pack.NGttFe/_new  2018-01-09 14:37:13.648722730 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxywizard
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   doxywizard
-Version:1.8.13
+Version:1.8.14
 Release:0
 Summary:Graphical User Interface for Doxygen
 # qtools are used for building and they are GPL-3.0 licensed
@@ 

commit doxygen for openSUSE:Factory

2017-11-14 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2017-11-14 14:18:37

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Tue Nov 14 14:18:37 2017 rev:71 rq:540494 version:1.8.13

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen-doc.changes  2017-02-21 
13:37:10.403816656 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen-doc.changes 2017-11-14 
14:18:43.620325613 +0100
@@ -1,0 +2,12 @@
+Fri Nov 10 13:21:16 UTC 2017 - mplus...@suse.com
+
+- Update licensing information
+
+---
+Tue Nov  7 12:20:10 UTC 2017 - mplus...@suse.com
+
+- Explicitly require python2 for building
+- Use more cmake macros
+- Run spec-cleaner
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2017-06-23 
09:13:06.818953474 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2017-11-14 
14:18:46.108234856 +0100
@@ -1,0 +2,12 @@
+Fri Nov 10 13:21:04 UTC 2017 - mplus...@suse.com
+
+- Update licensing information
+
+---
+Tue Nov  7 12:19:34 UTC 2017 - mplus...@suse.com
+
+- Explicitly require python2 for building
+- Use more cmake macros
+- Run spec-cleaner
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2017-02-25 
00:46:23.306151824 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2017-11-14 
14:18:46.836208300 +0100
@@ -1,0 +2,12 @@
+Fri Nov 10 13:21:26 UTC 2017 - mplus...@suse.com
+
+- Update licensing information
+
+---
+Tue Nov  7 12:20:18 UTC 2017 - mplus...@suse.com
+
+- Explicitly require python2 for building
+- Use more cmake macros
+- Run spec-cleaner
+
+---



Other differences:
--
++ doxygen-doc.spec ++
--- /var/tmp/diff_new_pack.osozbl/_old  2017-11-14 14:18:48.180159273 +0100
+++ /var/tmp/diff_new_pack.osozbl/_new  2017-11-14 14:18:48.184159127 +0100
@@ -20,7 +20,8 @@
 Version:1.8.13
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
-License:GPL-2.0+
+# qtools are used for building and they are GPL-3.0 licensed
+License:GPL-2.0+ AND GPL-3.0
 Group:  Development/Tools/Doc Generators
 Url:http://www.stack.nl/~dimitri/doxygen/
 Source0:
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
@@ -37,8 +38,8 @@
 # "If you need output in png format you also need to install graphviz-gnome."
 BuildRequires:  graphviz-gnome
 BuildRequires:  poppler-tools
-BuildRequires:  python-base
-BuildRequires:  python-xml
+BuildRequires:  python2-base
+BuildRequires:  python2-xml
 BuildRequires:  texlive-appendix
 BuildRequires:  texlive-colortbl
 BuildRequires:  texlive-courier
@@ -64,7 +65,6 @@
 BuildRequires:  texlive-wasy2-ps
 BuildRequires:  texlive-wasysym
 BuildRequires:  texlive-xtab
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Doxygen is a documentation system for C, C++, Java, and IDL. It can
@@ -103,7 +103,6 @@
 %fdupes -s %{buildroot}%{_docdir}/%{name}-doc
 
 %files
-%defattr(-,root,root)
 %doc %{_docdir}/%{name}
 
 %changelog

++ doxygen.spec ++
--- /var/tmp/diff_new_pack.osozbl/_old  2017-11-14 14:18:48.228157522 +0100
+++ /var/tmp/diff_new_pack.osozbl/_new  2017-11-14 14:18:48.232157376 +0100
@@ -20,7 +20,8 @@
 Version:1.8.13
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
-License:GPL-2.0+
+# qtools are used for building and they are GPL-3.0 licensed
+License:GPL-2.0+ AND GPL-3.0
 Group:  Development/Tools/Doc Generators
 Url:http://www.stack.nl/~dimitri/doxygen/
 Source0:
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
@@ -40,9 +41,8 @@
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
 BuildRequires:  gcc-c++
-BuildRequires:  python-base
-BuildRequires:  python-xml
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  python2-base
+BuildRequires:  python2-xml
 
 %description
 Doxygen is a documentation system for C, C++, Java, and IDL. It can
@@ -60,7 +60,7 @@
 %ifarch ppc64le ppc64
 %patch4 -p1
 %endif
-%patch6 -p0
+%patch6
 %patch7 -p1
 
 %build
@@ -72,7 +72,7 @@
 -DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
 -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
 

commit doxygen for openSUSE:Factory

2017-06-23 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2017-06-23 09:13:05

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Fri Jun 23 09:13:05 2017 rev:70 rq:500696 version:1.8.13

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2017-02-21 
13:37:10.459808757 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2017-06-23 
09:13:06.818953474 +0200
@@ -1,0 +2,5 @@
+Fri Jun  2 13:14:24 UTC 2017 - meiss...@suse.com
+
+- remove CFLAGS CXXFLAGS overrides to block PIE enablement.
+
+---



Other differences:
--
++ doxygen-doc.spec ++
--- /var/tmp/diff_new_pack.ZNFDDC/_old  2017-06-23 09:13:07.734824070 +0200
+++ /var/tmp/diff_new_pack.ZNFDDC/_new  2017-06-23 09:13:07.734824070 +0200
@@ -85,8 +85,6 @@
 %endif
 
 %build
-export CFLAGS="%{optflags} -fPIC"
-export CXXFLAGS="%{optflags} -fPIC"
 %cmake \
 -DDOC_INSTALL_DIR=share/doc/packages/%{name} \
 -Dbuild_doc=ON \

++ doxygen.spec ++
--- /var/tmp/diff_new_pack.ZNFDDC/_old  2017-06-23 09:13:07.762820114 +0200
+++ /var/tmp/diff_new_pack.ZNFDDC/_new  2017-06-23 09:13:07.762820114 +0200
@@ -64,8 +64,6 @@
 %patch7 -p1
 
 %build
-export CFLAGS="%{optflags} -fPIC"
-export CXXFLAGS="%{optflags} -fPIC"
 %cmake \
 -Dbuild_doc=OFF \
 -Dbuild_xmlparser=ON \




commit doxygen for openSUSE:Factory

2017-02-24 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2017-02-25 00:46:22

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

doxygen.changes: same change
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2017-02-21 
13:37:10.539797474 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2017-02-25 
00:46:23.306151824 +0100
@@ -1,0 +2,5 @@
+Wed Feb 22 07:08:16 UTC 2017 - f...@grueninger.de
+
+- Revert erroneous change of required CMake version
+
+---



Other differences:
--
doxygen.spec: same change
++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.27OMvf/_old  2017-02-25 00:46:24.561960378 +0100
+++ /var/tmp/diff_new_pack.27OMvf/_new  2017-02-25 00:46:24.565959768 +0100
@@ -28,7 +28,7 @@
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
 BuildRequires:  bison
-BuildRequires:  cmake >= 2.8.13
+BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel




commit doxygen for openSUSE:Factory

2017-02-21 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2017-02-21 13:37:09

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen-doc.changes  2016-09-09 
10:20:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen-doc.changes 2017-02-21 
13:37:10.403816656 +0100
@@ -1,0 +2,6 @@
+Tue Feb 14 08:09:53 UTC 2017 - f...@grueninger.de
+
+- Update to 1.8.13
+  See changelog at 
http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_13
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2017-02-03 
17:35:58.223399047 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2017-02-21 
13:37:10.459808757 +0100
@@ -1,0 +2,13 @@
+Mon Feb 20 17:51:08 UTC 2017 - dims...@opensuse.org
+
+- Add doxygen-guard-null-variable.patch: Protected against NULL
+  pointer of variable al, upstream commit 0f02761.
+
+---
+Tue Feb 14 08:10:21 UTC 2017 - f...@grueninger.de
+
+- Update to 1.8.13
+  See changelog at 
http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_13
+- dropped doxygen-fix-QCH-files.patch, it is part of the release
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2016-09-09 
10:20:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2017-02-21 
13:37:10.539797474 +0100
@@ -1,0 +2,6 @@
+Tue Feb 14 08:10:28 UTC 2017 - f...@grueninger.de
+
+- Update to 1.8.13
+  See changelog at 
http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_13
+
+---

Old:

  doxygen-1.8.12.src.tar.gz
  doxygen-fix-QCH-files.patch

New:

  doxygen-1.8.13.src.tar.gz
  doxygen-guard-null-variable.patch



Other differences:
--
++ doxygen-doc.spec ++
--- /var/tmp/diff_new_pack.Zq0ZB7/_old  2017-02-21 13:37:11.479664886 +0100
+++ /var/tmp/diff_new_pack.Zq0ZB7/_new  2017-02-21 13:37:11.483664321 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   doxygen-doc
-Version:1.8.12
+Version:1.8.13
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+

++ doxygen.spec ++
--- /var/tmp/diff_new_pack.Zq0ZB7/_old  2017-02-21 13:37:11.507660936 +0100
+++ /var/tmp/diff_new_pack.Zq0ZB7/_new  2017-02-21 13:37:11.507660936 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   doxygen
-Version:1.8.12
+Version:1.8.13
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+
@@ -32,10 +32,10 @@
 Patch3: vhdlparser-no-return.patch
 # suse specific, for ppc64le ppc64, workaround for bnc#921577
 Patch4: doxygen-dot-one-thread.patch
-# is upstreamed, bnc#1011331
-Patch5: doxygen-fix-QCH-files.patch
 # Submitted upstream, fix for https://bugzilla.gnome.org/show_bug.cgi?id=777672
 Patch6: res2cc_sort_resources.diff
+# PATCH-FIX-UPSTREAM doxygen-guard-null-variable.patch gh#doxygen/doxygen#555 
dims...@opensuse.org -- Protected against NULL pointer of variable al
+Patch7: doxygen-guard-null-variable.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -60,8 +60,8 @@
 %ifarch ppc64le ppc64
 %patch4 -p1
 %endif
-%patch5 -p1
 %patch6 -p0
+%patch7 -p1
 
 %build
 export CFLAGS="%{optflags} -fPIC"

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.Zq0ZB7/_old  2017-02-21 13:37:11.543655859 +0100
+++ /var/tmp/diff_new_pack.Zq0ZB7/_new  2017-02-21 13:37:11.547655294 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   doxywizard
-Version:1.8.12
+Version:1.8.13
 Release:0
 Summary:Graphical User Interface for Doxygen
 License:GPL-2.0+
@@ -28,7 +28,7 @@
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
 BuildRequires:  bison
-BuildRequires:  cmake >= 2.8.12
+BuildRequires:  cmake >= 2.8.13
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel

++ doxygen-1.8.12.src.tar.gz -> doxygen-1.8.13.src.tar.gz ++
 4551 lines of diff (skipped)

++ doxygen-guard-null-variable.patch ++
>From 0f02761a158a5e9ddbd5801682482af8986dbc35 Mon Sep 17 00:00:00 2001
From: albert-github 
Date: Wed, 4 Jan 2017 12:24:55 +0100
Subject: [PATCH] Bug 776791 - [1.8.13 Regression] Segfault building the
 breathe docs

Protected 

commit doxygen for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2017-01-28 11:03:04

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2016-12-03 
18:25:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2017-02-03 
17:35:58.223399047 +0100
@@ -1,0 +2,6 @@
+Tue Jan 24 12:28:25 UTC 2017 - stefan.bru...@rwth-aachen.de
+
+- Added res2cc_sort_resources.diff, sort template files in
+  generated resources.cpp for reproducible build, fixes bgo#777672
+
+---

New:

  res2cc_sort_resources.diff



Other differences:
--
++ doxygen-doc.spec ++
--- /var/tmp/diff_new_pack.7oMKjk/_old  2017-02-03 17:35:59.227256964 +0100
+++ /var/tmp/diff_new_pack.7oMKjk/_new  2017-02-03 17:35:59.231256397 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen-doc
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ doxygen.spec ++
--- /var/tmp/diff_new_pack.7oMKjk/_old  2017-02-03 17:35:59.259252435 +0100
+++ /var/tmp/diff_new_pack.7oMKjk/_new  2017-02-03 17:35:59.263251869 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,6 +34,8 @@
 Patch4: doxygen-dot-one-thread.patch
 # is upstreamed, bnc#1011331
 Patch5: doxygen-fix-QCH-files.patch
+# Submitted upstream, fix for https://bugzilla.gnome.org/show_bug.cgi?id=777672
+Patch6: res2cc_sort_resources.diff
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -59,6 +61,7 @@
 %patch4 -p1
 %endif
 %patch5 -p1
+%patch6 -p0
 
 %build
 export CFLAGS="%{optflags} -fPIC"

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.7oMKjk/_old  2017-02-03 17:35:59.283249039 +0100
+++ /var/tmp/diff_new_pack.7oMKjk/_new  2017-02-03 17:35:59.287248472 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxywizard
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed

++ res2cc_sort_resources.diff ++
--- src/res2cc_cmd.py_orig  2016-05-10 21:51:52.0 +0200
+++ src/res2cc_cmd.py   2017-01-23 23:54:53.499507342 +0100
@@ -98,10 +98,11 @@
directory = sys.argv[1]
files = []
for dirName, subdirList, fileList in walk(directory):
-   for fname in sorted(fileList):
+   for fname in fileList:
subdir = dirName[len(directory)+1:] if 
dirName.startswith(directory) else dirName
if subdir:

files.append(File.factory(directory,subdir,fname))
+   files.sort(key=lambda f: f.subdir + "/" + f.fileName)
outputFile = open(sys.argv[2],"w")
print("#include \"resourcemgr.h\"\n",file=outputFile)
for f in files:



commit doxygen for openSUSE:Factory

2016-12-03 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2016-12-03 18:25:23

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2016-09-09 
10:20:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2016-12-03 
18:25:26.0 +0100
@@ -1,0 +2,7 @@
+Wed Nov 30 11:32:31 UTC 2016 - pgaj...@suse.com
+
+- Fix: Add missing jquery.js, dynsections.js & optional
+ svgpan.js to QCH file [bsc#1011331]
+ + doxygen-fix-QCH-files.patch
+
+---

New:

  doxygen-fix-QCH-files.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.X5Julg/_old  2016-12-03 18:25:28.0 +0100
+++ /var/tmp/diff_new_pack.X5Julg/_new  2016-12-03 18:25:28.0 +0100
@@ -32,6 +32,8 @@
 Patch3: vhdlparser-no-return.patch
 # suse specific, for ppc64le ppc64, workaround for bnc#921577
 Patch4: doxygen-dot-one-thread.patch
+# is upstreamed, bnc#1011331
+Patch5: doxygen-fix-QCH-files.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -56,6 +58,7 @@
 %ifarch ppc64le ppc64
 %patch4 -p1
 %endif
+%patch5 -p1
 
 %build
 export CFLAGS="%{optflags} -fPIC"

++ doxygen-fix-QCH-files.patch ++
>From bf9415698e53d79b4b94bdf64a52be4347eb3150 Mon Sep 17 00:00:00 2001
From: "Friedrich W. H. Kossebau" 
Date: Sun, 30 Oct 2016 11:15:14 +0100
Subject: [PATCH] Fix: Add missing jquery.js, dynsections.js & optional
 svgpan.js to QCH file

---
 src/htmlgen.cpp | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 5b4519b..0ca7182 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -1026,6 +1026,13 @@ void HtmlGenerator::writeStyleInfo(int part)
 }
   }
 }
+
+Doxygen::indexList->addStyleSheetFile("jquery.js");
+Doxygen::indexList->addStyleSheetFile("dynsections.js");
+if (Config_getBool(INTERACTIVE_SVG))
+{
+  Doxygen::indexList->addStyleSheetFile("svgpan.js");
+}
   }
 }
 



commit doxygen for openSUSE:Factory

2016-09-09 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2016-09-09 10:20:15

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen-doc.changes  2016-04-28 
16:52:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen-doc.changes 2016-09-09 
10:20:16.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep  6 21:07:53 UTC 2016 - f...@grueninger.de
+
+- Update to 1.8.12
+  See changelog at http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2016-04-28 
16:52:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2016-09-09 
10:20:16.0 +0200
@@ -1,0 +2,7 @@
+Tue Sep  6 17:31:33 UTC 2016 - f...@grueninger.de
+
+- Update to 1.8.12
+  See changelog at http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+- update patch doxygen-dot-one-thread.patch
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2016-03-01 
09:36:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2016-09-09 
10:20:16.0 +0200
@@ -1,0 +2,6 @@
+Tue Sep  6 21:07:24 UTC 2016 - f...@grueninger.de
+
+- Update to 1.8.12
+  See changelog at http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+
+---

Old:

  doxygen-1.8.11.src.tar.gz

New:

  doxygen-1.8.12.src.tar.gz



Other differences:
--
++ doxygen-doc.spec ++
--- /var/tmp/diff_new_pack.PVsl4b/_old  2016-09-09 10:20:18.0 +0200
+++ /var/tmp/diff_new_pack.PVsl4b/_new  2016-09-09 10:20:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   doxygen-doc
-Version:1.8.11
+Version:1.8.12
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+

doxygen.spec: same change
doxywizard.spec: same change
++ doxygen-1.8.11.src.tar.gz -> doxygen-1.8.12.src.tar.gz ++
 36736 lines of diff (skipped)

++ doxygen-dot-one-thread.patch ++
--- /var/tmp/diff_new_pack.PVsl4b/_old  2016-09-09 10:20:19.0 +0200
+++ /var/tmp/diff_new_pack.PVsl4b/_new  2016-09-09 10:20:19.0 +0200
@@ -4,19 +4,13 @@
 
 doxygen ppc64le ignore DOT NUM THREADS to 0 as a bypass to boo#921577
 
-Signed-off-by: Michel Normand 

- src/dot.cpp |5 -
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-Index: doxygen-1.8.10/src/dot.cpp
 ===
 doxygen-1.8.10.orig/src/dot.cpp
-+++ doxygen-1.8.10/src/dot.cpp
-@@ -1240,9 +1240,12 @@ DotManager::DotManager() : m_dotMaps(100
+--- doxygen-1.8.12/src/dot.cpp  2016-05-10 21:51:52.0 +0200
 doxygen-1.8.12_new/src/dot.cpp  2016-09-06 19:42:27.244474872 +0200
+@@ -1192,9 +1192,12 @@
m_queue = new DotRunnerQueue;
int i;
-   int numThreads = QMIN(32,Config_getInt("DOT_NUM_THREADS"));
+   int numThreads = QMIN(32,Config_getInt(DOT_NUM_THREADS));
 +  if (numThreads==0) {
 +numThreads = 1;
 +msg("use single threaded despite DOT_NUM_THREADS=0 (bypass 
boo#921577)\n");
@@ -27,4 +21,3 @@
  for (i=0;i

commit doxygen for openSUSE:Factory

2016-04-28 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2016-04-28 16:52:02

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen-doc.changes  2016-01-08 
15:22:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen-doc.changes 2016-04-28 
16:52:03.0 +0200
@@ -1,0 +2,5 @@
+Mon Apr 25 07:29:18 UTC 2016 - pgaj...@suse.com
+
+- fix build: added texlive-wasy2-ps to buildrequires
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2016-03-01 
09:36:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2016-04-28 
16:52:03.0 +0200
@@ -1,0 +2,5 @@
+Thu Apr 21 12:43:38 UTC 2016 - norm...@linux.vnet.ibm.com
+
+- same work around ppc64 as already done for ppc64le [boo#921577]
+
+---



Other differences:
--
++ doxygen-doc.spec ++
--- /var/tmp/diff_new_pack.zFOsH0/_old  2016-04-28 16:52:04.0 +0200
+++ /var/tmp/diff_new_pack.zFOsH0/_new  2016-04-28 16:52:04.0 +0200
@@ -61,6 +61,7 @@
 BuildRequires:  texlive-times
 BuildRequires:  texlive-tocloft
 BuildRequires:  texlive-wasy
+BuildRequires:  texlive-wasy2-ps
 BuildRequires:  texlive-wasysym
 BuildRequires:  texlive-xtab
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ doxygen.spec ++
--- /var/tmp/diff_new_pack.zFOsH0/_old  2016-04-28 16:52:04.0 +0200
+++ /var/tmp/diff_new_pack.zFOsH0/_new  2016-04-28 16:52:04.0 +0200
@@ -30,7 +30,7 @@
 Patch1: %{name}-no-lowercase-man-names.patch
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
-# suse specific, for ppc64le, workaround for bnc#921577
+# suse specific, for ppc64le ppc64, workaround for bnc#921577
 Patch4: doxygen-dot-one-thread.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
@@ -53,7 +53,7 @@
 %patch0
 %patch1 -p1
 %patch3 -p1
-%ifarch ppc64le
+%ifarch ppc64le ppc64
 %patch4 -p1
 %endif
 




commit doxygen for openSUSE:Factory

2016-03-01 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2016-03-01 09:36:00

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2016-01-08 
15:22:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2016-03-01 
09:36:10.0 +0100
@@ -1,0 +2,5 @@
+Sun Feb 21 00:48:27 UTC 2016 - crrodrig...@opensuse.org
+
+- Do not link with -pie if we are not compiling with -fPIE
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2016-01-08 
15:22:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2016-03-01 
09:36:11.0 +0100
@@ -1,0 +2,6 @@
+Sun Feb 21 00:41:56 UTC 2016 - crrodrig...@opensuse.org
+
+- Build against QT5 in newer products
+- Do not link with -pie as we are not compiling with -fPIE
+
+---



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.BVIcCX/_old  2016-03-01 09:36:12.0 +0100
+++ /var/tmp/diff_new_pack.BVIcCX/_new  2016-03-01 09:36:12.0 +0100
@@ -65,9 +65,9 @@
 -Dbuild_xmlparser=ON \
 -Dbuild_search=OFF \
 -Dbuild_wizard=OFF \
--DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now" \
--DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now" \
--DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now"
+-DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
+-DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
+-DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now"
 make %{?_smp_mflags}
 
 %install

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.BVIcCX/_old  2016-03-01 09:36:12.0 +0100
+++ /var/tmp/diff_new_pack.BVIcCX/_new  2016-03-01 09:36:12.0 +0100
@@ -32,7 +32,15 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
+BuildRequires:  python-xml
+%if 0%{?suse_version} < 1320
 BuildRequires:  libqt4-devel >= 4.3
+%else
+BuildRequires:  pkgconfig(Qt5Core)
+BuildRequires:  pkgconfig(Qt5Gui)
+BuildRequires:  pkgconfig(Qt5Widgets)
+BuildRequires:  pkgconfig(Qt5Xml)
+%endif
 BuildRequires:  update-desktop-files
 Requires:   doxygen = %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -55,9 +63,9 @@
 export CXXFLAGS="%{optflags} -fPIC"
 %cmake \
 -Dbuild_wizard=ON \
--DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now" \
--DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now" \
--DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -pie -Wl,-z,relro,-z,now"
+-DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
+-DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now" \
+-DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,relro,-z,now"
 make %{?_smp_mflags}
 
 %if 0%{?suse_version} > 1230 && 0%{?suse_version} != 1315




commit doxygen for openSUSE:Factory

2015-10-14 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2015-10-14 16:34:52

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2015-09-09 
20:20:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2015-10-14 
16:34:53.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct  5 14:05:14 UTC 2015 - pgaj...@suse.com
+
+- work around Power8 double free or corruption [bnc#921577]
+  + doxygen-dot-one-thread.patch
+
+---

New:

  doxygen-dot-one-thread.patch



Other differences:
--
++ doxygen-doc.spec ++
--- /var/tmp/diff_new_pack.nEwvji/_old  2015-10-14 16:34:54.0 +0200
+++ /var/tmp/diff_new_pack.nEwvji/_new  2015-10-14 16:34:54.0 +0200
@@ -29,6 +29,8 @@
 Patch2: doxygen-no-shared-libs.patch
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
+# suse specific, for ppc64le, workaround for bnc#921577
+Patch4: doxygen-dot-one-thread.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  fdupes
@@ -77,6 +79,10 @@
 %setup -q -n doxygen-%{version} 
 %patch2 -p1
 %patch3 -p1
+%ifarch ppc64le
+# see bnc#921577
+%patch4 -p1
+%endif
 
 %build
 export CFLAGS="%{optflags} -fPIC"

++ doxygen.spec ++
--- /var/tmp/diff_new_pack.nEwvji/_old  2015-10-14 16:34:54.0 +0200
+++ /var/tmp/diff_new_pack.nEwvji/_new  2015-10-14 16:34:54.0 +0200
@@ -33,6 +33,8 @@
 Patch2: doxygen-no-shared-libs.patch
 # PATCH-FIX-UPSTREAM: add missing returns to non-void functions
 Patch3: vhdlparser-no-return.patch
+# suse specific, for ppc64le, workaround for bnc#921577
+Patch4: doxygen-dot-one-thread.patch
 BuildRequires:  bison
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  flex
@@ -55,6 +57,9 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%ifarch ppc64le
+%patch4 -p1
+%endif
 
 %build
 export CFLAGS="%{optflags} -fPIC"

++ doxygen-dot-one-thread.patch ++
From: Michel Normand 
Subject: doxygen ppc64le ignore DOT NUM THREADS to 0
Date: Wed, 07 Oct 2015 14:11:22 +0200

doxygen ppc64le ignore DOT NUM THREADS to 0 as a bypass to boo#921577

Signed-off-by: Michel Normand 
---
 src/dot.cpp |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Index: doxygen-1.8.10/src/dot.cpp
===
--- doxygen-1.8.10.orig/src/dot.cpp
+++ doxygen-1.8.10/src/dot.cpp
@@ -1240,9 +1240,12 @@ DotManager::DotManager() : m_dotMaps(100
   m_queue = new DotRunnerQueue;
   int i;
   int numThreads = QMIN(32,Config_getInt("DOT_NUM_THREADS"));
+  if (numThreads==0) {
+numThreads = 1;
+msg("use single threaded despite DOT_NUM_THREADS=0 (bypass boo#921577)\n");
+  }
   if (numThreads!=1)
   {
-if (numThreads==0) numThreads = QMAX(2,QThread::idealThreadCount()+1);
 for (i=0;i

commit doxygen for openSUSE:Factory

2015-09-09 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2015-09-09 20:20:03

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is "doxygen"

Changes:

New Changes file:

--- /dev/null   2015-08-24 19:43:32.284261900 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen-doc.changes 2015-09-09 
20:20:05.0 +0200
@@ -0,0 +1,17 @@
+---
+Fri Aug 21 10:01:07 UTC 2015 - tchva...@suse.com
+
+- Set proper minimal cmake version required
+- Use system stack for cmake params and obey cflags
+- Add patch to build required static libs:
+  * doxygen-no-shared-libs.patch
+- Refresh patch:
+  * doxygen-no-lowercase-man-names.patch
+- Add patch to avoid no-return-in-nonvoid function error:
+  * vhdlparser-no-return.patch
+
+---
+Wed Aug 19 08:00:39 UTC 2015 - pgaj...@suse.com
+
+- doxygen-doc package created
+
--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2015-03-05 
18:15:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2015-09-09 
20:20:05.0 +0200
@@ -1,0 +2,33 @@
+Thu Aug 27 07:34:04 UTC 2015 - mplus...@suse.com
+
+- Move checks to doxywizard package to avoid build cycle
+
+---
+Fri Aug 21 09:41:39 UTC 2015 - tchva...@suse.com
+
+- Set proper minimal cmake version required
+- Use system stack for cmake params and obey cflags
+- Add patch to build required static libs:
+  * doxygen-no-shared-libs.patch
+- Refresh patch:
+  * doxygen-no-lowercase-man-names.patch
+- Add patch to avoid no-return-in-nonvoid function error:
+  * vhdlparser-no-return.patch
+
+---
+Mon Aug 17 14:52:48 UTC 2015 - pgaj...@suse.com
+
+- updated to 1.8.10
+  * Change the build system to use cmake.
+  * Add support for basic XML syntax highlighting
+  * Added documentation for ``` style fenced code block and more 
+robust parsing
+  * Added function arguments to the LaTeX toc
+  * Added support for language codes
+  * etc. see http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+- removed unneded patches:
+  - doxygen-1.5.9-64archs.patch
+  - doxygen-1.5.9-man.patch
+  - doxygen-1.7.0-modify_footer.patch renamed to doxygen-modify_footer.patch
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2015-03-05 
18:15:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2015-09-09 
20:20:05.0 +0200
@@ -1,0 +2,24 @@
+Thu Aug 27 07:34:32 UTC 2015 - mplus...@suse.com
+
+- Move checks to doxywizard package to avoid build cycle
+
+---
+Fri Aug 21 09:42:05 UTC 2015 - tchva...@suse.com
+
+- Set proper minimal cmake version required
+- Use system stack for cmake params and obey cflags
+- Add patch to build required static libs:
+  * doxygen-no-shared-libs.patch
+- Refresh patch:
+  * doxygen-no-lowercase-man-names.patch
+- Add patch to avoid no-return-in-nonvoid function error:
+  * vhdlparser-no-return.patch
+
+---
+Mon Aug 17 16:07:31 UTC 2015 - pgaj...@suse.com
+
+- updated to 1.8.10, see doxygen.changes
+- move tests to doxygen.spec
+- remove doxywizard-1.5.9-flex.patch
+
+---

Old:

  doxygen-1.5.9-64archs.patch
  doxygen-1.5.9-man.patch
  doxygen-1.7.0-modify_footer.patch
  doxygen-1.8.9.1.src.tar.gz
  doxywizard-1.5.9-flex.patch

New:

  doxygen-1.8.10.src.tar.gz
  doxygen-doc.changes
  doxygen-doc.spec
  doxygen-modify_footer.patch
  doxygen-no-shared-libs.patch
  vhdlparser-no-return.patch



Other differences:
--
++ doxygen-doc.spec ++
#
# spec file for package doxygen-doc
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:

commit doxygen for openSUSE:Factory

2015-03-05 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2015-03-05 15:32:56

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2015-02-10 
20:15:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2015-03-05 
18:15:00.0 +0100
@@ -1,0 +2,13 @@
+Mon Mar  2 15:22:37 UTC 2015 - pgaj...@suse.com
+
+- remove doxygen-html.sh
+
+---
+Fri Feb 20 11:40:19 UTC 2015 - mplus...@suse.com
+
+- Cleanup spec file with spec-cleaner
+- Split documentation to separate package
+- Do not bundle pdf documentation
+- Generate html documentation
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2015-02-10 
20:15:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2015-03-05 
18:15:00.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 20 11:41:18 UTC 2015 - mplus...@suse.com
+
+- Cleanup spec file with spec-cleaner
+- Enable tests
+
+---

Old:

  doxygen-1.8.9.1-html.tar.bz2
  doxygen-html.sh
  doxygen_manual-1.8.9.1.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.8CmRhq/_old  2015-03-05 18:15:01.0 +0100
+++ /var/tmp/diff_new_pack.8CmRhq/_new  2015-03-05 18:15:01.0 +0100
@@ -17,48 +17,26 @@
 
 
 Name:   doxygen
-BuildRequires:  bison
-BuildRequires:  flex
-BuildRequires:  gcc-c++
-BuildRequires:  graphviz
-BuildRequires:  libpng-devel
-BuildRequires:  python-base
-BuildRequires:  python-xml
-BuildRequires:  unzip
 Version:1.8.9.1
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+
 Group:  Development/Tools/Doc Generators
 Url:http://www.stack.nl/~dimitri/doxygen/
-Source: 
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
-# script to get %%source2
-Source1:doxygen-html.sh
-Source2:%{name}-%{version}-html.tar.bz2
-Source3:
ftp://ftp.stack.nl/pub/users/dimitri/doxygen_manual-%{version}.pdf.zip
-Patch:  %{name}-1.5.9-64archs.patch
+Source0:
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
+Patch0: %{name}-1.5.9-64archs.patch
 Patch3: %{name}-1.5.9-man.patch
 Patch4: %{name}-1.7.0-modify_footer.patch
 Patch5: %{name}-no-lowercase-man-names.patch
+BuildRequires:  bison
+BuildRequires:  fdupes
+BuildRequires:  flex
+BuildRequires:  gcc-c++
+BuildRequires:  graphviz
+BuildRequires:  libpng-devel
+BuildRequires:  python-base
+BuildRequires:  python-xml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-#
-# SuSE, openSUSE
-#
-%if 0%{?suse_version}
-%define man_ext gz
-%endif
-#
-# Fedora, RHEL or CentOS
-#
-%if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
-%define man_ext gz
-%endif
-#
-# Mandrake, Mandriva
-#
-%if 0%{?mandriva_version} || 0%{?mdkversion}
-%define man_ext lzma
-%endif
 
 %description
 Doxygen is a documentation system for C, C++, Java, and IDL. It can
@@ -68,36 +46,55 @@
 developed on a Linux platform, but it runs on most other UNIX flavors
 as well. An executable for Windows 95/NT is also available.
 
+%package doc
+Summary:Documentation for %{name}
+Group:  Documentation
+
+%description doc
+Doxygen is a documentation system for C, C++, Java, and IDL. It can
+generate an online class browser (in HTML) and an offline reference
+manual (in LaTeX) from a set of documented source files. The
+documentation is extracted directly from the sources. Doxygen is
+developed on a Linux platform, but it runs on most other UNIX flavors
+as well. An executable for Windows 95/NT is also available.
+
+This package contains only documentation
+
 %prep
-%setup -q -b 2
-%patch
+%setup -q 
+%patch0
 %patch3
 %patch4
 %patch5 -p1
-cp -v %{S:3} .
-/usr/bin/unzip %{S:3}
 
 %build
 mintoc=
 %ifarch ppc64
 mintoc=-DENGLISH_ONLY

commit doxygen for openSUSE:Factory

2015-02-10 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2015-02-10 20:15:55

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2014-09-03 
19:41:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2015-02-10 
20:15:58.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb  6 06:45:26 UTC 2015 - mplus...@suse.com
+
+- Update to 1.8.9.1:
+  * bugfix releas, see
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+for details
+
+---
doxywizard.changes: same change

Old:

  doxygen-1.8.8-html.tar.bz2
  doxygen-1.8.8.src.tar.gz
  doxygen_manual-1.8.8.pdf.zip

New:

  doxygen-1.8.9.1-html.tar.bz2
  doxygen-1.8.9.1.src.tar.gz
  doxygen_manual-1.8.9.1.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.zdvA4n/_old  2015-02-10 20:15:59.0 +0100
+++ /var/tmp/diff_new_pack.zdvA4n/_new  2015-02-10 20:15:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 BuildRequires:  python-base
 BuildRequires:  python-xml
 BuildRequires:  unzip
-Version:1.8.8
+Version:1.8.9.1
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.zdvA4n/_old  2015-02-10 20:15:59.0 +0100
+++ /var/tmp/diff_new_pack.zdvA4n/_new  2015-02-10 20:15:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxywizard
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -21,7 +21,7 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
-Version:1.8.8
+Version:1.8.9.1
 Release:0
 Requires:   doxygen = %{version}
 Summary:Graphical User Interface for Doxygen

++ doxygen-1.8.8-html.tar.bz2 - doxygen-1.8.9.1-html.tar.bz2 ++
 3480 lines of diff (skipped)

++ doxygen-1.8.8.src.tar.gz - doxygen-1.8.9.1.src.tar.gz ++
 62177 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2014-09-03 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2014-09-03 18:21:21

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2014-05-23 
15:00:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2014-09-03 
19:41:55.0 +0200
@@ -1,0 +2,10 @@
+Thu Aug 28 17:57:41 UTC 2014 - andreas.stie...@gmx.de
+
+- Doxygen 1.8.8
+- New features:
+  * Support for PlantUML
+  * Add BREAD_CRUMB_TRAIL
+- A selection of bug fixes and updates as listed in
+  http://www.stack.nl/~dimitri/doxygen/manual/changelog.html#log_1_8_8
+
+---
doxywizard.changes: same change

Old:

  doxygen-1.8.7-html.tar.bz2
  doxygen-1.8.7.src.tar.gz
  doxygen_manual-1.8.7.pdf.zip

New:

  doxygen-1.8.8-html.tar.bz2
  doxygen-1.8.8.src.tar.gz
  doxygen_manual-1.8.8.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.qkxx1N/_old  2014-09-03 19:41:57.0 +0200
+++ /var/tmp/diff_new_pack.qkxx1N/_new  2014-09-03 19:41:57.0 +0200
@@ -25,7 +25,7 @@
 BuildRequires:  python-base
 BuildRequires:  python-xml
 BuildRequires:  unzip
-Version:1.8.7
+Version:1.8.8
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.qkxx1N/_old  2014-09-03 19:41:57.0 +0200
+++ /var/tmp/diff_new_pack.qkxx1N/_new  2014-09-03 19:41:57.0 +0200
@@ -21,7 +21,7 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
-Version:1.8.7
+Version:1.8.8
 Release:0
 Requires:   doxygen = %{version}
 Summary:Graphical User Interface for Doxygen

++ doxygen-1.8.7-html.tar.bz2 - doxygen-1.8.8-html.tar.bz2 ++
 4539 lines of diff (skipped)

++ doxygen-1.8.7.src.tar.gz - doxygen-1.8.8.src.tar.gz ++
 69859 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2014-05-23 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2014-05-23 15:00:31

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2014-05-22 
09:04:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2014-05-23 
15:00:32.0 +0200
@@ -1,0 +2,5 @@
+Thu May 22 08:44:31 UTC 2014 - sch...@suse.de
+
+- Don't disable optimisation
+
+---



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.vQ8gVC/_old  2014-05-23 15:00:33.0 +0200
+++ /var/tmp/diff_new_pack.vQ8gVC/_new  2014-05-23 15:00:33.0 +0200
@@ -82,7 +82,7 @@
 %ifarch ppc64
 mintoc=-DENGLISH_ONLY
 %endif
-sed -i~ /^TMAKE_CFLAGS_RELEASE.*/s@^.*@TMAKE_CFLAGS_RELEASE = $RPM_OPT_FLAGS 
-O0 $mintoc@ tmake/lib/linux-g++/tmake.conf
+sed -i~ /^TMAKE_CFLAGS_RELEASE.*/s@^.*@TMAKE_CFLAGS_RELEASE = $RPM_OPT_FLAGS 
$mintoc@ tmake/lib/linux-g++/tmake.conf
 # custom configure script
 ./configure --prefix /usr --install /usr/bin/install
 make %{?_smp_mflags}


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2014-05-22 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2014-05-22 09:04:29

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2014-01-03 
14:57:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2014-05-22 
09:04:30.0 +0200
@@ -1,0 +2,9 @@
+Tue May 13 07:05:09 UTC 2014 - pgaj...@suse.com
+
+- updated to 1.8.7:
+  * many bugfixes and features, see
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+for details
+- altered modify_footer.patch
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2014-01-03 
14:57:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2014-05-22 
09:04:31.0 +0200
@@ -1,0 +2,8 @@
+Tue May 13 07:05:39 UTC 2014 - pgaj...@suse.com
+
+- updated to 1.8.7:
+  * many bugfixes and features, see
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+for details
+
+---

Old:

  doxygen-1.8.6-html.tar.bz2
  doxygen-1.8.6.src.tar.gz
  doxygen_manual-1.8.6.pdf.zip

New:

  doxygen-1.8.7-html.tar.bz2
  doxygen-1.8.7.src.tar.gz
  doxygen_manual-1.8.7.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.1NyXXz/_old  2014-05-22 09:04:32.0 +0200
+++ /var/tmp/diff_new_pack.1NyXXz/_new  2014-05-22 09:04:32.0 +0200
@@ -23,8 +23,9 @@
 BuildRequires:  graphviz
 BuildRequires:  libpng-devel
 BuildRequires:  python-base
+BuildRequires:  python-xml
 BuildRequires:  unzip
-Version:1.8.6
+Version:1.8.7
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.1NyXXz/_old  2014-05-22 09:04:32.0 +0200
+++ /var/tmp/diff_new_pack.1NyXXz/_new  2014-05-22 09:04:32.0 +0200
@@ -21,7 +21,7 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
-Version:1.8.6
+Version:1.8.7
 Release:0
 Requires:   doxygen = %{version}
 Summary:Graphical User Interface for Doxygen

++ doxygen-1.7.0-modify_footer.patch ++
--- /var/tmp/diff_new_pack.1NyXXz/_old  2014-05-22 09:04:32.0 +0200
+++ /var/tmp/diff_new_pack.1NyXXz/_new  2014-05-22 09:04:32.0 +0200
@@ -1,16 +1,26 @@
-Index: src/configoptions.cpp
+Index: Doxyfile
 ===
 src/configoptions.cpp.orig
-+++ src/configoptions.cpp
-@@ -1497,9 +1497,9 @@ 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 this\n
-   to NO can help when comparing the output of multiple runs.\n
--  The default value is: YES.\n
-+  The default value is: NO.\n
-   This tag requires that the tag GENERATE_HTML is set to YES.,
--  TRUE
-+  FALSE
-  );
-   cb-addDependency(GENERATE_HTML);
-   //
+--- Doxyfile.orig  2014-02-08 14:06:14.0 +0100
 Doxyfile   2014-05-13 09:07:52.475141202 +0200
+@@ -148,7 +148,7 @@
+ HTML_COLORSTYLE_HUE= 220
+ HTML_COLORSTYLE_SAT= 100
+ HTML_COLORSTYLE_GAMMA  = 80
+-HTML_TIMESTAMP = YES
++HTML_TIMESTAMP = NO
+ HTML_DYNAMIC_SECTIONS  = YES
+ HTML_INDEX_NUM_ENTRIES = 100
+ GENERATE_DOCSET= YES
+Index: doc/config.doc
+===
+--- doc/config.doc.orig2014-04-13 10:34:33.0 +0200
 doc/config.doc 2014-05-13 09:08:41.420140828 +0200
+@@ -2035,7 +2035,7 @@
+  multiple runs.
+ 
+ 
+-The default value is: codeYES/code.
++The default value is: codeNO/code.
+ 
+ 
+ This tag requires that the tag \ref cfg_generate_html GENERATE_HTML is set 
to \c YES.

++ doxygen-1.8.6-html.tar.bz2 - doxygen-1.8.7-html.tar.bz2 ++
 6605 lines of diff (skipped)

++ doxygen-1.8.6.src.tar.gz - doxygen-1.8.7.src.tar.gz ++
/work/SRC/openSUSE:Factory/doxygen/doxygen-1.8.6.src.tar.gz 
/work/SRC/openSUSE:Factory/.doxygen.new/doxygen-1.8.7.src.tar.gz differ: char 
5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2014-01-03 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2014-01-03 14:57:11

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2013-08-30 
11:36:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2014-01-03 
14:57:12.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan  2 09:28:07 UTC 2014 - pgaj...@suse.com
+
+- updated to 1.8.6:
+  * many bugfixes and features, see
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+for details
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2013-08-30 
11:36:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2014-01-03 
14:57:12.0 +0100
@@ -1,0 +2,8 @@
+Thu Jan  2 09:29:23 UTC 2014 - pgaj...@suse.com
+
+- updated to 1.8.6:
+  * many bugfixes and features, see
+http://www.stack.nl/~dimitri/doxygen/manual/changelog.html
+for details
+
+---

Old:

  doxygen-1.8.5-html.tar.bz2
  doxygen-1.8.5.src.tar.gz
  doxygen_manual-1.8.5.pdf.zip

New:

  doxygen-1.8.6-html.tar.bz2
  doxygen-1.8.6.src.tar.gz
  doxygen_manual-1.8.6.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.JD3Nhs/_old  2014-01-03 14:57:13.0 +0100
+++ /var/tmp/diff_new_pack.JD3Nhs/_new  2014-01-03 14:57:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxygen
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -20,9 +20,11 @@
 BuildRequires:  bison
 BuildRequires:  flex
 BuildRequires:  gcc-c++
+BuildRequires:  graphviz
 BuildRequires:  libpng-devel
+BuildRequires:  python-base
 BuildRequires:  unzip
-Version:1.8.5
+Version:1.8.6
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.JD3Nhs/_old  2014-01-03 14:57:13.0 +0100
+++ /var/tmp/diff_new_pack.JD3Nhs/_new  2014-01-03 14:57:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package doxywizard
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 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
@@ -21,7 +21,7 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
-Version:1.8.5
+Version:1.8.6
 Release:0
 Requires:   doxygen = %{version}
 Summary:Graphical User Interface for Doxygen

++ doxygen-1.5.9-man.patch ++
--- /var/tmp/diff_new_pack.JD3Nhs/_old  2014-01-03 14:57:13.0 +0100
+++ /var/tmp/diff_new_pack.JD3Nhs/_new  2014-01-03 14:57:13.0 +0100
@@ -5,22 +5,22 @@
 
 Index: Makefile.in
 ===
 Makefile.in.orig
-+++ Makefile.in
-@@ -53,8 +53,6 @@ distclean: clean
+--- Makefile.in.orig   2013-10-21 20:09:13.0 +0200
 Makefile.in2014-01-02 10:06:25.115127423 +0100
+@@ -78,8 +78,6 @@
  
  DATE=$(shell date +%B %Y)
  
 -MAN1DIR = man/man1
 -
  install: doxywizard_install doxysearch_install
-   $(INSTTOOL) -d $(DESTDIR)/$(INSTALL)/bin
-   $(INSTTOOL) -m 755 bin/doxygen$(DESTDIR)/$(INSTALL)/bin
+   $(INSTTOOL) -d $(DESTDIR)$(INSTALL)/bin
+   $(INSTTOOL) -m 755 bin/doxygen$(DESTDIR)$(INSTALL)/bin
 Index: configure
 ===
 configure.orig
-+++ configure
-@@ -514,6 +514,7 @@ INSTTOOL  = $f_insttool
+--- configure.orig 2013-12-24 17:14:46.0 +0100
 configure  2014-01-02 10:06:25.115127423 +0100
+@@ -704,6 +704,7 @@
  DOXYDOCS  = ..
  DOCDIR= $f_docdir
  QTDIR = $QTDIR

++ doxygen-1.8.5-html.tar.bz2 - doxygen-1.8.6-html.tar.bz2 ++
 2356 lines of diff (skipped)

++ doxygen-1.8.5.src.tar.gz - doxygen-1.8.6.src.tar.gz ++
/work/SRC/openSUSE:Factory/doxygen/doxygen-1.8.5.src.tar.gz 
/work/SRC/openSUSE:Factory/.doxygen.new/doxygen-1.8.6.src.tar.gz differ: char 
5, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: 

commit doxygen for openSUSE:Factory

2013-08-30 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2013-08-30 11:36:19

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2013-07-04 
10:08:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2013-08-30 
11:36:21.0 +0200
@@ -1,0 +2,9 @@
+Mon Aug 26 08:50:57 UTC 2013 - pgaj...@suse.com
+
+- updated to 1.8.5:
+  * Added SOURCE_TOOLTIPS option for advanced tooltip support while 
+source browsing. 
+  * bugfixes
+- removed upstreamed endless-loop.patch
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2013-06-28 
16:02:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2013-08-30 
11:36:21.0 +0200
@@ -1,0 +2,8 @@
+Mon Aug 26 08:51:31 UTC 2013 - pgaj...@suse.com
+
+- updated to 1.8.5:
+  * Added SOURCE_TOOLTIPS option for advanced tooltip support while
+source browsing.
+  * bugfixes
+
+---

Old:

  doxygen-1.4.8-endless-loop.patch
  doxygen-1.8.4-html.tar.bz2
  doxygen-1.8.4.src.tar.gz
  doxygen_manual-1.8.4.pdf.zip

New:

  doxygen-1.8.5-html.tar.bz2
  doxygen-1.8.5.src.tar.gz
  doxygen_manual-1.8.5.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.H2r6Uj/_old  2013-08-30 11:36:23.0 +0200
+++ /var/tmp/diff_new_pack.H2r6Uj/_new  2013-08-30 11:36:23.0 +0200
@@ -22,7 +22,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  libpng-devel
 BuildRequires:  unzip
-Version:1.8.4
+Version:1.8.5
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+
@@ -37,7 +37,6 @@
 Patch3: %{name}-1.5.9-man.patch
 Patch4: %{name}-1.7.0-modify_footer.patch
 Patch5: %{name}-no-lowercase-man-names.patch
-Patch6: %{name}-1.4.8-endless-loop.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
#
 # SuSE, openSUSE
@@ -72,7 +71,6 @@
 %patch3
 %patch4
 %patch5 -p1
-%patch6 -p1
 cp -v %{S:3} .
 /usr/bin/unzip %{S:3}
 
@@ -89,7 +87,7 @@
 %install
 install -d -m 755 $RPM_BUILD_ROOT%{_docdir}/doxygen
 make install INSTALL=$RPM_BUILD_ROOT/usr 
DOCDIR=$RPM_BUILD_ROOT%{_docdir}/doxygen
-install -m 644 LICENSE LANGUAGE.HOWTO PLATFORMS README VERSION 
$RPM_BUILD_ROOT%{_docdir}/doxygen
+install -m 644 LICENSE LANGUAGE.HOWTO PLATFORMS README.md VERSION 
$RPM_BUILD_ROOT%{_docdir}/doxygen
 cp -a html $RPM_BUILD_ROOT%{_docdir}/doxygen
 cp doxygen_manual-%{version}.pdf $RPM_BUILD_ROOT%{_docdir}/doxygen
 

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.H2r6Uj/_old  2013-08-30 11:36:23.0 +0200
+++ /var/tmp/diff_new_pack.H2r6Uj/_new  2013-08-30 11:36:23.0 +0200
@@ -21,7 +21,7 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libjpeg-devel
-Version:1.8.4
+Version:1.8.5
 Release:0
 Requires:   doxygen = %{version}
 Summary:Graphical User Interface for Doxygen

++ doxygen-1.7.0-modify_footer.patch ++
--- /var/tmp/diff_new_pack.H2r6Uj/_old  2013-08-30 11:36:23.0 +0200
+++ /var/tmp/diff_new_pack.H2r6Uj/_new  2013-08-30 11:36:23.0 +0200
@@ -2,12 +2,15 @@
 ===
 --- src/configoptions.cpp.orig
 +++ src/configoptions.cpp
-@@ -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.,
-- TRUE
-+ FALSE
- );
+@@ -1497,9 +1497,9 @@ 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 this\n
+   to NO can help when comparing the output of multiple runs.\n
+-  The default value is: YES.\n
++  The default value is: NO.\n
+   This tag requires that the tag GENERATE_HTML is set to YES.,
+-  TRUE
++  FALSE
+  );
cb-addDependency(GENERATE_HTML);
//

++ doxygen-1.8.4-html.tar.bz2 - doxygen-1.8.5-html.tar.bz2 ++
 

commit doxygen for openSUSE:Factory

2013-07-04 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2013-07-04 10:08:13

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2013-06-28 
16:02:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2013-07-04 
10:08:14.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul  3 15:36:53 UTC 2013 - dval...@suse.com
+
+- upstream patch to fix endless loop
+  doxygen-1.4.8-endless-loop.patch 
+
+---

New:

  doxygen-1.4.8-endless-loop.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.j3TMOW/_old  2013-07-04 10:08:15.0 +0200
+++ /var/tmp/diff_new_pack.j3TMOW/_new  2013-07-04 10:08:15.0 +0200
@@ -37,6 +37,7 @@
 Patch3: %{name}-1.5.9-man.patch
 Patch4: %{name}-1.7.0-modify_footer.patch
 Patch5: %{name}-no-lowercase-man-names.patch
+Patch6: %{name}-1.4.8-endless-loop.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
#
 # SuSE, openSUSE
@@ -71,6 +72,7 @@
 %patch3
 %patch4
 %patch5 -p1
+%patch6 -p1
 cp -v %{S:3} .
 /usr/bin/unzip %{S:3}
 

++ doxygen-1.4.8-endless-loop.patch ++
commit 5e056236c9ef3b3675d014cab43480700027d60b
Author: Dimitri van Heesch dimi...@stack.nl
Date:   Thu May 30 20:01:15 2013 +0200

Bug 701295 - Doxygen 1.8.4 goes into an endless loop

diff --git a/src/util.cpp b/src/util.cpp
index 0d70d43..0c36fc0 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -1843,11 +1843,15 @@ int findParameterList(const QString name)
 ++templateDepth;
 pos=nextOpenPos-1;
   }
-  else
+  else if (nextClosePos!=-1)
   {
 --templateDepth;
 pos=nextClosePos-1;
   }
+  else // more 's than 's, see bug701295
+  {
+return -1;
+  }
 }
 else
 {

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2013-03-26 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2013-03-26 15:30:15

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2013-03-08 
11:20:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2013-03-26 
15:30:16.0 +0100
@@ -1,0 +2,6 @@
+Tue Mar 26 07:34:31 UTC 2013 - mmeis...@suse.com
+
+- Added url as source.
+  Please see http://en.opensuse.org/SourceUrls
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2013-03-08 
11:20:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2013-03-26 
15:30:16.0 +0100
@@ -1,0 +2,6 @@
+Tue Mar 26 07:35:51 UTC 2013 - mmeis...@suse.com
+
+- Added url as source.
+  Please see http://en.opensuse.org/SourceUrls
+
+---

Old:

  doxygen-1.8.3.1.src.tar.bz2
  doxygen_manual-1.8.3.1.pdf.bz2

New:

  doxygen-1.8.3.1.src.tar.gz
  doxygen_manual-1.8.3.1.pdf.zip



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.0OcajI/_old  2013-03-26 15:30:18.0 +0100
+++ /var/tmp/diff_new_pack.0OcajI/_new  2013-03-26 15:30:18.0 +0100
@@ -21,19 +21,18 @@
 BuildRequires:  flex
 BuildRequires:  gcc-c++
 BuildRequires:  libpng-devel
+BuildRequires:  unzip
 Version:1.8.3.1
 Release:0
 Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+
 Group:  Development/Tools/Doc Generators
 Url:http://www.stack.nl/~dimitri/doxygen/
-# http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
-Source: %{name}-%{version}.src.tar.bz2
+Source: 
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
 # script to get %%source2
 Source1:doxygen-html.sh
 Source2:%{name}-%{version}-html.tar.bz2
-# ftp://ftp.stack.nl/pub/users/dimitri/doxygen_manual-%{version}.pdf.zip
-Source3:%{name}_manual-%{version}.pdf.bz2
+Source3:
ftp://ftp.stack.nl/pub/users/dimitri/doxygen_manual-%{version}.pdf.zip
 Patch:  %{name}-1.5.9-64archs.patch
 Patch3: %{name}-1.5.9-man.patch
 Patch4: %{name}-1.7.0-modify_footer.patch
@@ -73,7 +72,7 @@
 %patch4
 %patch5 -p1
 cp -v %{S:3} .
-bzip2 -d %{name}_manual-%{version}.pdf.bz2
+/usr/bin/unzip %{S:3}
 
 %build
 mintoc=

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.0OcajI/_old  2013-03-26 15:30:18.0 +0100
+++ /var/tmp/diff_new_pack.0OcajI/_new  2013-03-26 15:30:18.0 +0100
@@ -28,7 +28,7 @@
 License:GPL-2.0+
 Group:  Development/Tools/Doc Generators
 Url:http://www.stack.nl/~dimitri/doxygen/
-Source: doxygen-%{version}.src.tar.bz2
+Source: 
http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
 Source1:doxywizard.desktop
 Patch:  doxygen-1.5.9-64archs.patch
 Patch2: %{name}-1.5.9-flex.patch

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2013-03-08 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2013-03-08 10:49:14

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2012-09-17 
13:53:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2013-03-08 
10:49:15.0 +0100
@@ -1,0 +2,66 @@
+Tue Jan 22 08:04:18 UTC 2013 - pgaj...@suse.com
+
+- updated to 1.8.3.1:
+  Changes
+  *  Changed to way the search results for multiple projects can 
+ be linked together. A project is now no longer identified by 
+ the tag files name but via new option EXTERNAL_SEARCH_ID giving 
+ a bit more flexibility.
+  *  Disabled the disk cache for member data. Allows removing quite 
+ some complexity in doxygen and is not really needed now that 
+ 64bit systems with 4GB RAM are becoming more common. Let me 
+ know if you think you benefit from this caching.
+  *  id 691607: Using $relpath$ in a custom footer could lead to 
+ ambiguities when followed by a name that could also be a marker, 
+ like 'search'. Now $relpath^ should be used instead. $relpath$ 
+ is still supported for backward compatibility. 
+
+  New features
+  *  You can now use EXTENSION_MAPPING on files without any 
+ extension using no_extension as placeholder (thanks to 
+ Jason Majors for the patch).
+  *  To make navindex section inside a layout file that 
+ links to a specific URL you can use usergroup with the 
+ url attribute.
+  *  To make navindex section without any link inside a 
+ layout file you can use usergroup with special title 
+ [none]. 
+
+  Details at: http://www.stack.nl/~dimitri/doxygen/changelog.html
+
+---
+Mon Dec 31 08:38:17 UTC 2012 - pgaj...@suse.com
+
+- updated to 1.8.3:
+Changes
+* Expanding the tree in an index page of the HTML output, will 
+  now expand only one level instead of the whole sub-tree.
+* A blockquote in Markdown does no longer require a whitespace 
+  after the last '' if the '' is followed by a newline.
+* id 682718: Included patch to add version info to all 
+  generated template files (headers, footers, stylesheets, 
+  layout files, etc). 
+New features
+* Added support for using external tools to index and search 
+  through the HTML documentation. An example index tool is 
+  provided (doxyindexer) and an example search engine 
+  (doxysearch.cgi). To configure the external search engine 
+  the following new options are added to the configuration 
+  file: EXTERNAL_SEARCH (to enable the feature), 
+  SEARCHENGINE_URL (to specify the URL of the search engine), 
+  SEARCHDATA_FILE (to specify the name of the raw search 
+  data to index), EXTRA_SEARCH_MAPPINGS (for search through 
+  multiple projects). See the manual for details.
+* Added USE_MDFILE_AS_MAINPAGE config option to select a 
+  markdown page to be used as the main page.
+* id 630645: This patch (contributed by Albert) adds support 
+  for simple logic expressions for \cond, \if, and friends, 
+  i.e. you can do \if (SOME_SECTION_NAME  
+  (!THIS_ALTERNATIVE || THAT_ALTERNATIVE))
+* id 684152: Patch (contributed by Albert) adds a new 
+  configuration option MATHJAX_FORMAT to select the MathJax 
+  output format. Options are HTML-CSS, NativeMML, or SVG. 
+Bug Fixes
+  * see http://www.stack.nl/~dimitri/doxygen/changelog.html
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2012-09-17 
13:53:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2013-03-08 
10:49:16.0 +0100
@@ -1,0 +2,31 @@
+Tue Jan 22 08:07:54 UTC 2013 - pgaj...@suse.com
+
+- updated to 1.8.3.1:
+  Changes
+  *  Changed to way the search results for multiple projects can
+ be linked together. A project is now no longer identified by
+ the tag files name but via new option EXTERNAL_SEARCH_ID giving
+ a bit more flexibility.
+  *  Disabled the disk cache for member data. Allows removing quite
+ some complexity in doxygen and is not really needed now that
+ 64bit systems with 4GB RAM are becoming more common. Let me
+ know if you think you benefit from this caching.
+  *  id 691607: Using $relpath$ in a custom footer could lead to
+ ambiguities when followed by a name that could also be a marker,
+ like 'search'. Now $relpath^ should be used instead. $relpath$
+ is still supported for backward compatibility.
+
+  New features

commit doxygen for openSUSE:Factory

2012-07-13 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2012-07-13 11:30:56

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2012-06-06 
16:06:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2012-07-13 
11:30:58.0 +0200
@@ -1,0 +2,28 @@
+Fri Jul 13 08:22:15 UTC 2012 - pgaj...@suse.com
+
+- updated to 1.8.1.2:
+  changes
+  * doxygen now strips the leading indentation shared by the lines 
+in a @code..@endcode block. 
+  * id 678218: Changed title of the SVG graphs from 'G' to the root 
+node of the graph. 
+  * Integrated the root navigation tree in navtree.js for faster 
+loading
+  * When the navigation tree is enabled, clicking jump to a line 
+in the source code view will now highlight the line. 
+  features
+  * Added button in the navigation tree to allow enabling/disabling 
+syncing the navigation tree with the content.
+  * Extended the number of HTML entities with Greek letters and 
+other symbols (thanks to Charles Karney for the patch).
+  * id 663645: Added support for C++11 strongly typed enums (enum 
+class E { ... }). 
+  * VHDL code now has a new Design Overview page (thanks for 
+Martin Kreis for the patch). Requires HAVE_DOT=YES, and 
+DOT_IMAGE_FORMAT=svg.
+  * id 677678: Added support for strong and weak attributes in 
+Objective-C properties. 
+  * bugfixes
+- for details see http://www.stack.nl/~dimitri/doxygen/changelog.html
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2012-04-17 
21:58:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2012-07-13 
11:30:58.0 +0200
@@ -1,0 +2,28 @@
+Fri Jul 13 08:27:44 UTC 2012 - pgaj...@suse.com
+
+- updated to 1.8.1.2:
+  changes
+  * doxygen now strips the leading indentation shared by the lines
+in a @code..@endcode block.
+  * id 678218: Changed title of the SVG graphs from 'G' to the root
+node of the graph.
+  * Integrated the root navigation tree in navtree.js for faster
+loading
+  * When the navigation tree is enabled, clicking jump to a line
+in the source code view will now highlight the line.
+  features
+  * Added button in the navigation tree to allow enabling/disabling
+syncing the navigation tree with the content.
+  * Extended the number of HTML entities with Greek letters and
+other symbols (thanks to Charles Karney for the patch).
+  * id 663645: Added support for C++11 strongly typed enums (enum
+class E { ... }).
+  * VHDL code now has a new Design Overview page (thanks for
+Martin Kreis for the patch). Requires HAVE_DOT=YES, and
+DOT_IMAGE_FORMAT=svg.
+  * id 677678: Added support for strong and weak attributes in
+Objective-C properties.
+  * bugfixes
+- for details see http://www.stack.nl/~dimitri/doxygen/changelog.html
+
+---

Old:

  doxygen-1.8.1-html.tar.bz2
  doxygen-1.8.1.src.tar.bz2
  doxygen_manual-1.8.1.pdf.bz2

New:

  doxygen-1.8.1.2-html.tar.bz2
  doxygen-1.8.1.2.src.tar.bz2
  doxygen_manual-1.8.1.2.pdf.bz2



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.CQKyk4/_old  2012-07-13 11:31:00.0 +0200
+++ /var/tmp/diff_new_pack.CQKyk4/_new  2012-07-13 11:31:00.0 +0200
@@ -16,14 +16,16 @@
 #
 
 
-
 Name:   doxygen
-BuildRequires:  bison flex gcc-c++ libpng-devel
-Version:1.8.1
-Release:1
+BuildRequires:  bison
+BuildRequires:  flex
+BuildRequires:  gcc-c++
+BuildRequires:  libpng-devel
+Version:1.8.1.2
+Release:0
+Summary:Automated C, C++, and Java Documentation Generator
 License:GPL-2.0+
 Group:  Development/Tools/Doc Generators
-Summary:Automated C, C++, and Java Documentation Generator
 Url:http://www.stack.nl/~dimitri/doxygen/
 # http://ftp.stack.nl/pub/users/dimitri/doxygen-%{version}.src.tar.gz
 Source: %{name}-%{version}.src.tar.bz2

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.CQKyk4/_old  2012-07-13 11:31:00.0 +0200
+++ /var/tmp/diff_new_pack.CQKyk4/_new  2012-07-13 11:31:00.0 +0200
@@ -16,15 +16,17 @@
 #
 
 
-
 Name:   doxywizard
-BuildRequires:  bison flex gcc-c++ libjpeg-devel
-Version:1.8.1
-Release:1
+BuildRequires:  bison
+BuildRequires:  flex
+BuildRequires:  gcc-c++
+BuildRequires:  libjpeg-devel
+Version:1.8.1.2
+Release:

commit doxygen for openSUSE:Factory

2012-06-06 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2012-06-06 16:06:26

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2012-05-31 
17:03:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2012-06-06 
16:06:28.0 +0200
@@ -1,0 +2,10 @@
+Mon Jun  4 10:15:13 UTC 2012 - pgaj...@suse.com
+
+- 1.8.1 generates man page names uncondidionally lowercase which
+  causes problem for lapack build for example; reverting one hunk 
+  of fix for
+  https://bugzilla.gnome.org/show_bug.cgi?id=674563
+  as workaround
+  * no-lowercase-man-names.patch
+
+---

New:

  doxygen-no-lowercase-man-names.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.rR6YJ6/_old  2012-06-06 16:06:30.0 +0200
+++ /var/tmp/diff_new_pack.rR6YJ6/_new  2012-06-06 16:06:30.0 +0200
@@ -35,6 +35,7 @@
 Patch:  %{name}-1.5.9-64archs.patch
 Patch3: %{name}-1.5.9-man.patch
 Patch4: %{name}-1.7.0-modify_footer.patch
+Patch5: %{name}-no-lowercase-man-names.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
#
 # SuSE, openSUSE
@@ -68,6 +69,7 @@
 %patch
 %patch3
 %patch4
+%patch5 -p1
 cp -v %{S:3} .
 bzip2 -d %{name}_manual-%{version}.pdf.bz2
 

++ doxygen-no-lowercase-man-names.patch ++
Index: doxygen-1.8.1/src/fortranscanner.l
===
--- doxygen-1.8.1.orig/src/fortranscanner.l
+++ doxygen-1.8.1/src/fortranscanner.l
@@ -1892,7 +1891,6 @@ static void initEntry()
 */
 static void addCurrentEntry(int case_insens)
 {
-  if (case_insens) current-name = current-name.lower();
   //printf(===Adding entry %s to %s\n, current-name.data(), 
current_root-name.data());
   current_root-addSubEntry(current);
   last_entry = current;

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2012-05-31 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2012-05-31 17:03:13

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2012-04-17 
21:58:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2012-05-31 
17:03:52.0 +0200
@@ -1,0 +2,10 @@
+Mon May 21 07:10:38 UTC 2012 - pgaj...@suse.com
+
+- updated to 1.8.1:
+  * Included a couple of performance improvements.
+  * Changed the way indexes (Class,File,Namespace,Groups) are rendered.
+  * Changed the way member attributes (like protected, virtual, and 
+static) are rendered in the HTML output
+  * more info at http://www.stack.nl/~dimitri/doxygen/changelog.html
+
+---

Old:

  doxygen-1.8.0svn20120416-html.tar.bz2
  doxygen-1.8.0svn20120416.src.tar.bz2
  doxygen_manual-1.8.0svn20120416.pdf.bz2

New:

  doxygen-1.8.1-html.tar.bz2
  doxygen-1.8.1.src.tar.bz2
  doxygen_manual-1.8.1.pdf.bz2



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.sUEfle/_old  2012-05-31 17:03:53.0 +0200
+++ /var/tmp/diff_new_pack.sUEfle/_new  2012-05-31 17:03:53.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   doxygen
 BuildRequires:  bison flex gcc-c++ libpng-devel
-Version:1.8.0svn20120416
+Version:1.8.1
 Release:1
 License:GPL-2.0+
 Group:  Development/Tools/Doc Generators

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.sUEfle/_old  2012-05-31 17:03:53.0 +0200
+++ /var/tmp/diff_new_pack.sUEfle/_new  2012-05-31 17:03:53.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   doxywizard
 BuildRequires:  bison flex gcc-c++ libjpeg-devel
-Version:1.8.0svn20120416
+Version:1.8.1
 Release:1
 Requires:   doxygen = %{version}
 License:GPL-2.0+

++ doxygen-1.8.0svn20120416-html.tar.bz2 - doxygen-1.8.1-html.tar.bz2 
++
 9434 lines of diff (skipped)

++ doxygen-1.8.0svn20120416.src.tar.bz2 - doxygen-1.8.1.src.tar.bz2 ++
/work/SRC/openSUSE:Factory/doxygen/doxygen-1.8.0svn20120416.src.tar.bz2 
/work/SRC/openSUSE:Factory/.doxygen.new/doxygen-1.8.1.src.tar.bz2 differ: char 
11, line 1

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2012-04-17 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2012-04-17 21:57:49

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2012-02-28 
14:12:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2012-04-17 
21:58:13.0 +0200
@@ -1,0 +2,6 @@
+Mon Apr 16 09:05:22 UTC 2012 - pgaj...@suse.com
+
+- updated to 1.8.0svn20120416:
+  * fixed crash [bnc#755402]
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2012-02-28 
14:12:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2012-04-17 
21:58:14.0 +0200
@@ -1,0 +2,11 @@
+Mon Apr 16 09:06:54 UTC 2012 - pgaj...@suse.com
+
+- updated to 1.8.0svn20120416:
+  * fixed crash [bnc#755402]
+
+---
+Tue Feb 28 07:58:22 UTC 2012 - pgaj...@suse.com
+
+- removing unneeded warnings.patch
+
+---

Old:

  doxygen-1.7.0-warnings.patch
  doxygen-1.8.0-html.tar.bz2
  doxygen-1.8.0.src.tar.bz2
  doxygen_manual-1.8.0.pdf.bz2

New:

  doxygen-1.8.0svn20120416-html.tar.bz2
  doxygen-1.8.0svn20120416.src.tar.bz2
  doxygen_manual-1.8.0svn20120416.pdf.bz2



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.RMcmLb/_old  2012-04-17 21:58:15.0 +0200
+++ /var/tmp/diff_new_pack.RMcmLb/_new  2012-04-17 21:58:15.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   doxygen
 BuildRequires:  bison flex gcc-c++ libpng-devel
-Version:1.8.0
+Version:1.8.0svn20120416
 Release:1
 License:GPL-2.0+
 Group:  Development/Tools/Doc Generators
@@ -76,7 +76,7 @@
 %ifarch ppc64
 mintoc=-DENGLISH_ONLY
 %endif
-sed -i~ /^TMAKE_CFLAGS_RELEASE.*/s@^.*@TMAKE_CFLAGS_RELEASE = $RPM_OPT_FLAGS 
$mintoc@ tmake/lib/linux-g++/tmake.conf
+sed -i~ /^TMAKE_CFLAGS_RELEASE.*/s@^.*@TMAKE_CFLAGS_RELEASE = $RPM_OPT_FLAGS 
-O0 $mintoc@ tmake/lib/linux-g++/tmake.conf
 # custom configure script
 ./configure --prefix /usr --install /usr/bin/install
 make %{?_smp_mflags}

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.RMcmLb/_old  2012-04-17 21:58:15.0 +0200
+++ /var/tmp/diff_new_pack.RMcmLb/_new  2012-04-17 21:58:15.0 +0200
@@ -19,7 +19,7 @@
 
 Name:   doxywizard
 BuildRequires:  bison flex gcc-c++ libjpeg-devel
-Version:1.8.0
+Version:1.8.0svn20120416
 Release:1
 Requires:   doxygen = %{version}
 License:GPL-2.0+
@@ -32,7 +32,6 @@
 Patch2: %{name}-1.5.9-flex.patch
 Patch5: doxygen-1.5.9-man.patch
 Patch6: doxygen-1.7.1-qtdir.patch
-Patch100:   doxygen-1.7.0-warnings.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
#
 # SuSE, openSUSE
@@ -72,7 +71,6 @@
 %if 0%{?suse_version}
 %patch6
 %endif
-%patch100
 
 %build
 %if 0%{?suse_version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2012-02-28 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2012-02-28 14:12:28

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2011-12-14 
14:33:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2012-02-28 
14:12:30.0 +0100
@@ -1,0 +2,12 @@
+Mon Feb 27 09:47:59 UTC 2012 - pgaj...@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
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2011-12-14 
14:33:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2012-02-28 
14:12:30.0 +0100
@@ -1,0 +2,12 @@
+Mon Feb 27 09:51:17 UTC 2012 - pgaj...@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
+
+---

Old:

  doxygen-1.7.6.1-html.tar.bz2
  doxygen-1.7.6.1.src.tar.bz2
  doxygen_manual-1.7.6.1.pdf.bz2

New:

  doxygen-1.8.0-html.tar.bz2
  doxygen-1.8.0.src.tar.bz2
  doxygen_manual-1.8.0.pdf.bz2



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.F2WZYc/_old  2012-02-28 14:12:32.0 +0100
+++ /var/tmp/diff_new_pack.F2WZYc/_new  2012-02-28 14:12:32.0 +0100
@@ -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 @@
 %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

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.F2WZYc/_old  2012-02-28 14:12:32.0 +0100
+++ /var/tmp/diff_new_pack.F2WZYc/_new  2012-02-28 14:12:32.0 +0100
@@ -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+

++ doxygen-1.7.0-warnings.patch ++
--- /var/tmp/diff_new_pack.F2WZYc/_old  2012-02-28 14:12:32.0 +0100
+++ /var/tmp/diff_new_pack.F2WZYc/_new  2012-02-28 14:12:32.0 +0100
@@ -2,29 +2,12 @@
 ===
 --- 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 (c0)
-+   

commit doxygen for openSUSE:Factory

2011-12-14 Thread h_root
Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory checked 
in at 2011-12-14 14:33:13

Comparing /work/SRC/openSUSE:Factory/doxygen (Old)
 and  /work/SRC/openSUSE:Factory/.doxygen.new (New)


Package is doxygen, Maintainer is pgaj...@suse.com

Changes:

--- /work/SRC/openSUSE:Factory/doxygen/doxygen.changes  2011-10-02 
09:57:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxygen.changes 2011-12-14 
14:33:18.0 +0100
@@ -1,0 +2,53 @@
+Mon Dec 12 08:59:26 UTC 2011 - pgaj...@suse.com
+
+- updated to 1.7.6.1:
+   * Doxygen now reports its cache usage (for the symbol and the 
+ lookup cache) at the end of a run (if QUIET=NO), and 
+ recommends settings for SYMBOL_CACHE_SIZE and 
+ LOOKUP_CACHE_SIZE for your project if either cache is too 
+ small. 
+   * Added new option LOOKUP_CACHE_SIZE to control the internal 
+ cache doxygen uses to find symbols given their name and 
+ a context. 
+   * Python: added support for @staticmethod.
+   * Python: scopes are now shown with . instead of :: 
+   * id 665313: Space before @if was not preserved, causing 
+ problems with inline @if .. @endif constructs.
+   * id 665583: Fixed XHTML validity problem when using mscgen 
+ graphs. 
+   * id 665641: Fixed XHTML validity problem when 
+ GENERATE_TREEVIEW was disabled. 
+   * id 665720: Included patch to fix hang issue when non-empty 
+ INCLUDE_PATH was used.
+   * id 665778: Fixed parse issue when a comma appeared as part 
+ of an enum's value. 
+
+---
+Mon Dec  5 09:38:29 UTC 2011 - pgaj...@suse.com
+
+- updated to 1.7.6:
+   * To improve the performance of loading the navigation tree, 
+ the data is now split into multiple javascript files which 
+ are loaded dynamically.
+   * The selected member is now briefly highlighted in the HTML 
+ output (when GENERATE_TREEVIEW is enabled).
+   * The navigation tree (GENERATE_TREEVIEW) now shows the same 
+ information as the index.
+   * The navindex section of layout now also controls what is 
+ shown in the navigation tree.
+   * Improved HTML output support for IE9.
+   * Included redesigned VHDL parser (thanks to Martin Kreis 
+ for the patch)
+   * When a class/structs has many (15) members of the same type, 
+ only the first 10 are shown in the UML diagram.
+   * Made the output of the javascript based search engine more 
+ compact.  
+   * Update of the French translation.
+   * id 607305: Added support for PHP heredoc and nowdoc constructs.
+   * Added support for cross-referencing in case of operator- 
+ overloading. This includes support for std::auto_ptr,
+ std::smart_ptr,std::unique_ptr and std::weak_ptr when 
+ BUILTIN_STL_SUPPORT is enabled. 
+   * bugfixes
+
+---
--- /work/SRC/openSUSE:Factory/doxygen/doxywizard.changes   2011-10-02 
09:57:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.doxygen.new/doxywizard.changes  2011-12-14 
14:33:18.0 +0100
@@ -1,0 +2,28 @@
+Mon Dec  5 09:44:06 UTC 2011 - pgaj...@suse.com
+
+- updated to 1.7.6:
+   * To improve the performance of loading the navigation tree,
+ the data is now split into multiple javascript files which
+ are loaded dynamically.
+   * The selected member is now briefly highlighted in the HTML
+ output (when GENERATE_TREEVIEW is enabled).
+   * The navigation tree (GENERATE_TREEVIEW) now shows the same
+ information as the index.
+   * The navindex section of layout now also controls what is
+ shown in the navigation tree.
+   * Improved HTML output support for IE9.
+   * Included redesigned VHDL parser (thanks to Martin Kreis
+ for the patch)
+   * When a class/structs has many (15) members of the same type,
+ only the first 10 are shown in the UML diagram.
+   * Made the output of the javascript based search engine more
+ compact.
+   * Update of the French translation.
+   * id 607305: Added support for PHP heredoc and nowdoc constructs.
+   * Added support for cross-referencing in case of operator-
+ overloading. This includes support for std::auto_ptr,
+ std::smart_ptr,std::unique_ptr and std::weak_ptr when
+ BUILTIN_STL_SUPPORT is enabled.
+   * bugfixes
+
+---

Old:

  doxygen-1.7.5.1-html.tar.bz2
  doxygen-1.7.5.1.src.tar.bz2
  doxygen_manual-1.7.5.1.pdf.bz2

New:

  doxygen-1.7.6.1-html.tar.bz2
  doxygen-1.7.6.1.src.tar.bz2
  doxygen_manual-1.7.6.1.pdf.bz2



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.ErVm6h/_old  2011-12-14 

commit doxygen for openSUSE:Factory

2011-10-02 Thread h_root

Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory
checked in at Sun Oct 2 09:57:36 CEST 2011.




--- openSUSE:Factory/doxygen/doxygen.changes2011-09-23 01:55:51.0 
+0200
+++ /mounts/work_src_done/STABLE/doxygen/doxygen.changes2011-09-30 
13:00:11.0 +0200
@@ -1,0 +2,12 @@
+Fri Sep 30 12:59:51 CEST 2011 - dmuel...@suse.de
+
+- remove arm specific patch that broke building on arm
+
+---
+Sun Sep 18 17:17:12 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+  (cf. packaging guidelines)
+- Use %_smp_mflags for parallel build
+
+---
--- openSUSE:Factory/doxygen/doxywizard.changes 2011-09-23 01:55:51.0 
+0200
+++ /mounts/work_src_done/STABLE/doxygen/doxywizard.changes 2011-09-18 
19:34:14.0 +0200
@@ -1,0 +2,7 @@
+Sun Sep 18 17:17:12 UTC 2011 - jeng...@medozas.de
+
+- Remove redundant tags/sections from specfile
+  (cf. packaging guidelines)
+- Use %_smp_mflags for parallel build
+
+---

calling whatdependson for head-i586


Old:

  doxygen-1.5.9-arm.patch



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.woueth/_old  2011-10-02 09:57:32.0 +0200
+++ /var/tmp/diff_new_pack.woueth/_new  2011-10-02 09:57:32.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   doxygen
@@ -34,7 +33,6 @@
 # ftp://ftp.stack.nl/pub/users/dimitri/doxygen_manual-%{version}.pdf.zip
 Source3:%{name}_manual-%{version}.pdf.bz2
 Patch:  %{name}-1.5.9-64archs.patch
-Patch2: %{name}-1.5.9-arm.patch
 Patch3: %{name}-1.5.9-man.patch
 Patch4: %{name}-1.7.0-modify_footer.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -65,16 +63,9 @@
 developed on a Linux platform, but it runs on most other UNIX flavors
 as well. An executable for Windows 95/NT is also available.
 
-
-
-Authors:
-
-Dimitri van Heesch dimi...@stack.nl
-
 %prep
 %setup -q -b 2
 %patch
-%patch2
 %patch3
 %patch4
 cp -v %{S:3} .
@@ -86,8 +77,9 @@
 mintoc=-DENGLISH_ONLY
 %endif
 sed -i~ /^TMAKE_CFLAGS_RELEASE.*/s@^.*@TMAKE_CFLAGS_RELEASE = $RPM_OPT_FLAGS 
$mintoc@ tmake/lib/linux-g++/tmake.conf
+# custom configure script
 ./configure --prefix /usr --install /usr/bin/install
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
 install -d -m 755 $RPM_BUILD_ROOT%{_docdir}/doxygen
@@ -96,9 +88,6 @@
 cp -a html $RPM_BUILD_ROOT%{_docdir}/doxygen
 cp doxygen_manual-%{version}.pdf $RPM_BUILD_ROOT%{_docdir}/doxygen
 
-%clean
-rm -rf  %{buildroot}
-
 %files
 %defattr(-,root,root)
 %doc %{_docdir}/doxygen

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.woueth/_old  2011-10-02 09:57:32.0 +0200
+++ /var/tmp/diff_new_pack.woueth/_new  2011-10-02 09:57:32.0 +0200
@@ -15,7 +15,6 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
 
 Name:   doxywizard
@@ -31,7 +30,6 @@
 Source1:doxywizard.desktop
 Patch:  doxygen-1.5.9-64archs.patch
 Patch2: %{name}-1.5.9-flex.patch
-Patch4: doxygen-1.5.9-arm.patch
 Patch5: doxygen-1.5.9-man.patch
 Patch6: doxygen-1.7.1-qtdir.patch
 Patch100:   doxygen-1.7.0-warnings.patch
@@ -66,17 +64,10 @@
 Doxywizard is a graphical front-end to read/edit/write doxygen
 configuration files.
 
-
-
-Authors:
-
-Dimitri van Heesch dimi...@stack.nl
-
 %prep
 %setup -q -n doxygen-%{version}
 %patch
 %patch2
-%patch4
 %patch5
 %if 0%{?suse_version}
 %patch6
@@ -102,8 +93,9 @@
 mintoc=-DENGLISH_ONLY
 %endif
 sed -i~ /^TMAKE_CFLAGS_RELEASE.*/s@^.*@TMAKE_CFLAGS_RELEASE = $RPM_OPT_FLAGS 
$mintoc@ tmake/lib/linux-g++/tmake.conf
+# custom configure script
 ./configure --with-doxywizard
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
 make install INSTALL=$RPM_BUILD_ROOT/usr
@@ -120,9 +112,6 @@
 %endif
 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/{doxygen,doxytag}.1
 
-%clean
-rm -rf  %{buildroot}
-
 %files
 %defattr(-,root,root)
 %attr(755,root,root) /usr/bin/doxywizard


continue with q...



Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit doxygen for openSUSE:Factory

2011-08-22 Thread h_root

Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory
checked in at Mon Aug 22 15:16:44 CEST 2011.




--- doxygen/doxygen.changes 2011-08-15 11:38:02.0 +0200
+++ /mounts/work_src_done/STABLE/doxygen/doxygen.changes2011-08-22 
10:45:46.0 +0200
@@ -1,0 +2,7 @@
+Mon Aug 22 08:35:24 UTC 2011 - pgaj...@novell.com
+
+- update to 1.7.5.1:
+  * A bug that could cause doxygen to crash on large projects was 
+fixed.
+
+---

calling whatdependson for head-i586


Old:

  doxygen-1.7.5-html.tar.bz2
  doxygen-1.7.5.src.tar.bz2
  doxygen_manual-1.7.5.pdf.bz2

New:

  doxygen-1.7.5.1-html.tar.bz2
  doxygen-1.7.5.1.src.tar.bz2
  doxygen_manual-1.7.5.1.pdf.bz2



Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.6z2rMA/_old  2011-08-22 15:14:48.0 +0200
+++ /var/tmp/diff_new_pack.6z2rMA/_new  2011-08-22 15:14:48.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   doxygen
 BuildRequires:  bison flex gcc-c++ libpng-devel
-Version:1.7.5
+Version:1.7.5.1
 Release:1
 License:GPLv2+
 Group:  Development/Tools/Doc Generators

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.6z2rMA/_old  2011-08-22 15:14:48.0 +0200
+++ /var/tmp/diff_new_pack.6z2rMA/_new  2011-08-22 15:14:48.0 +0200
@@ -20,7 +20,7 @@
 
 Name:   doxywizard
 BuildRequires:  bison flex gcc-c++ libjpeg-devel
-Version:1.7.5
+Version:1.7.5.1
 Release:1
 Requires:   doxygen = %{version}
 License:GPLv2+

++ doxygen-1.7.5-html.tar.bz2 - doxygen-1.7.5.1-html.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/doxygen-1.7.5/html/arch.html 
new/doxygen-1.7.5.1/html/arch.html
--- old/doxygen-1.7.5/html/arch.html2011-08-14 13:05:41.0 +0200
+++ new/doxygen-1.7.5.1/html/arch.html  2011-08-20 22:20:50.0 +0200
@@ -36,7 +36,7 @@
 /table
 /div
 
-!-- Generated by Doxygen 1.7.5 --
+!-- Generated by Doxygen 1.7.5.1 --
 /div
 div class=header
   div class=headertitle
@@ -143,9 +143,9 @@
 
 
 hr class=footer/address class=footersmall
-Generated on Sun Aug 14 2011 13:05:41 for Doxygen manual by #160;a 
href=http://www.doxygen.org/index.html;
+Generated on Sat Aug 20 2011 22:20:50 for Doxygen manual by #160;a 
href=http://www.doxygen.org/index.html;
 img class=footer src=doxygen.png alt=doxygen/
-/a 1.7.5
+/a 1.7.5.1
 /small/address
 
 /body
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/doxygen-1.7.5/html/autolink.html 
new/doxygen-1.7.5.1/html/autolink.html
--- old/doxygen-1.7.5/html/autolink.html2011-08-14 13:05:41.0 
+0200
+++ new/doxygen-1.7.5.1/html/autolink.html  2011-08-20 22:20:49.0 
+0200
@@ -36,7 +36,7 @@
 /table
 /div
 
-!-- Generated by Doxygen 1.7.5 --
+!-- Generated by Doxygen 1.7.5.1 --
 /div
 div class=header
   div class=headertitle
@@ -233,9 +233,9 @@
 
 
 hr class=footer/address class=footersmall
-Generated on Sun Aug 14 2011 13:05:41 for Doxygen manual by #160;a 
href=http://www.doxygen.org/index.html;
+Generated on Sat Aug 20 2011 22:20:49 for Doxygen manual by #160;a 
href=http://www.doxygen.org/index.html;
 img class=footer src=doxygen.png alt=doxygen/
-/a 1.7.5
+/a 1.7.5.1
 /small/address
 
 /body
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/doxygen-1.7.5/html/commands.html 
new/doxygen-1.7.5.1/html/commands.html
--- old/doxygen-1.7.5/html/commands.html2011-08-14 13:05:41.0 
+0200
+++ new/doxygen-1.7.5.1/html/commands.html  2011-08-20 22:20:50.0 
+0200
@@ -36,7 +36,7 @@
 /table
 /div
 
-!-- Generated by Doxygen 1.7.5 --
+!-- Generated by Doxygen 1.7.5.1 --
 /div
 div class=header
   div class=headertitle
@@ -745,7 +745,7 @@
  *  \authorJohn Doe
  *  \authorJan Doe
  *  \version   4.1a
- *  \date  1990-2010
+ *  \date  1990-2011
  *  \pre   First initialize the system.
  *  \bug   Not all memory is freed when deleting an object of this class.
  *  \warning   Improper use can crash your application
@@ -1669,9 +1669,9 @@
 
 
 hr class=footer/address class=footersmall
-Generated on Sun Aug 14 2011 13:05:41 for Doxygen manual by #160;a 
href=http://www.doxygen.org/index.html;
+Generated on Sat Aug 20 2011 22:20:50 for Doxygen manual by #160;a 
href=http://www.doxygen.org/index.html;
 img class=footer src=doxygen.png alt=doxygen/
-/a 1.7.5
+/a 1.7.5.1
 /small/address
 
 /body
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/doxygen-1.7.5/html/config.html 
new/doxygen-1.7.5.1/html/config.html
--- old/doxygen-1.7.5/html/config.html  2011-08-14 13:05:41.0 +0200
+++ 

commit doxygen for openSUSE:Factory

2011-08-15 Thread h_root

Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory
checked in at Mon Aug 15 14:12:42 CEST 2011.




--- doxygen/doxygen.changes 2011-03-29 11:23:58.0 +0200
+++ /mounts/work_src_done/STABLE/doxygen/doxygen.changes2011-08-15 
11:38:02.0 +0200
@@ -1,0 +2,41 @@
+Mon Aug 15 09:26:47 UTC 2011 - pgaj...@novell.com
+
+- update to 1.7.5:
+  * id 641904: Function in the call graphs are now shown based on first 
+appearance rather then alphabetical order.  
+  * id 616213: When customizing the HTML header $title now only generates 
+the title excluding the project name (which can still be  
+added using $projectname)  
 
+  * Improved the look of the class index: all items now have equal spacing.
+  * New option INTERACTIVE_SVG which when set to YES in combination with 
+DOT_IMAGE_FORMAT=svg will make doxygen generate interactive SVG 
+diagrams that support zooming and panning via the mouse (only for 
+large graphs).
+  * Added support for the Tcl programming language (thanks to Rene Zaumseil
+and Samuel Bentley for the patch).  
+  * Added @copyright command.  
 
+  * added option MATHJAX_EXTENSIONS to provide additional extensions for 
+MathJax (thanks to David Munger for the patch).
+  * added option INLINE_SIMPLE_STRUCTS which when enabled shows the fields 
+of simple classes and structs (with only public data fields) as a table 
+and inline in context (file/group/namespace/class) 
+provided this context is documented.  
+  * When using the server based search engine (SEARCHENGINE=YES and 
+SERVER_BASED_SEARCH=YES) doxygen now advertises a opensearch provider 
+for your project, that allows integrating the search directly in the 
+search field of the browser (thanks to Phil Lello for the patch). 
+  * id 503239: Added new option CITE_BIB_FILES and LATEX_BIB_STYLE and a new 
+command \cite, allowing you to make references to literature (as defined 
+in one or more .bib files). This also works for output formats other 
+than LaTeX. The tool bibtex is required for this to work though. Thanks 
+to David Munger for the initial patch upon which this feature is based.

+  * PHP namespaces are now shown as A\B in the output. 
 
+  * Added new \snippet command that can be used to include marked sections 
+from a source file. See http://www.doxygen.org/commands.html#cmdsnippet 
+for more info. 

+  * Added translation support for Armenian, thank to Armen Tangamyan. and 
+included translation updates for a number of languages.  
+  * Many bug fixes, for details see 
+http://www.stack.nl/~dimitri/doxygen/changelog.html.
+
+---
--- doxygen/doxywizard.changes  2011-07-27 11:23:10.0 +0200
+++ /mounts/work_src_done/STABLE/doxygen/doxywizard.changes 2011-08-15 
11:38:03.0 +0200
@@ -1,0 +2,42 @@
+Mon Aug 15 09:37:23 UTC 2011 - pgaj...@novell.com
+
+- update to 1.7.5:
+  * id 641904: Function in the call graphs are now shown based on first
+appearance rather then alphabetical order.
+  * id 616213: When customizing the HTML header $title now only generates
+the title excluding the project name (which can still be
+added using $projectname)
+  * Improved the look of the class index: all items now have equal spacing.
+  * New option INTERACTIVE_SVG which when set to YES in combination with
+DOT_IMAGE_FORMAT=svg will make doxygen generate interactive SVG
+diagrams that support zooming and panning via the mouse (only for
+large graphs).
+  * Added support for the Tcl programming language (thanks to Rene Zaumseil
+and Samuel Bentley for the patch).
+  * Added @copyright command.
+  * added option MATHJAX_EXTENSIONS to provide additional extensions for
+MathJax (thanks to David Munger for the patch).
+  * added option INLINE_SIMPLE_STRUCTS which when enabled shows the fields
+of simple classes and structs (with only public data fields) as a table
+and inline in context (file/group/namespace/class)
+provided this context is documented.
+  * When using the server based search engine (SEARCHENGINE=YES and
+SERVER_BASED_SEARCH=YES) doxygen now advertises a opensearch provider
+for your project, that allows integrating the search directly in the
+search field of the browser (thanks to Phil Lello for the patch).
+  * id 503239: Added new 

commit doxygen for openSUSE:Factory

2011-07-27 Thread h_root

Hello community,

here is the log from the commit of package doxygen for openSUSE:Factory
checked in at Wed Jul 27 16:02:58 CEST 2011.




--- doxygen/doxywizard.changes  2011-03-29 11:24:12.0 +0200
+++ /mounts/work_src_done/STABLE/doxygen/doxywizard.changes 2011-07-27 
11:23:10.0 +0200
@@ -1,0 +2,5 @@
+Wed Jul 27 11:23:00 CEST 2011 - dmuel...@suse.de
+
+- remove explicit dependency on libdrm-devel
+
+---

calling whatdependson for head-i586




Other differences:
--
++ doxygen.spec ++
--- /var/tmp/diff_new_pack.27qjgG/_old  2011-07-27 16:01:35.0 +0200
+++ /var/tmp/diff_new_pack.27qjgG/_new  2011-07-27 16:01:35.0 +0200
@@ -21,7 +21,7 @@
 Name:   doxygen
 BuildRequires:  bison flex gcc-c++ libpng-devel
 Version:1.7.4
-Release:1
+Release:3
 License:GPLv2+
 Group:  Development/Tools/Doc Generators
 Summary:Automated C, C++, and Java Documentation Generator

++ doxywizard.spec ++
--- /var/tmp/diff_new_pack.27qjgG/_old  2011-07-27 16:01:35.0 +0200
+++ /var/tmp/diff_new_pack.27qjgG/_new  2011-07-27 16:01:35.0 +0200
@@ -19,9 +19,9 @@
 
 
 Name:   doxywizard
-BuildRequires:  bison flex gcc-c++ libdrm-devel libjpeg-devel
+BuildRequires:  bison flex gcc-c++ libjpeg-devel
 Version:1.7.4
-Release:1
+Release:2
 Requires:   doxygen = %{version}
 License:GPLv2+
 Group:  Development/Tools/Doc Generators







Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org