https://github.com/cmusphinx/sphinxbase/commit/6989c52a3fb9473fd61326e548440fff887525c2 commit 6989c52a3fb9473fd61326e548440fff887525c2 Author: Michel Zou Date: Thu Feb 6 07:02:06 2020 +0100 Fix doxy2swig.py IndexError: list index out of range diff --git a/doc/doxy2swig.py b/doc/doxy2swig.py index 5589b0d..a01c4b1 100644 --- a/doc/doxy2swig.py +++ b/doc/doxy2swig.py @@ -299,7 +299,10 @@ class Doxy2SWIG: name = first['name'].firstChild.data for n in node.getElementsByTagName('param'): - arg_type = n.getElementsByTagName('type')[0] + elts = n.getElementsByTagName('type') + if len(elts) == 0: + continue + arg_type = elts[0] ref = self.get_specific_nodes(arg_type, ('ref')) if 'ref' in ref: type_name = ref['ref'].firstChild.data lass='sub'>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/po/packages/Makevars
ments]<#:phases>[patch-aarch64-test]: Replace. (rust-1.25)[inputs]: Switch to LLVM 6.0. (rust-1.25)[arguments]<#:phases>[enable-codegen-tests]: New variable. (rust): New variable. * gnu/packages/patches/rust-coresimd-doctest.patch: New file.
AgeCommit message (Expand)Author
2024-04-14maint: Use xgettext.scm wrapper to create .PO files reproducibly....* build-aux/xgettext.scm: New script. * po/guix/Makevars (XGETTEXT): Set it. (XGETTEXT_OPTIONS): Add --xgettext option to `real' xgettext. * po/packages/Makevars (XGETTEXT): Set it. (XGETTEXT_OPTIONS): Add --xgettext option to `real' xgettext. Change-Id: I71b6b843970090f765f46ac346b92a346560e3f0 Janneke Nieuwenhuizen
2022-08-16ui: Describe package outputs....* guix/ui.scm (package->recutils): Output outputs with their descriptions, one per line. * po/packages/Makevars (XGETTEXT_OPTIONS): Add ‘output-synopsis’ as keyword. Liliana Marie Prikler
Nikolai Merinov