From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: net-tools: Use a different source mirror. Date: Thu, 4 Feb 2016 03:02:26 -0500 Message-ID: <20160204080226.GA14317@jasmine> References: <56b2fd4a.57116b0a.987be.ffffd927@mx.google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51579) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aREs4-0000QS-KC for guix-devel@gnu.org; Thu, 04 Feb 2016 03:02:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aREs1-0007gP-Cw for guix-devel@gnu.org; Thu, 04 Feb 2016 03:02:32 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:51105) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aREs0-0007eY-Ow for guix-devel@gnu.org; Thu, 04 Feb 2016 03:02:29 -0500 Content-Disposition: inline In-Reply-To: <56b2fd4a.57116b0a.987be.ffffd927@mx.google.com> 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: Jookia <166291@gmail.com> Cc: guix-devel@gnu.org On Tue, Feb 02, 2016 at 09:38:43PM +0000, Jookia wrote: > The current mirror for the source code now points to a domain parking website, > so instead use this mirror I found online. It looks like Debian is packaging git checkouts. I didn't look at what repo they are of, but Debian also names this Sourceforge page as upstream's home-page: https://packages.debian.org/stretch/net/net-tools http://sourceforge.net/projects/net-tools/ The repo is 10 years old and seems to be actively maintained. We should see if it is suitable for packaging. > > * gnu/packages/linux.scm (net-tools): Use a different uri for the origin. > --- > gnu/packages/linux.scm | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm > index 9d359e3..f6373a8 100644 > --- a/gnu/packages/linux.scm > +++ b/gnu/packages/linux.scm > @@ -7,6 +7,7 @@ > ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer > ;;; Copyright © 2015, 2016 Efraim Flashner > ;;; Copyright © 2016 Christopher Allan Webber > +;;; Copyright © 2016 Jookia <166291@gmail.com> > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -951,8 +952,9 @@ manpages.") > (home-page "http://www.tazenda.demon.co.uk/phil/net-tools/") > (source (origin > (method url-fetch) > - (uri (string-append home-page "/" name "-" > - version ".tar.bz2")) > + (uri (string-append "http://distro.ibiblio.org/" > + "rootlinux/rootlinux-ports/base/" > + "net-tools/net-tools-1.60.tar.bz2")) > (sha256 > (base32 > "0yvxrzk0mzmspr7sa34hm1anw6sif39gyn85w4c5ywfn8inxvr3s")) > -- > 2.7.0 > >