From c45c51282240850675d480e5f5daa121a0a4d2a5 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 4 Sep 2026 15:56:40 +0300 Subject: [PATCH] Update package version to 1.18.0 --- info.yml | 6 +++--- recipe.sh | 8 -------- source-files/12117.patch | 23 ----------------------- 3 files changed, 3 insertions(+), 34 deletions(-) delete mode 100644 source-files/12117.patch diff --git a/info.yml b/info.yml index 19cbcff..495b24b 100644 --- a/info.yml +++ b/info.yml @@ -1,7 +1,7 @@ name: doxygen description: Documentation generator tool -version: 1.17.0 -revision: 2 +version: 1.18.0 +revision: 1 url: https://www.doxygen.nl/ license: GPL2-or-later maintainers: @@ -29,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: 28199ea88989fc56e302c927ef979596fe9247dd231e767ba6edcdbaa49f78aa + checksum: b32a3def78b0b75a2fd74ee6a63fb4a79cb6273fe31a570362e4e1871fa446da diff --git a/recipe.sh b/recipe.sh index 7171d43..e78ae73 100644 --- a/recipe.sh +++ b/recipe.sh @@ -2,14 +2,6 @@ # 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() { diff --git a/source-files/12117.patch b/source-files/12117.patch deleted file mode 100644 index b625267..0000000 --- a/source-files/12117.patch +++ /dev/null @@ -1,23 +0,0 @@ -From a819808ca4dd0264be2ea80fe2d08736e70eacdd Mon Sep 17 00:00:00 2001 -From: albert-github -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'','',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: