all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#27414] [PATCH] gnu: expat: Replace with Expat 2.2.1 [security fixes]
@ 2017-06-17 22:03 Leo Famulari
  2017-06-19 12:07 ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Leo Famulari @ 2017-06-17 22:03 UTC (permalink / raw)
  To: 27414

Fixes CVE-2016-9063, CVE-2017-9233, and several others. See the file 'Changes'
in the source distribution for more information.

* gnu/packages/xml.scm (expat)[replacement]: New field.
(expat-2.2.1): New variable.
---
 gnu/packages/xml.scm | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 9635413b8..da76b1f48 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -55,6 +55,7 @@
 (define-public expat
   (package
     (name "expat")
+    (replacement expat-2.2.1)
     (version "2.2.0")
     (source (origin
              (method url-fetch)
@@ -74,6 +75,19 @@ 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 expat-2.2.1
+  (package
+    (inherit expat)
+    (replacement #f)
+    (version "2.2.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/expat/expat/"
+                                  version "/expat-" version ".tar.bz2"))
+              (sha256
+               (base32
+                "11c8jy1wvllvlk7xdc5cm8hdhg0hvs8j0aqy6s702an8wkdcls0q"))))))
+
 (define-public libxml2
   (package
     (name "libxml2")
-- 
2.13.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-19 16:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-17 22:03 [bug#27414] [PATCH] gnu: expat: Replace with Expat 2.2.1 [security fixes] Leo Famulari
2017-06-19 12:07 ` Ludovic Courtès
2017-06-19 16:41   ` bug#27414: " Leo Famulari

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.