From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: [PATCH 3/3] gnu: wget: Upgrade to 1.16. Date: Thu, 30 Oct 2014 10:49:46 -0500 Message-ID: <1414684186-31553-4-git-send-email-bavier@member.fsf.org> References: <1414684186-31553-1-git-send-email-bavier@member.fsf.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50926) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XkEK1-0005ul-Tr for guix-devel@gnu.org; Fri, 31 Oct 2014 11:42:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xjrwr-0007rc-Do for guix-devel@gnu.org; Thu, 30 Oct 2014 11:47:46 -0400 Received: from mail-ig0-x229.google.com ([2607:f8b0:4001:c05::229]:41388) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xjrwr-0007rO-8X for guix-devel@gnu.org; Thu, 30 Oct 2014 11:47:41 -0400 Received: by mail-ig0-f169.google.com with SMTP id hn18so1040624igb.0 for ; Thu, 30 Oct 2014 08:47:40 -0700 (PDT) In-Reply-To: <1414684186-31553-1-git-send-email-bavier@member.fsf.org> 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 Cc: Eric Bavier * gnu/packages/wget.scm (wget)[source]: Upgrade to 1.16. [inputs]: Add libidn. [native-inputs]: Add python, perl-http-daemon, and perl-io-socket-ssl. --- gnu/packages/wget.scm | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/gnu/packages/wget.scm b/gnu/packages/wget.scm index fb5fbf6..674cc07 100644 --- a/gnu/packages/wget.scm +++ b/gnu/packages/wget.scm @@ -20,7 +20,10 @@ (define-module (gnu packages wget) #:use-module (guix licenses) #:use-module (gnu packages gnutls) + #:use-module (gnu packages libidn) + #:use-module (gnu packages python) #:use-module (gnu packages perl) + #:use-module (gnu packages web) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) @@ -28,7 +31,7 @@ (define-public wget (package (name "wget") - (version "1.15") + (version "1.16") (source (origin (method url-fetch) @@ -36,12 +39,17 @@ version ".tar.xz")) (sha256 (base32 - "1yw0sk4mrs7bvga3c79rkbhxivmw8cs3b5wq3cglp1f9ai1mz2ni")))) + "1rxhr3jmgbwryzl51di4avqxw9m9j1z2aak8q1npns0p184xsqcj")))) (build-system gnu-build-system) + ;; TODO: Add libpsl to inputs (inputs - `(("gnutls" ,gnutls))) + `(("gnutls" ,gnutls) + ("libidn" ,libidn))) (native-inputs - `(("perl" ,perl))) + `(("perl" ,perl) + ("python" ,python) ;for testenv suite + ("perl-http-daemon" ,perl-http-daemon) + ("perl-io-socket-ssl" ,perl-io-socket-ssl))) (home-page "http://www.gnu.org/software/wget/") (synopsis "Non-interactive command-line utility for downloading files") (description -- 1.7.9.5