Good Catch!
On 12/11/2015, Efraim Flashner <[email protected]> wrote:
> On Thu, 12 Nov 2015 21:51:57 +0800
> Alex Vong <[email protected]> wrote:
>
>> Hi,
>>
>> I have noticed <http://www.ladspa.org/> is not accessible anymore,
>> causing ladspa to FTBFS on my laptop. Can anyone confirm this? Hydra's
>> last build was on 2015-10-13. The patch updates the home page to the
>> self-documented header file "ladspa.h" and updates the source url to
>> slackware's mirror of ladspa. Does this look fine?
>>
>> Cheers,
>> Alex
>
> (uri (string-append
> - "http://www.ladspa.org/download/ladspa_sdk_"
> +
> "http://slackware.org.uk/slacky/slackware-13.0/multimedia/ladspa/1.13/src/ladspa_sdk_"
>
> near the end of the url, change the 1.13 to: " version "
>
> --
> Efraim Flashner <[email protected]> אפרים פלשנר
> GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
> Confidentiality cannot be guaranteed on emails sent or received unencrypted
>
From b9360b2173d2b51c8077ed1b4aa27cfb82d2becd Mon Sep 17 00:00:00 2001
From: Alex Vong <[email protected]>
Date: Thu, 12 Nov 2015 01:19:44 +0800
Subject: [PATCH] gnu: ladspa: Update urls.
* gnu/packages/audio.scm (ladspa): Update source and home page url.
---
gnu/packages/audio.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index a6899a0..9ed21bd 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -758,7 +758,9 @@ plugin function as a JACK application.")
(source (origin
(method url-fetch)
(uri (string-append
- "http://www.ladspa.org/download/ladspa_sdk_"
+ "http://slackware.org.uk/slacky/slackware-13.0/multimedia/ladspa/"
+ version
+ "/src/ladspa_sdk_"
version
".tgz"))
(sha256
@@ -781,7 +783,8 @@ plugin function as a JACK application.")
(("^CC.*") "CC = gcc\n")
(("^CPP.*") "CPP = g++\n"))))
(alist-delete 'build %standard-phases))))
- (home-page "http://ladspa.org")
+ (home-page "https://community.ardour.org/files/doxygen/ladspa_8h_source.html") ; Since the home page is gone,
+ ;; we provide a link to the self-documented header file.
(synopsis "Linux Audio Developer's Simple Plugin API (LADSPA)")
(description
"LADSPA is a standard that allows software audio processors and effects
--
2.6.3