From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#18639: libdaemon home-page and source URL no longer valid Date: Mon, 06 Oct 2014 09:46:56 +0200 Message-ID: <87tx3hzllb.fsf@gnu.org> References: <87wq8edwj0.fsf@netris.org> <87h9zi3zo3.fsf@yeeloong.lan> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59030) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xb30d-0007to-U1 for bug-guix@gnu.org; Mon, 06 Oct 2014 03:47:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xb30Z-0004rF-5j for bug-guix@gnu.org; Mon, 06 Oct 2014 03:47:07 -0400 Received: from debbugs.gnu.org ([140.186.70.43]:43636) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xb30Z-0004r9-2e for bug-guix@gnu.org; Mon, 06 Oct 2014 03:47:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1Xb30Y-0001m2-RU for bug-guix@gnu.org; Mon, 06 Oct 2014 03:47:02 -0400 Sender: "Debbugs-submit" Resent-To: bug-guix@gnu.org Resent-Message-ID: In-Reply-To: <87h9zi3zo3.fsf@yeeloong.lan> (Mark H. Weaver's message of "Sun, 05 Oct 2014 18:43:56 -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: Mark H Weaver Cc: 18639-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Mark H Weaver skribis: > Mark H Weaver writes: > >> http://0pointer.de/lennart/projects/libdaemon/ no longer exists, and >> I've been unable to easily find out what happened to it, or where it >> now lives (if at all). > > In the meantime, here are two places where it can be downloaded from: > > http://pkgs.fedoraproject.org/repo/pkgs/libdaemon/libdaemon-0.14.tar.gz/5= 09dc27107c21bcd9fbf2f95f5669563/libdaemon-0.14.tar.gz > http://ftp.de.debian.org/debian/pool/main/libd/libdaemon/libdaemon_0.14.o= rig.tar.gz > > Both of these match the hash in our libdaemon recipe. The first one has > the advantage of having the filename we expect. We can add a =E2=80=98file-name=E2=80=99 field to the origin record anyway. I went ahead and committed the new URLs, except for the home page. Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable commit cae8aa0a08e6252bd6488268d51ca77de2c13511 (HEAD, refs/heads/master) Author: Ludovic Court=C3=A8s Date: Mon Oct 6 09:45:17 2014 +0200 gnu: libdaemon: Add alternate source URLs. =20=20=20=20 Fixes . Reported by Mark H Weaver . =20=20=20=20 * gnu/packages/libdaemon.scm (libdaemon)[source]: Add Debian and Fedora mirrors. Modified gnu/packages/libdaemon.scm diff --git a/gnu/packages/libdaemon.scm b/gnu/packages/libdaemon.scm index 0c77e28..24f5b51 100644 --- a/gnu/packages/libdaemon.scm +++ b/gnu/packages/libdaemon.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright =C2=A9 2013 Ludovic Court=C3=A8s +;;; Copyright =C2=A9 2013, 2014 Ludovic Court=C3=A8s ;;; ;;; This file is part of GNU Guix. ;;; @@ -28,15 +28,27 @@ (version "0.14") (source (origin (method url-fetch) - (uri (string-append - "http://0pointer.de/lennart/projects/libdaemon/libdaemo= n-" - version - ".tar.gz")) + (uri (list + (string-append + "mirror://debian/pool/main/libd/libdaemon/libdaemon_" + version ".orig.tar.gz") + "http://pkgs.fedoraproject.org/repo/pkgs/libdaemon/libd= aemon-0.14.tar.gz/509dc27107c21bcd9fbf2f95f5669563/libdaemon-0.14.tar.gz" + + ;; This used to be the canonical URL but it vanished. + ;; See . + ;; (string-append + ;; "http://0pointer.de/lennart/projects/libdaemon/libd= aemon-" + ;; version ".tar.gz") + )) (sha256 (base32 - "0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx")))) + "0d5qlq5ab95wh1xc87rqrh1vx6i8lddka1w3f1zcqvcqdxgyn8zx")) + (file-name (string-append name "-" version ".tar.gz")))) (build-system gnu-build-system) + + ;; XXX: Stale URL, missing replacement. See . (home-page "http://0pointer.de/lennart/projects/libdaemon/") + (synopsis "Lightweight C library that eases the writing of UNIX daemon= s") (description "libdaemon is a lightweight C library that eases the writing of UNIX --=-=-=--