[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65479] [PATCH core-updates 14/61] gnu: libxslt: Set search-paths fo
From: |
Bruno Victal |
Subject: |
[bug#65479] [PATCH core-updates 14/61] gnu: libxslt: Set search-paths for XML and SGML catalogs. |
Date: |
Wed, 23 Aug 2023 23:35:06 +0100 |
According to xsltproc manpage it supports both XML_CATALOG_FILES and
SGML_CATALOG_FILES for catalog lookup.
* gnu/packages/xml.scm (libxslt)[native-search-paths]: Add SGML_CATALOG_FILES
and XML_CATALOG_FILES.
[search-paths]: Likewise.
* gnu/packages/perl.scm (perl-app-xml-docbook-builder)[native-search-paths]:
Refer to libxslt native-search-paths.
---
gnu/packages/perl.scm | 2 +-
gnu/packages/xml.scm | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 7f9b19b6ee..5995aa0346 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -602,7 +602,7 @@ (define-public perl-app-xml-docbook-builder
(list perl-class-xsaccessor perl-test-trap))
(native-search-paths
;; xsltproc's search paths, to avoid propagating libxslt.
- (list $XML_CATALOG_FILES))
+ (package-native-search-paths libxslt))
(home-page "https://www.shlomifish.org/open-source/projects/docmake/")
(synopsis "Translate DocBook/XML documentation into other file formats")
(description
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index ec3de82765..bbae6dd766 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -363,6 +363,9 @@ (define-public libxslt
xz))
(native-inputs
(list pkg-config))
+ (native-search-paths
+ (list $SGML_CATALOG_FILES $XML_CATALOG_FILES))
+ (search-paths native-search-paths)
(description
"Libxslt is an XSLT C library developed for the GNOME project. It is
based on libxml for XML parsing, tree manipulation and XPath support.")
--
2.40.1
- [bug#65479] [PATCH core-updates 00/61] The Draining of the XML & DocBook Swamp., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 04/61] gnu: docbook-xsl: Add compatibility entry., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 01/61] gnu: docbook-xml: Fix installation paths., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 02/61] gnu: Add docbook-xml-5.0.1., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 08/61] gnu: docbook2x: Import patches from debian., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 11/61] gnu: libxml2: Rewrite using G-Expressions., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 10/61] gnu: docbook2x: Split documentation., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 07/61] gnu: docbook-utils: Import patches from debian., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 14/61] gnu: libxslt: Set search-paths for XML and SGML catalogs.,
Bruno Victal <=
- [bug#65479] [PATCH core-updates 19/61] gnu: lilypond: Use dblatex/stable., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 15/61] gnu: dblatex: Add libxslt native-search-paths to its own., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 40/61] gnu: sssd: Drop xmllint workaround., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 47/61] gnu: libnotify: Split documentation., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 13/61] gnu: libxml2: Add SGML_CATALOG_FILES to native-search-path., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 05/61] gnu: docbook-xsl: Add rewrite entries for http., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 09/61] gnu: docbook2x: Fix sgml2xml-isoent and add test dependencies., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 06/61] gnu: docbook: Remove leftovers., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 12/61] search-paths: Add $XML_CATALOG_FILES and $SGML_CATALOG_FILES., Bruno Victal, 2023/08/23
- [bug#65479] [PATCH core-updates 39/61] gnu: gnome-session: Remove libxml2., Bruno Victal, 2023/08/23