gnu: expat: Update to 2.2.2.

* gnu/packages/xml.scm (expat): Update to 2.2.2.
[replacement]: Remove field.
(expat-2.2.2): Remove variable.
This commit is contained in:
Efraim Flashner 2017-10-01 22:13:50 +03:00
parent 3651c4714e
commit b33c255d4d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -56,15 +56,14 @@ (define-module (gnu packages xml)
(define-public expat
(package
(name "expat")
(version "2.2.1")
(replacement expat-2.2.2)
(version "2.2.2")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/expat/expat/"
version "/expat-" version ".tar.bz2"))
(sha256
(base32
"11c8jy1wvllvlk7xdc5cm8hdhg0hvs8j0aqy6s702an8wkdcls0q"))))
"0ik0r39ala9c6hj4kxrk933klgwkzlkbrfhvhaykx8l1rwgr2xj3"))))
(build-system gnu-build-system)
(home-page "http://www.libexpat.org/")
(synopsis "Stream-oriented XML parser library written in C")
@ -74,18 +73,6 @@ (define-public expat
things the parser might find in the XML document (like start tags).")
(license license:expat)))
(define expat-2.2.2 ; Fixes CVE-2017-9233, CVE-2016-9063 and other issues.
(package
(inherit expat)
(version "2.2.2")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/expat/expat/"
version "/expat-" version ".tar.bz2"))
(sha256
(base32
"0ik0r39ala9c6hj4kxrk933klgwkzlkbrfhvhaykx8l1rwgr2xj3"))))))
(define-public libebml
(package
(name "libebml")