summaryrefslogtreecommitdiff
path: root/gnu/packages/documentation.scm
diff options
context:
space:
mode:
authorJohn Kehayias <john@guixotic.coop>2025-09-13 01:56:32 -0400
committerMaxim Cournoyer <maxim@guixotic.coop>2025-09-30 16:48:20 +0900
commit35741eb50a9cd933337f7a9487ed35e07987a9ff (patch)
treeec005f9db5fb3cb437669afbe2acc4cc5513a2ab /gnu/packages/documentation.scm
parent275548ebdb2342742be9e4dec2df35e5897f3998 (diff)
gnu: doxygen: Update to 1.14.0.
* gnu/packages/documentation.scm (doxygen): Update to 1.14.0. [arguments]<#:phases>: Rename disable-bibtex-test to disable-some-tests and disable a failing test (reported upstream). Change-Id: I2402138cb20916601adbc88ba9a769520d673f7f
Diffstat (limited to 'gnu/packages/documentation.scm')
-rw-r--r--gnu/packages/documentation.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/documentation.scm b/gnu/packages/documentation.scm
index d9a97a9b0fa..b18e62e3db9 100644
--- a/gnu/packages/documentation.scm
+++ b/gnu/packages/documentation.scm
@@ -187,7 +187,7 @@ markup) can be customized and extended by the user.")
187(define-public doxygen 187(define-public doxygen
188 (package 188 (package
189 (name "doxygen") 189 (name "doxygen")
190 (version "1.9.8") 190 (version "1.14.0")
191 (home-page "https://www.doxygen.nl/") 191 (home-page "https://www.doxygen.nl/")
192 (source (origin 192 (source (origin
193 (method url-fetch) 193 (method url-fetch)
@@ -198,7 +198,7 @@ markup) can be customized and extended by the user.")
198 ".src.tar.gz"))) 198 ".src.tar.gz")))
199 (sha256 199 (sha256
200 (base32 200 (base32
201 "0qjgw7bnx668hpi4r8m366vsq118s9365zf8z4x5yjrqx0ld5qq5")))) 201 "0pbbdvc1zxps6mi58bry16rcrdw6b9gvf9nhv0kp60qkmc8nslyl"))))
202 (build-system cmake-build-system) 202 (build-system cmake-build-system)
203 (native-inputs 203 (native-inputs
204 (list bison 204 (list bison
@@ -219,12 +219,15 @@ markup) can be customized and extended by the user.")
219 #~'()) 219 #~'())
220 #:phases 220 #:phases
221 #~(modify-phases %standard-phases 221 #~(modify-phases %standard-phases
222 (add-after 'unpack 'disable-bibtex-test 222 (add-after 'unpack 'disable-some-tests
223 (lambda _ 223 (lambda _
224 ;; Disable test that requires bibtex to avoid a
225 ;; circular dependency.
226 (for-each delete-file-recursively 224 (for-each delete-file-recursively
227 '("testing/012" "testing/012_cite.dox")))) 225 ;; Disable test that requires bibtex to avoid a
226 ;; circular dependency.
227 '("testing/012" "testing/012_cite.dox"
228 ;; Reported upstream, see
229 ;; <https://github.com/doxygen/doxygen/issues/11772>.
230 "testing/009" "testing/009_bug.cpp"))))
228 (add-before 'configure 'patch-sh 231 (add-before 'configure 'patch-sh
229 (lambda* (#:key inputs #:allow-other-keys) 232 (lambda* (#:key inputs #:allow-other-keys)
230 (let ((/bin/sh (search-input-file inputs "/bin/sh"))) 233 (let ((/bin/sh (search-input-file inputs "/bin/sh")))