From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47347) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f4QQW-0006em-FN for guix-patches@gnu.org; Fri, 06 Apr 2018 08:25:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f4QQQ-0006X4-Ia for guix-patches@gnu.org; Fri, 06 Apr 2018 08:25:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60250) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f4QQQ-0006Wp-EX for guix-patches@gnu.org; Fri, 06 Apr 2018 08:25:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f4QQQ-0006Rc-5z for guix-patches@gnu.org; Fri, 06 Apr 2018 08:25:02 -0400 Subject: [bug#31076] gnurl 7.59.0 Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47045) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f4QQ5-0006Ki-42 for guix-patches@gnu.org; Fri, 06 Apr 2018 08:24:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f4QQ3-0006QE-U5 for guix-patches@gnu.org; Fri, 06 Apr 2018 08:24:41 -0400 Received: from conspiracy.of.n0.is ([2a01:4f8:1c0c:7ad0::1]:46826) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1f4QQ3-0006OT-IH for guix-patches@gnu.org; Fri, 06 Apr 2018 08:24:39 -0400 Received: by conspiracy.of.n0.is (OpenSMTPD) with ESMTPSA id ffd8469b (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256:NO) for ; Fri, 6 Apr 2018 12:24:36 +0000 (UTC) Date: Fri, 6 Apr 2018 12:24:57 +0000 From: Nils Gillmann Message-ID: <20180406122457.dg5mvmgmuotfslho@abyayala> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="kdku43fuxqkjkv7x" Content-Disposition: inline List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31076@debbugs.gnu.org --kdku43fuxqkjkv7x Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Seems like ftp.gnu.org is currently either very slow or having troubles with the actual software distribution. The signatures landed on there, the rest has yet to materialize. That's why ftp.n0.is has been added as a fallback. You can check the files on ftp.n0.is gnurl directory with signify(1). --kdku43fuxqkjkv7x Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="0001-gnu-gnurl-Update-to-version-7.59.0.patch" Content-Transfer-Encoding: quoted-printable =46rom 86bfb288c227f4100f06a175e833b06aae68c89d Mon Sep 17 00:00:00 2001 =46rom: Nils Gillmann Date: Fri, 6 Apr 2018 11:09:43 +0000 Subject: [PATCH] gnu: gnurl: Update to version 7.59.0. * gnu/packages/gnunet.scm (gnurl): Update to version 7.59.0. [source]: Add temporary second source at ftp.n0.is. Signed-off-by: Nils Gillmann --- gnu/packages/gnunet.scm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 7f442910e..b6062625c 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -186,13 +186,16 @@ authentication and support for SSL3 and TLS.") (define-public gnurl (package (name "gnurl") - (version "7.58.0") + (version "7.59.0") (source (origin (method url-fetch) - (uri (string-append "mirror://gnu/gnunet/" name "-" version ".= tar.xz")) + (uri (list (string-append "mirror://gnu/gnunet/" name "-" vers= ion ".tar.xz") + ;; TODO: Remove once gnurl-7.59.0 release has synce= d to ftp.gnu.org + (string-append "https://ftp.n0.is/pub/releases/gnur= l/" + name "-" version ".tar.xz"))) (sha256 (base32 - "1yyswsz0csplqi8hlhqaxlafqn5kh5016j8k2gaxziv4cb343znx")))) + "0fdwqxs4crzj1nbq3lz0xbqjiiqpq16vpll09gryyq4c1y6lbyib")))) (build-system gnu-build-system) (outputs '("out" "doc")) ; 1.5 MiB of man3 pages --=20 2.16.3 --kdku43fuxqkjkv7x--