From patchwork Thu Jan 2 17:46:12 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 306243 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 5256E2C009C for ; Fri, 3 Jan 2014 04:46:26 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 74CFF330F8; Thu, 2 Jan 2014 17:46:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qjv3HLar+bdz; Thu, 2 Jan 2014 17:46:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id BF4513310D; Thu, 2 Jan 2014 17:46:23 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 56B691BF952 for ; Thu, 2 Jan 2014 17:46:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 50FDD8D236 for ; Thu, 2 Jan 2014 17:46:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PoyAa-YRi2xM for ; Thu, 2 Jan 2014 17:46:21 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from blu0-omc3-s8.blu0.hotmail.com (blu0-omc3-s8.blu0.hotmail.com [65.55.116.83]) by whitealder.osuosl.org (Postfix) with ESMTP id 699998D0B5 for ; Thu, 2 Jan 2014 17:46:21 +0000 (UTC) Received: from BLU0-SMTP52 ([65.55.116.74]) by blu0-omc3-s8.blu0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Thu, 2 Jan 2014 09:46:20 -0800 X-TMN: [kl4rOJSfpHbu3dCMbTPwk21Ca59Gsn3o] X-Originating-Email: [berndkuhls@hotmail.com] Message-ID: Received: from fli4l.lan.fli4l ([79.247.133.83]) by BLU0-SMTP52.phx.gbl over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 2 Jan 2014 09:46:19 -0800 Received: from fli4lbuild.lan.fli4l ([192.168.1.50]:40618) by fli4l.lan.fli4l with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.80.1) (envelope-from ) id 1VymLY-0002Iz-2n; Thu, 02 Jan 2014 18:46:16 +0100 From: Bernd Kuhls To: buildroot@busybox.net Date: Thu, 2 Jan 2014 18:46:12 +0100 X-Mailer: git-send-email 1.7.9.5 X-OriginalArrivalTime: 02 Jan 2014 17:46:19.0693 (UTC) FILETIME=[8B3AE5D0:01CF07E2] MIME-Version: 1.0 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v2 1/1] mpd: Fix broken download URL X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Bernd Kuhls --- Changes v1 -> v2: - use _VERSION_MAJOR ((suggested by Thomas & Jerzy) package/mpd/mpd.mk | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/mpd/mpd.mk b/package/mpd/mpd.mk index d8f344f..4367cae 100644 --- a/package/mpd/mpd.mk +++ b/package/mpd/mpd.mk @@ -4,9 +4,10 @@ # ################################################################################ -MPD_VERSION = 0.17.6 +MPD_VERSION_MAJOR = 0.17 +MPD_VERSION = $(MPD_VERSION_MAJOR).6 MPD_SOURCE = mpd-$(MPD_VERSION).tar.xz -MPD_SITE = http://www.musicpd.org/download/mpd/stable +MPD_SITE = http://www.musicpd.org/download/mpd/$(MPD_VERSION_MAJOR) MPD_DEPENDENCIES = host-pkgconf libglib2 MPD_LICENSE = GPLv2 MPD_LICENSE_FILES = COPYING