1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Description: Fix some reproducibility issues.
The source/APPLICATIONS/BALLVIEW directory can be added to
STRIP_FROM_PATH but these are private headers of the BALLView
application so they shouldn't be exposed anyway.
.
The search index is non-reproducible; that's doxygen #1078868 which
is fixed upstream.
.
There is non-deterministic output when generating two _source.html
files with reprotest's "fileordering" variation. This issue *might*
be fixed in newer upstream releases (at the time of writing, Debian
has doxygen/1.9.8 while the latest upstream release is 1.15.0).
Author: Yavor Doganov <yavor@gnu.org>
Forwarded: no
Last-Update: 2025-11-10
---
--- ball.orig/doc/doxygen/Doxyfile_inc.in
+++ ball/doc/doxygen/Doxyfile_inc.in
@@ -158,7 +158,7 @@
# support long names like on DOS, Mac, or CD-ROM.
# The default value is: NO.
-SHORT_NAMES = YES
+SHORT_NAMES = NO
# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
# first line (until the first dot) of a Javadoc-style comment as the brief
@@ -734,8 +734,7 @@
# spaces.
# Note: If this tag is empty the current directory is searched.
-INPUT = @CF_BALL_SRC_PATH@/include/BALL/ \
- @CF_BALL_SRC_PATH@/source/APPLICATIONS/BALLVIEW/
+INPUT = @CF_BALL_SRC_PATH@/include/BALL
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|