guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: pcre: Update replacement to 8.41 [fixes CVE-2017-{7244, 7245


From: Leo Famulari
Subject: 01/01: gnu: pcre: Update replacement to 8.41 [fixes CVE-2017-{7244, 7245, 7246}].
Date: Thu, 20 Jul 2017 08:33:12 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 426b0b898f70a58133d80779980f163a5761686e
Author: Leo Famulari <address@hidden>
Date:   Wed Jul 19 22:14:07 2017 -0400

    gnu: pcre: Update replacement to 8.41 [fixes CVE-2017-{7244,7245,7246}].
    
    * gnu/packages/pcre.scm (pcre)[replacement]: Update to pcre-8.41.
    (pcre/fixed): Replace with ...
    (pcre-8.41): ... new variable.
---
 gnu/packages/pcre.scm | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/pcre.scm b/gnu/packages/pcre.scm
index 67a8db1..8dd5099 100644
--- a/gnu/packages/pcre.scm
+++ b/gnu/packages/pcre.scm
@@ -34,7 +34,7 @@
   (package
    (name "pcre")
    (version "8.40")
-   (replacement pcre/fixed)
+   (replacement pcre-8.41)
    (source (origin
             (method url-fetch)
             (uri (list
@@ -72,12 +72,20 @@ POSIX regular expression API.")
    (license license:bsd-3)
    (home-page "http://www.pcre.org/";)))
 
-(define pcre/fixed
+(define pcre-8.41
   (package
     (inherit pcre)
+    (version "8.41")
     (source (origin
-              (inherit (package-source pcre))
-              (patches (search-patches "pcre-CVE-2017-7186.patch"))))))
+              (method url-fetch)
+              (uri (list (string-append "mirror://sourceforge/pcre/pcre/"
+                                        version "/pcre-" version ".tar.bz2")
+                         (string-append "ftp://ftp.csx.cam.ac.uk";
+                                        "/pub/software/programming/pcre/"
+                                        "pcre-" version ".tar.bz2")))
+              (sha256
+               (base32
+                "0c5m469p5pd7jip621ipq6hbgh7128lzh7xndllfgh77ban7wb76"))))))
 
 (define-public pcre2
   (package



reply via email to

[Prev in Thread] Current Thread [Next in Thread]