diff options
author | gemmaro <gemmaro.dev@gmail.com> | 2023-10-09 23:20:55 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:15 +0200 |
commit | d8a0aefae19b0f643f240d7ef457de3932257441 (patch) | |
tree | 1654909bfea056c98cb408e82502d26a59e91d73 | |
parent | 04b6408bbd2e46a4019b088f7c954b81448389b4 (diff) |
gnu: po4a: Enable SGML format.
* gnu/packages/gettext.scm (po4a): Enable SGML format.
[arguments]<phases>: Remove disable-failing-tests phase.
[native-inputs]: Add docbook-sgml-4.1. Remove libxml2.
[inputs]: Add opensp.
Modified-by: Bruno Victal <mirai@makinata.eu>
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
-rw-r--r-- | gnu/packages/gettext.scm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm index 31fe95f6ad..b0e99d1a5f 100644 --- a/gnu/packages/gettext.scm +++ b/gnu/packages/gettext.scm @@ -278,10 +278,6 @@ from Markdown files.") (wrap-program file `("PERL5LIB" ":" prefix (,path)))) (find-files bin "\\.*$"))))) - (add-before 'check 'disable-failing-tests - (lambda _ - ;; FIXME: fails despite of importing SGMLS - (delete-file "t/fmt-sgml.t"))) #$@(if (system-hurd?) #~((add-after 'unpack 'skip-tests/hurd (lambda _ @@ -293,14 +289,15 @@ from Markdown files.") (list gettext-minimal perl-module-build docbook-xsl - libxml2 libxslt ;; For tests. + docbook-sgml-4.1 docbook-xml-4.1.2 perl-test-pod (texlive-updmap.cfg))) (inputs (list bash-minimal + opensp perl-gettext perl-pod-parser perl-sgmls |