Update package version to 1.17.0

This commit is contained in:
2026-05-02 18:24:41 +03:00
parent 3ca44f9364
commit 66a5b5701a
3 changed files with 37 additions and 3 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
name: doxygen
description: Documentation generator tool
version: 1.16.1
version: 1.17.0
revision: 1
url: https://www.doxygen.nl/
license: GPL2-or-later
maintainers:
- [email protected]
architecture: any
type: source
depends:
@@ -27,4 +29,4 @@ downloads:
- url: https://github.com/doxygen/doxygen/archive/refs/tags/Release_${BPM_PKG_VERSION//./_}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: cdf9d614ee8ed6a939ad12ab31a6aaa1b0c089dff2a4ce20aa008893b686d636
checksum: 28199ea88989fc56e302c927ef979596fe9247dd231e767ba6edcdbaa49f78aa
+23
View File
@@ -0,0 +1,23 @@
From a819808ca4dd0264be2ea80fe2d08736e70eacdd Mon Sep 17 00:00:00 2001
From: albert-github <[email protected]>
Date: Fri, 1 May 2026 14:27:24 +0200
Subject: [PATCH] issue #12116 Test suite's test tagfile fails
In case building without git the `doxygen_gitid` is not present in the tag file though the test required it.
Added extra replacement statement
---
testing/runtests.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/testing/runtests.py b/testing/runtests.py
index 198aea740db..02611ee7090 100755
--- a/testing/runtests.py
+++ b/testing/runtests.py
@@ -346,6 +346,7 @@ def perform_test(self,testmgr):
data = xpopen('%s --format --noblanks --nowarning %s' % (self.args.xmllint,check_file))
if data:
# strip version
+ data = re.sub(r'<tagfile doxygen_version="[^"]+">','<tagfile doxygen_version="" doxygen_gitid="">',data)
data = re.sub(r'tagfile doxygen_version="[^"]+" doxygen_gitid="[^"]+"','tagfile doxygen_version="" doxygen_gitid=""',data)
data = re.sub(r'xsd" version="[0-9.-]+"','xsd" version=""',data).rstrip('\n')
else:
+10 -1
View File
@@ -2,6 +2,14 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
# The prepare function is executed in the root of the temp directory
# This function is used for putting downloaded files to the correct location or applying patches
prepare() {
cd "$BPM_SOURCE"
# Fix tagfile test
patch -Np1 -i "$BPM_WORKDIR"/12117.patch
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
@@ -22,7 +30,8 @@ build() {
# The check function is executed in the source directory
# This function is used to run tests to verify the package has been compiled correctly
check() {
ctest --test-dir build
# Skip cite test as we are missing some required dependencies for it
ctest --test-dir build -E 012_cite
}
# The package function is executed in the source directory