From patchwork Sat Jun 6 08:30:39 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hannu Nyman X-Patchwork-Id: 481621 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 5209614027C for ; Sat, 6 Jun 2015 18:31:37 +1000 (AEST) Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 5FED0280850; Sat, 6 Jun 2015 10:29:39 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00 autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id AA2AE280409 for ; Sat, 6 Jun 2015 10:29:31 +0200 (CEST) X-policyd-weight: using cached result; rate: -5.5 Received: from filtteri6.pp.htv.fi (filtteri6.pp.htv.fi [213.243.153.189]) by arrakis.dune.hu (Postfix) with ESMTP for ; Sat, 6 Jun 2015 10:29:31 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by filtteri6.pp.htv.fi (Postfix) with ESMTP id 4F6EE56F4E6 for ; Sat, 6 Jun 2015 11:31:06 +0300 (EEST) X-Virus-Scanned: Debian amavisd-new at pp.htv.fi Received: from smtp4.welho.com ([213.243.153.38]) by localhost (filtteri6.pp.htv.fi [213.243.153.189]) (amavisd-new, port 10024) with ESMTP id 9nhU4F4fUHzk for ; Sat, 6 Jun 2015 11:31:02 +0300 (EEST) Received: from [192.168.1.180] (87-92-23-160.bb.dnainternet.fi [87.92.23.160]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by smtp4.welho.com (Postfix) with ESMTPS id CF3655BC010 for ; Sat, 6 Jun 2015 11:31:02 +0300 (EEST) To: OpenWrt Development List From: Hannu Nyman Message-ID: <5572AFAF.4090909@iki.fi> Date: Sat, 6 Jun 2015 11:30:39 +0300 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Thunderbird/40.0a2 MIME-Version: 1.0 Subject: [OpenWrt-Devel] bc: add download mirrors X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" bc: add download mirrors Add three download mirrors for 'bc', as the Makefile currently defines only one download location. @GNU can not be used, as the most recent version of 'bc' is not available at the general GNU mirrors, and can only be found at the "gnu-alpha" mirrors. Signed-off-by: Hannu Nyman --- A forum discussion brought 'bc' download problems into my attention: https://forum.openwrt.org/viewtopic.php?id=57803 The package Makefile defines only a single download server that was down, and the file is not available at the Openwrt mirrors. The most recent 'bc' is not available in most of the GNU mirrors, so I searched a bit and found three mirrors of "GNU alpha", which I added to the Makefile. Index: tools/bc/Makefile =================================================================== --- tools/bc/Makefile (revision 45907) +++ tools/bc/Makefile (working copy) @@ -10,7 +10,11 @@ PKG_VERSION:=1.06.95 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 -PKG_SOURCE_URL:=http://alpha.gnu.org/gnu/bc +PKG_SOURCE_URL:=http://alpha.gnu.org/gnu/bc \ + http://gnualpha.uib.no/bc/ \ + http://mirrors.fe.up.pt/pub/gnu-alpha/bc/ \ + http://www.nic.funet.fi/pub/gnu/alpha/gnu/bc/ + PKG_MD5SUM:=5126a721b73f97d715bb72c13c889035 include $(INCLUDE_DIR)/host-build.mk