[email protected] writes:
> apteryx pushed a commit to branch master
> in repository guix.
>
> commit 3f1f98d9d8c4e7f5dfca921fe1957e4d53783e35
> Author: Maxim Cournoyer <[email protected]>
> AuthorDate: Tue Jan 28 01:21:24 2020 -0500
>
> gnu: Add libuemf.
>
> * gnu/packages/image.scm (libuemf): New variable.
> ---
> gnu/packages/image.scm | 51
> ++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 51 insertions(+)
>
> diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
> index 24f1b15..05b64dd 100644
> --- a/gnu/packages/image.scm
> +++ b/gnu/packages/image.scm
> @@ -25,6 +25,7 @@
> ;;; Copyright © 2018 Rutger Helling <[email protected]>
> ;;; Copyright © 2020 Giacomo Leidi <[email protected]>
> ;;; Copyright © 2020 R Veera Kumar <[email protected]>
> +;;; Copyright © 2020 Maxim Cournoyer <[email protected]>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
<...>
> + (description "The libUEMF library is a portable C99 implementation for
> +reading and writing @abbr{WFM, Windows Metafile}, @abbr{EMF, Enhanced
> +Metafile}, and @abbr{EMF+, Enhanced Metafile Plus} files.")
> + (license license:gpl2+)))
Turns out guile's texinfo stuff chokes on @abbr:
--------------------------------
$ guix package -s libuemf
Backtrace:
1 (primitive-load "/home/reepca/.config/guix/current/bin/guix")
In guix/ui.scm:
1936:12 0 (run-guix-command _ . _)
guix/ui.scm:1936:12: In procedure run-guix-command:
Throw to key `parser-error' with args `(#f "Unknown command" abbr)'.
--------------------------------
guix/ui.scm:1936:12: In procedure run-guix-command:
Throw to key `parser-error' with args `(#f "Unknown command" abbr)'.
I don't know enough about texinfo to offer a solution, but figured it
should be mentioned. Currently this is causing tests/packages.sh to
fail.
- reepca