forked from pool/doxygen
Accepting request 33026 from devel:tools
Copy from devel:tools/doxygen based on submit request 33026 from user mseben OBS-URL: https://build.opensuse.org/request/show/33026 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/doxygen?expand=0&rev=16
This commit is contained in:
parent
1d757505cf
commit
43ec11d6a2
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7462c6f567f7ff248ede6237a5ae7ed63e204f6de8bfde72d30809e743c53765
|
|
||||||
size 469931
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:30c03c5c3ae3e4cd4873a379c21ab693294a11187a8ca3d1e0e5a0cab2f6d2d2
|
|
||||||
size 3265929
|
|
3
doxygen-1.6.3-html.tar.bz2
Normal file
3
doxygen-1.6.3-html.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c31c5aa60525968c7adf66923e3a811c3832301505e05166e4e679f1e5ce696c
|
||||||
|
size 471468
|
@ -1,6 +1,7 @@
|
|||||||
--- src/config.xml.orig 2009-09-09 23:49:12.000000000 +0200
|
diff -U 3 -H -d -r -N -- doxygen-1.6.3/src/config.xml doxygen-1.6.3.modify_footer/src/config.xml
|
||||||
+++ src/config.xml 2009-09-09 23:50:15.000000000 +0200
|
--- doxygen-1.6.3/src/config.xml 2010-02-13 15:19:31.000000000 +0100
|
||||||
@@ -736,6 +736,10 @@
|
+++ doxygen-1.6.3.modify_footer/src/config.xml 2010-02-21 15:52:16.000000000 +0100
|
||||||
|
@@ -741,6 +741,10 @@
|
||||||
If the GENERATE_HTML tag is set to YES (the default) Doxygen will
|
If the GENERATE_HTML tag is set to YES (the default) Doxygen will
|
||||||
generate HTML output.
|
generate HTML output.
|
||||||
' defval='1'/>
|
' defval='1'/>
|
||||||
@ -11,12 +12,32 @@
|
|||||||
<option type='string' id='HTML_OUTPUT' format='dir' docs='
|
<option type='string' id='HTML_OUTPUT' format='dir' docs='
|
||||||
The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
|
The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
|
||||||
If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
If a relative path is entered the value of OUTPUT_DIRECTORY will be
|
||||||
--- src/htmlgen.cpp.orig 2009-09-09 23:51:11.000000000 +0200
|
diff -U 3 -H -d -r -N -- doxygen-1.6.3/src/configoptions.cpp doxygen-1.6.3.modify_footer/src/configoptions.cpp
|
||||||
+++ src/htmlgen.cpp 2009-09-09 23:54:09.000000000 +0200
|
--- doxygen-1.6.3/src/configoptions.cpp 2010-02-13 15:19:33.000000000 +0100
|
||||||
@@ -723,10 +723,18 @@
|
+++ doxygen-1.6.3.modify_footer/src/configoptions.cpp 2010-02-21 15:52:16.000000000 +0100
|
||||||
|
@@ -1051,6 +1051,15 @@
|
||||||
|
TRUE
|
||||||
|
);
|
||||||
|
//----
|
||||||
|
+ cb = cfg->addBool(
|
||||||
|
+ "HTML_FOOTER_DESCRIPTION",
|
||||||
|
+ "If the HTML_FOOTER_DESCRIPTION tag is set to YES, Doxygen will \n"
|
||||||
|
+ "add generated date, project name and doxygen version to HTML footer.",
|
||||||
|
+ FALSE
|
||||||
|
+ );
|
||||||
|
+ //cs->setDefaultValue("FALSE");
|
||||||
|
+ cs->addDependency("GENERATE_HTML");
|
||||||
|
+ //----
|
||||||
|
cs = cfg->addString(
|
||||||
|
"HTML_OUTPUT",
|
||||||
|
"The HTML_OUTPUT tag is used to specify where the HTML docs will be put.\n"
|
||||||
|
diff -U 3 -H -d -r -N -- doxygen-1.6.3/src/htmlgen.cpp doxygen-1.6.3.modify_footer/src/htmlgen.cpp
|
||||||
|
--- doxygen-1.6.3/src/htmlgen.cpp 2010-01-04 22:22:05.000000000 +0100
|
||||||
|
+++ doxygen-1.6.3.modify_footer/src/htmlgen.cpp 2010-02-21 15:56:21.000000000 +0100
|
||||||
|
@@ -787,10 +787,18 @@
|
||||||
{
|
{
|
||||||
QTextStream t(&file);
|
QTextStream t(&file);
|
||||||
t << "<hr size=\"1\"/><address style=\"text-align: right;\"><small>\n";
|
t << "<hr class=\"footer\"/><address style=\"text-align: right;\"><small>\n";
|
||||||
- t << theTranslator->trGeneratedAt( "$datetime", "$projectname" );
|
- t << theTranslator->trGeneratedAt( "$datetime", "$projectname" );
|
||||||
- t << " <a href=\"http://www.doxygen.org/index.html\">"
|
- t << " <a href=\"http://www.doxygen.org/index.html\">"
|
||||||
+ if (Config_getBool("HTML_FOOTER_DESCRIPTION"))
|
+ if (Config_getBool("HTML_FOOTER_DESCRIPTION"))
|
||||||
@ -35,21 +56,3 @@
|
|||||||
t << "</small></address>\n"
|
t << "</small></address>\n"
|
||||||
<< "</body>\n"
|
<< "</body>\n"
|
||||||
<< "</html>\n";
|
<< "</html>\n";
|
||||||
--- src/configoptions.cpp.orig 2009-09-09 23:50:25.000000000 +0200
|
|
||||||
+++ src/configoptions.cpp 2009-09-09 23:50:58.000000000 +0200
|
|
||||||
@@ -1043,6 +1043,15 @@
|
|
||||||
TRUE
|
|
||||||
);
|
|
||||||
//----
|
|
||||||
+ cb = cfg->addBool(
|
|
||||||
+ "HTML_FOOTER_DESCRIPTION",
|
|
||||||
+ "If the HTML_FOOTER_DESCRIPTION tag is set to YES, Doxygen will \n"
|
|
||||||
+ "add generated date, project name and doxygen version to HTML footer.",
|
|
||||||
+ FALSE
|
|
||||||
+ );
|
|
||||||
+ //cs->setDefaultValue("FALSE");
|
|
||||||
+ cs->addDependency("GENERATE_HTML");
|
|
||||||
+ //----
|
|
||||||
cs = cfg->addString(
|
|
||||||
"HTML_OUTPUT",
|
|
||||||
"The HTML_OUTPUT tag is used to specify where the HTML docs will be put.\n"
|
|
3
doxygen-1.6.3.src.tar.bz2
Normal file
3
doxygen-1.6.3.src.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:60c8e0be5232f37aa99ea362b53feef37d5929c4fc21a659847659568ae84b77
|
||||||
|
size 3267421
|
@ -1,3 +1,63 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 21 15:08:52 UTC 2010 - Nico.Laus.2001@gmx.de
|
||||||
|
|
||||||
|
- update to 1.6.3:
|
||||||
|
- New features
|
||||||
|
* id 608480: Using \dir without argument will create directory
|
||||||
|
documentation for the directory in which the \dir command
|
||||||
|
was found.
|
||||||
|
- Bug fixes (ids refer to the bugzilla database)
|
||||||
|
* id 590161: perlmod output was wrong when using paragraph
|
||||||
|
commands.
|
||||||
|
* id 600525: Included patch for VHDL.
|
||||||
|
* id 605698: Replaced size attribute of hr tag by class attribute
|
||||||
|
in the HTML output.
|
||||||
|
* id 606030,606192,607563: Using \dot produced "Error opening
|
||||||
|
map file" or could even crash doxygen.
|
||||||
|
* id 606104: Grouped members with todo-like items were shown
|
||||||
|
with "GlobalScope" prefix.
|
||||||
|
* id 606156: Fixed RTF rendering problem with group index.
|
||||||
|
* id 606206,610133: Added missing line break in LaTeX output.
|
||||||
|
* id 606330, 608056: The title of pages whose label had an
|
||||||
|
underscore was not shown
|
||||||
|
* id 606717: Include guard not starting with #ifndef SOME_GUARD_H
|
||||||
|
were not recognised as such.
|
||||||
|
* id 606718: Setting SEARCHENGINE to YES and GENERATE_HTML to NO
|
||||||
|
caused error that search results directory could not be created.
|
||||||
|
* id 606772,608493: typedef'ed enums or struct with the same as
|
||||||
|
the typedef did no longer show up.
|
||||||
|
* id 607088,607946: Related pages (manual and automatic like the
|
||||||
|
todo page) caused broken links when SHORT_NAMES was enabled.
|
||||||
|
* id 607432,608002: Automatically generated related pages (like
|
||||||
|
the todo page) caused broken links when CREATE_SUBDIR was
|
||||||
|
enabled.
|
||||||
|
* id 607736: comments after #if could cause next function call
|
||||||
|
not to be cross-referenced.
|
||||||
|
* id 607743: \internal inside a conditional section caused
|
||||||
|
warning.
|
||||||
|
* id 608016: Using \internal inside a \section did not end at the
|
||||||
|
next \section as documented.
|
||||||
|
* id 608018: \internal command produced message with .: in the
|
||||||
|
LaTeX output.
|
||||||
|
* id 608072: HTML Tables with custom attributes were not rendered
|
||||||
|
properly.
|
||||||
|
* id 608227: Man pages with underscore got double underscore in
|
||||||
|
the name.
|
||||||
|
* id 608590: Buffer overflow when using non-ascii characters as
|
||||||
|
class name.
|
||||||
|
* id 608921: Macro definition had effect even if the definition
|
||||||
|
was not actually included.
|
||||||
|
* id 609504: config.h and config.l where missing from the SVN
|
||||||
|
repository.
|
||||||
|
* id 609624: Todo items were merged for overloaded functions.
|
||||||
|
* id 609709: C# enum values with @todo items were missing from
|
||||||
|
the todo list.
|
||||||
|
* id 610437: Removed bogus warning when using <br/> tag.
|
||||||
|
* Fixed parsing problem for function pointer type starting with
|
||||||
|
"typedef enum".
|
||||||
|
* Preprocessor did not take EXCLUDE_PATTERNS into account, which
|
||||||
|
could cause parse issues when importing a .tlb file.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 30 14:16:55 UTC 2009 - pascal.bleser@opensuse.org
|
Wed Dec 30 14:16:55 UTC 2009 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package doxygen (Version 1.6.2)
|
# spec file for package doxygen (Version 1.6.3)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
Name: doxygen
|
Name: doxygen
|
||||||
BuildRequires: bison flex gcc-c++ libpng-devel
|
BuildRequires: bison flex gcc-c++ libpng-devel
|
||||||
Version: 1.6.2
|
Version: 1.6.3
|
||||||
Release: 1
|
Release: 1
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -37,7 +37,7 @@ Source3: %{name}_manual-%{version}.pdf.bz2
|
|||||||
Patch: %{name}-1.5.9-64archs.patch
|
Patch: %{name}-1.5.9-64archs.patch
|
||||||
Patch2: %{name}-1.5.9-arm.patch
|
Patch2: %{name}-1.5.9-arm.patch
|
||||||
Patch3: %{name}-1.5.9-man.patch
|
Patch3: %{name}-1.5.9-man.patch
|
||||||
Patch4: %{name}-modify_footer.patch
|
Patch4: %{name}-1.6.3-modify_footer.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
#########################################################################################
|
#########################################################################################
|
||||||
# SuSE, openSUSE
|
# SuSE, openSUSE
|
||||||
@ -77,7 +77,7 @@ Authors:
|
|||||||
%patch
|
%patch
|
||||||
%patch2
|
%patch2
|
||||||
%patch3
|
%patch3
|
||||||
%patch4
|
%patch4 -p1
|
||||||
cp -v %{S:3} .
|
cp -v %{S:3} .
|
||||||
bzip2 -d %{name}_manual-%{version}.pdf.bz2
|
bzip2 -d %{name}_manual-%{version}.pdf.bz2
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:22d9799651e39a5388038618a964b3f733caea78a2472e1f048dd47c28dd89e6
|
|
||||||
size 672088
|
|
3
doxygen_manual-1.6.3.pdf.bz2
Normal file
3
doxygen_manual-1.6.3.pdf.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3a6438a717e2edcb93210b624da6e844d52a5937865f1186a54f97f885139a3c
|
||||||
|
size 672832
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Feb 21 15:09:35 UTC 2010 - Nico.Laus.2001@gmx.de
|
||||||
|
|
||||||
|
- update to 1.6.3:
|
||||||
|
- Bug fixes (ids refer to the bugzilla database)
|
||||||
|
* id 606084: Loading a new config file in doxywizard did not
|
||||||
|
reset all values of a previously loaded config file.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 7 12:32:21 UTC 2009 - pascal.bleser@opensuse.org
|
Mon Sep 7 12:32:21 UTC 2009 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package doxywizard (Version 1.6.2)
|
# spec file for package doxywizard (Version 1.6.3)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
Name: doxywizard
|
Name: doxywizard
|
||||||
BuildRequires: bison flex gcc-c++ libdrm-devel libjpeg-devel
|
BuildRequires: bison flex gcc-c++ libdrm-devel libjpeg-devel
|
||||||
Version: 1.6.2
|
Version: 1.6.3
|
||||||
Release: 1
|
Release: 1
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Requires: doxygen = %{version}
|
Requires: doxygen = %{version}
|
||||||
|
Loading…
Reference in New Issue
Block a user