unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: curl: Upgrade to 7.35.0
@ 2014-02-19  2:51 Mark H Weaver
  2014-02-19  7:13 ` Mark H Weaver
  0 siblings, 1 reply; 2+ messages in thread
From: Mark H Weaver @ 2014-02-19  2:51 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 49 bytes --]

This patch upgrades cURL to 7.35.0.

      Mark


[-- Attachment #2: [PATCH] gnu: curl: Upgrade to 7.35.0 --]
[-- Type: text/x-patch, Size: 2258 bytes --]

From 5b2d248c545cfe0383525bb59e9d3c8160651737 Mon Sep 17 00:00:00 2001
From: Mark H Weaver <mhw@netris.org>
Date: Tue, 18 Feb 2014 19:46:57 -0500
Subject: [PATCH] gnu: curl: Upgrade to 7.35.0.

* gnu/packages/curl.scm (curl): Upgrade to 7.35.0.
---
 gnu/packages/curl.scm | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index a9bfa76..ea93821 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -1,5 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
+;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -36,14 +37,14 @@
 (define-public curl
   (package
    (name "curl")
-   (version "7.28.1")
+   (version "7.35.0")
    (source (origin
             (method url-fetch)
             (uri (string-append "http://curl.haxx.se/download/curl-"
                                 version ".tar.lzma"))
             (sha256
              (base32
-              "13bhfs41yf60ys2hrikqxjwfzaj0gm91kqzsgc5fr4grzmpm38nx"))
+              "14w5cwh6b1426lxkq6kp6h4vxryr4n7wfrrwhny1r4123q7n8ab9"))
             (patches
              ;; This patch fixes testcase 172 which uses a hardcoded cookie
              ;; expiration value which is expired as of Feb 1, 2014.
@@ -61,7 +62,16 @@
        ("groff" ,groff)
        ("pkg-config" ,pkg-config)))
    (arguments
-    `(#:configure-flags '("--with-gnutls" "--with-gssapi")))
+    `(#:configure-flags '("--with-gnutls" "--with-gssapi")
+      #:phases (alist-cons-before
+                'check 'disable-tests
+                (lambda _
+                  ;; Disable tests 1221 and 1222, which depend on
+                  ;; tools that aren't worth including as inputs.
+                  (let ((port (open-file "tests/data/DISABLED" "a")))
+                    (display "1221\n1222\n" port)
+                    (close-port port)))
+                %standard-phases)))
    (synopsis "curl, command line tool for transferring data with URL syntax")
    (description
     "curl is a command line tool for transferring data with URL syntax,
-- 
1.8.4


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

* Re: [PATCH] gnu: curl: Upgrade to 7.35.0
  2014-02-19  2:51 [PATCH] gnu: curl: Upgrade to 7.35.0 Mark H Weaver
@ 2014-02-19  7:13 ` Mark H Weaver
  0 siblings, 0 replies; 2+ messages in thread
From: Mark H Weaver @ 2014-02-19  7:13 UTC (permalink / raw)
  To: guix-devel

Mark H Weaver <mhw@netris.org> writes:
> This patch upgrades cURL to 7.35.0.

Ah, nevermind, I see that Sree already did this.

      Mark

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

end of thread, other threads:[~2014-02-19  7:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-19  2:51 [PATCH] gnu: curl: Upgrade to 7.35.0 Mark H Weaver
2014-02-19  7:13 ` Mark H Weaver

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).