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