From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: curl: Upgrade to 7.35.0 Date: Tue, 18 Feb 2014 21:51:37 -0500 Message-ID: <87lhx7n7ba.fsf@netris.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFxH1-0008Bu-63 for guix-devel@gnu.org; Tue, 18 Feb 2014 21:52:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WFxGw-0006SU-1a for guix-devel@gnu.org; Tue, 18 Feb 2014 21:52:35 -0500 Received: from world.peace.net ([96.39.62.75]:41560) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFxGv-0006SH-T6 for guix-devel@gnu.org; Tue, 18 Feb 2014 21:52:29 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain This patch upgrades cURL to 7.35.0. Mark --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-curl-Upgrade-to-7.35.0.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH] gnu: curl: Upgrade to 7.35.0 >From 5b2d248c545cfe0383525bb59e9d3c8160651737 Mon Sep 17 00:00:00 2001 From: Mark H Weaver 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 =C2=A9 2013 Andreas Enge +;;; Copyright =C2=A9 2014 Mark H Weaver ;;; ;;; 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 synta= x") (description "curl is a command line tool for transferring data with URL syntax, --=20 1.8.4 --=-=-=--