From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: [PATCH] gnu: subversion: Download from apache archive site Date: Fri, 07 Jun 2013 22:53:19 -0400 Message-ID: <87r4gdxqhs.fsf@tines.lan> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51440) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ul9Ha-0005xZ-8f for bug-guix@gnu.org; Fri, 07 Jun 2013 22:53:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ul9HY-0005Rg-Iv for bug-guix@gnu.org; Fri, 07 Jun 2013 22:53:34 -0400 Received: from world.peace.net ([96.39.62.75]:53421) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ul9HY-0005Rc-Ei for bug-guix@gnu.org; Fri, 07 Jun 2013 22:53:32 -0400 List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: bug-guix@gnu.org --=-=-= Content-Type: text/plain Attempts to build subversion fail because the version currently in Guix (1.7.8) is no longer on the apache mirror network. It turns out that the apache mirrors keep only a couple of recent versions. This patch changes the download location to archive.apache.org, which keeps old versions around. What do you think? Mark --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-subversion-Download-from-apache-archive-site.patch Content-Description: [PATCH] gnu: subversion: Download from apache archive site >From 06d670d362c140e46781bc2348fb85d822986d19 Mon Sep 17 00:00:00 2001 From: Mark H Weaver Date: Fri, 7 Jun 2013 21:42:33 -0400 Subject: [PATCH] gnu: subversion: Download from apache archive site. * gnu/packages/subversion.scm (subversion): Download from archive.apache.org, where versions are kept for a longer period of time. Previously, we downloaded from the mirrors, which keep only the most recent versions. --- gnu/packages/subversion.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/subversion.scm b/gnu/packages/subversion.scm index 009b341..28ddc42 100644 --- a/gnu/packages/subversion.scm +++ b/gnu/packages/subversion.scm @@ -34,7 +34,7 @@ (version "1.7.8") (source (origin (method url-fetch) - (uri (string-append "mirror://apache/subversion/subversion-" + (uri (string-append "https://archive.apache.org/dist/subversion/subversion-" version ".tar.bz2")) (sha256 (base32 -- 1.7.10.4 --=-=-=--