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
>From 06d670d362c140e46781bc2348fb85d822986d19 Mon Sep 17 00:00:00 2001
From: Mark H Weaver <[email protected]>
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