aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
0 files changed, 0 insertions, 0 deletions
4e99caadcaaa282be1093e3ea6454667cac3'>Diffstat (limited to 'gnu/packages/patches/aegis-test-fixup-2.patch')
0 files changed, 0 insertions, 0 deletions
href='/guix/commit/gnu/packages/xml.scm?id=ff799a1a956a3cf636774701f632c779d08589bf'>gnu: tinyxml: Honor the #:tests? flag....* gnu/packages/xml.scm (tinyxml)[arguments]: Adjust the custom 'check phase to honor the #:tests? flag. Change-Id: Id085358cc07572be3bcee887c825c826f1b00f58 Efraim Flashner 2024-11-04gnu: xlsxio: Update to 0.2.35. [security fixes]...This fixes CVE-2023-34795. * gnu/packages/xml.scm (xlsxio): Update to 0.2.35. Nicolas Graves 2024-10-24gnu: xerces-c: Update to 3.2.5. [security fixes]...This fixes CVE-2023-37536. * gnu/packages/xml.scm (xerces-c): Update to 3.2.5. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves 2024-09-19gnu: expat: Fix security vulnerabilities....Fixes CVE-2024-45490, CVE-2024-45491, CVE-2024-45492. * gnu/packages/xml.scm (expat)[replacement]: New field. (expat/fixed): New variable. * gnu/packages/patches/expat-CVE-2024-45490.patch, gnu/packages/patches/expat-CVE-2024-45491.patch, gnu/packages/patches/expat-CVE-2024-45492.patch: New files. * gnu/local.mk (dist_patch_DATA): Register them. Change-Id: I74d5d7bce98d6c983b989c1afec7cf28777d1617 Efraim Flashner 2024-08-31gnu: perl-xml-xpath: Fix use of nonexistent phase....Follow-up to changes in ed1b2d0a86a0a62d8d843f06669a5f072482c37e. * gnu/packages/xml.scm (perl-xml-xpath)[arguments]<#:phases>: Order 'wrap-xpath after 'install instead of the nonexistent 'wrap. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Bruno Victal 2024-08-31gnu: Remove unneeded libxml2 from native-inputs. (xmlto)...The native-search-paths from libxslt are reused within xmlto to provide XML_CATALOG_FILES and SGML_CATALOG_FILES so it's unnecessary to include libxml2 for the same effect. * gnu/packages/wm.scm (i3status, awesome)[native-inputs]: Remove libxml2. * gnu/packages/xml.scm (opensp)[native-inputs]: Ditto. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: xmlto: Add libxslt native-search-paths to its own....Otherwise when xmlto invokes xsltproc it will fail to find the XML catalog files. * gnu/packages/xml.scm (xmlto)[native-search-paths]: Add libxslt native-search-paths to its own. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: xmlto: Rewrite with G-Expressions....* gnu/packages/xml.scm (xmlto)[arguments]: Rewrite with G-Expressions. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: libxml2: Rewrite using G-Expressions....* gnu/packages/xml.scm (libxml2): Use G-Expressions. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: libxslt: Set search-paths for XML and SGML catalogs....According to xsltproc manpage it supports both XML_CATALOG_FILES and SGML_CATALOG_FILES for catalog lookup. Since the native-search-paths field is not thunked, doing (package-native-search-paths libxslt) can lead to module import cycles so we define a %libxslt-search-paths variable to avoid this kind of trouble. * guix/search-paths.scm (%libxslt-search-paths): New variable. * gnu/packages/xml.scm (libxslt)[native-search-paths]: Set to %libxslt-search-paths. * gnu/packages/perl.scm (perl-app-xml-docbook-builder)[native-search-paths]: Ditto. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: libxml2: Add $SGML_CATALOG_FILES to native-search-path....According to the xmllint manpage it also makes use of the SGML_CATALOG_FILES environment variable. * gnu/packages/xml.scm (libxml2)[native-search-paths]: Add $SGML_CATALOG_FILES. Co-authored-by: gemmaro <gemmaro.dev@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I7b4befe352ba10b7a4e134f0806331b63bb4f855 Bruno Victal 2024-08-31search-paths: Add $XML_CATALOG_FILES and $SGML_CATALOG_FILES....These variables are used by some packages for XML/SGML catalog lookups. * guix/search-paths ($XML_CATALOG_FILES, $SGML_CATALOG_FILES): New variable, extracted from … * gnu/packages/xml.scm (libxml2, opensp)[native-search-paths]: … here. Refer to the variables from (guix search-paths) respectively. * gnu/packages/perl.scm (perl-app-xml-docbook-builder)[native-search-paths]: Use $XML_CATALOG_FILES. * doc/guix.texi (Search Paths): Update documentation to reflect changes. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: perl-xml-xpath: Update to 1.48....* gnu/packages/xml.scm (perl-xml-xpath): Update to 1.48. [native-inputs]: Add perl-test-leaktrace. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal 2024-08-31gnu: perl-xml-xpath: Wrap xpath command....* gnu/packages/xml.scm (perl-xml-xpath)[arguments]: Wrap xpath. Add test for wrapped xpath. [description]: Document xpath command presence. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Bruno Victal