guix-commits
[Top][All Lists]
Advanced

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

branch ungrafting updated: gnu: cURL: Remove graft for 7.74.0 and reinst


From: guix-commits
Subject: branch ungrafting updated: gnu: cURL: Remove graft for 7.74.0 and reinstate lost patch.
Date: Sun, 13 Dec 2020 18:11:56 -0500

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch ungrafting
in repository guix.

The following commit(s) were added to refs/heads/ungrafting by this push:
     new a210c0d  gnu: cURL: Remove graft for 7.74.0 and reinstate lost patch.
a210c0d is described below

commit a210c0d13752c38a850746fd97948121046a0e58
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sun Dec 13 23:32:00 2020 +0100

    gnu: cURL: Remove graft for 7.74.0 and reinstate lost patch.
    
    See <https://lists.gnu.org/archive/html/guix-devel/2020-12/msg00142.html> 
for
    a discussion about the missing patch.
    
    * gnu/packages/curl.scm (curl): Update to 7.74.0.
    [replacement]: Remove.
    [source](patches): New field.
    (curl-7.74.0): Remove variable.
---
 gnu/packages/curl.scm | 19 +++----------------
 1 file changed, 3 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index 98fc6b3..a09210b 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -53,15 +53,15 @@
 (define-public curl
   (package
    (name "curl")
-   (version "7.73.0")
-   (replacement curl-7.74.0)
+   (version "7.74.0")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://curl.haxx.se/download/curl-";
                                  version ".tar.xz"))
              (sha256
               (base32
-               "12j0qaij1ppgspray8xvs2qk3h3m23wdqh27x87y1aw8xaj7qk3w"))))
+               "12w7gskrglg6qrmp822j37fmbr0icrcxv7rib1fy5xiw80n5z7cr"))
+             (patches (search-patches "curl-use-ssl-cert-env.patch"))))
    (build-system gnu-build-system)
    (outputs '("out"
               "doc"))                             ;1.2 MiB of man3 pages
@@ -151,19 +151,6 @@ tunneling, and so on.")
     (name "curl-minimal")
     (inputs (alist-delete "openldap" (package-inputs curl))))))
 
-;; Replacement package to fix multiple security vulnerabilities.
-(define curl-7.74.0
-  (package
-    (inherit curl)
-    (version "7.74.0")
-    (source (origin
-              (inherit (package-source curl))
-              (uri (string-append "https://curl.haxx.se/download/curl-";
-                                  version ".tar.xz"))
-              (sha256
-               (base32
-                "12w7gskrglg6qrmp822j37fmbr0icrcxv7rib1fy5xiw80n5z7cr"))))))
-
 (define-public kurly
   (package
     (name "kurly")



reply via email to

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