From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH] Replace broken LADSPA URL. Date: Mon, 16 Nov 2015 20:33:22 +0100 Message-ID: <87fv05oi2l.fsf@elephly.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59970) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZyPWw-0005mR-GV for guix-devel@gnu.org; Mon, 16 Nov 2015 14:33:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZyPWr-0000qa-Md for guix-devel@gnu.org; Mon, 16 Nov 2015 14:33:34 -0500 Received: from sender163-mail.zoho.com ([74.201.84.163]:25844) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZyPWr-0000ot-E0 for guix-devel@gnu.org; Mon, 16 Nov 2015 14:33: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 The ladspa.org domain appears to be no longer under control of the LADSPA project (does it still exist?). The attached patch changes the source URL such that it downloads the last copy archived by http://web.archive.org. Is this okay or should we look for a more permanent home for the LADSPA sources? ~~ Ricardo --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-ladspa-Download-sources-from-web-archive.patch >From 0524fcfaf534543621e78145cadbc2cb8eca6da4 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 16 Nov 2015 20:25:27 +0100 Subject: [PATCH] gnu: ladspa: Download sources from web archive. * gnu/packages/audio.scm (ladspa)[source]: Replace broken URL with web archive URL. --- gnu/packages/audio.scm | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 4a86a8d..23a5355 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -755,14 +755,15 @@ plugin function as a JACK application.") (name "ladspa") (version "1.13") (source (origin - (method url-fetch) - (uri (string-append - "http://www.ladspa.org/download/ladspa_sdk_" - version - ".tgz")) - (sha256 - (base32 - "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm")))) + (method url-fetch) + ;; The domain ladspa.org seems to be no longer under the control + ;; of the LADSPA project. + (uri (string-append + "http://web.archive.org/web/20150426155900/" + "http://www.ladspa.org/download/ladspa_sdk.tgz")) + (sha256 + (base32 + "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; the "test" target is a listening test only -- 2.5.0 --=-=-=--