guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: cups: Update to 2.3.3 [fixes CVE-2020-3898 & CVE-2019-8842].


From: guix-commits
Subject: 04/05: gnu: cups: Update to 2.3.3 [fixes CVE-2020-3898 & CVE-2019-8842].
Date: Sun, 17 May 2020 08:13:02 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 677515739e07cf6e99b70fa3cae5955a664566c7
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Sun May 17 05:16:00 2020 +0200

    gnu: cups: Update to 2.3.3 [fixes CVE-2020-3898 & CVE-2019-8842].
    
    * gnu/packages/cups.scm (cups-minimal, cups)[replacement]: New fields.
    (cups-minimal-2.3.3, cups-2.3.3): New public variables.
---
 gnu/packages/cups.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm
index b253d06..f668d6c 100644
--- a/gnu/packages/cups.scm
+++ b/gnu/packages/cups.scm
@@ -187,6 +187,7 @@ filters for the PDF-centric printing workflow introduced by 
OpenPrinting.")
 ;; satisfy this dependency.
 (define-public cups-minimal
   (package
+    (replacement cups-minimal-2.3.3)
     (name "cups-minimal")
     (version "2.3.1")
     (source
@@ -249,8 +250,22 @@ device-specific programs to convert and print many types 
of files.")
     ;; CUPS is Apache 2.0 with exceptions, see the NOTICE file.
     (license license:asl2.0)))
 
+(define-public cups-minimal-2.3.3
+  (package
+    (inherit cups-minimal)
+    (version "2.3.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/apple/cups/releases/download/v";
+                           version "/cups-" version "-source.tar.gz"))
+       (sha256
+        (base32
+         "1vpk0b2vq830f8fvf9z8qjsm5k141i7pi8djbinpnr78pi4dj7r6"))))))
+
 (define-public cups
   (package (inherit cups-minimal)
+    (replacement cups-2.3.3)
     (name "cups")
     (arguments
      `(;; Three tests fail:
@@ -392,6 +407,12 @@ device-specific programs to convert and print many types 
of files.")
        ("cups-filters" ,cups-filters)
        ("zlib"  ,zlib)))))
 
+(define-public cups-2.3.3
+  (package
+    (inherit cups)
+    (version "2.3.3")
+    (source (package-source cups-minimal-2.3.3))))
+
 (define-public cups-pk-helper
   (package
     (name "cups-pk-helper")



reply via email to

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