summaryrefslogtreecommitdiff
path: root/gnu/packages/xml.scm
diff options
context:
space:
mode:
authorZheng Junjie <z572@z572.online>2025-05-08 23:16:39 +0800
committerAndreas Enge <andreas@enge.fr>2025-07-18 20:17:33 +0200
commit5f756ac86640d3ce82908ea316d5c3276b5c7787 (patch)
tree1769595903203cf2ae41a4df674bc7088217a309 /gnu/packages/xml.scm
parentd8fb8e4bf9841bdc527e1c04ef18ac163222f11f (diff)
gnu: expat: Update to 2.7.1.
* gnu/packages/xml.scm (expat): Update to 2.7.1. (expat/fixed): Remove it. * gnu/packages/patches/expat-CVE-2024-45490.patch: Remove it. * gnu/packages/patches/expat-CVE-2024-45491.patch: Remove it. * gnu/packages/patches/expat-CVE-2024-45492.patch: Remove it. * gnu/local.mk (dist_patch_DATA): Unregister them. Change-Id: Ia0bc5da202afba0636032e4f4e10051778214944
Diffstat (limited to 'gnu/packages/xml.scm')
-rw-r--r--gnu/packages/xml.scm16
1 files changed, 2 insertions, 14 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 999f96082f4..9d54238f3a7 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -128,8 +128,7 @@ the entire document.")
(define-public expat
(package
(name "expat")
- (version "2.5.0")
- (replacement expat/fixed)
+ (version "2.7.1")
(source (let ((dot->underscore (lambda (c) (if (char=? #\. c) #\_ c))))
(origin
(method url-fetch)
@@ -141,7 +140,7 @@ the entire document.")
"/expat-" version ".tar.xz")))
(sha256
(base32
- "1gnwihpfz4x18rwd6cbrdggmfqjzwsdfh1gpmc0ph21c4gq2097g")))))
+ "0c3w446jrrnss3ccgx9z590lpwbpxiqdbxv2a0p036cg9da54i9m")))))
(build-system gnu-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
@@ -165,17 +164,6 @@ stream-oriented parser in which an application registers handlers for
things the parser might find in the XML document (like start tags).")
(license license:expat)))
-(define-public expat/fixed
- (hidden-package
- (package
- (inherit expat)
- (replacement expat/fixed)
- (source (origin
- (inherit (package-source expat))
- (patches (search-patches "expat-CVE-2024-45490.patch"
- "expat-CVE-2024-45491.patch"
- "expat-CVE-2024-45492.patch")))))))
-
(define-public libebml
(package
(name "libebml")