From patchwork Sat Apr 21 13:31:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 154213 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id CF669B6FA3 for ; Sat, 21 Apr 2012 23:31:58 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6AB0C1013BB; Sat, 21 Apr 2012 13:31:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R5nI9h32lxDm; Sat, 21 Apr 2012 13:31:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 18A4810026B; Sat, 21 Apr 2012 13:31:52 +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 2584C8F753 for ; Sat, 21 Apr 2012 13:31:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0BE728CB74 for ; Sat, 21 Apr 2012 13:31:50 +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 xD8Eeoemuv5V for ; Sat, 21 Apr 2012 13:31:44 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id B0EA98CB20 for ; Sat, 21 Apr 2012 13:31:44 +0000 (UTC) Received: from asgard (host56.190-224-151.telecom.net.ar [190.224.151.56]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q3LDVdeh030188 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 21 Apr 2012 10:31:41 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1335015102; bh=knMAy7Q8wbeHcqiJTO9orYIbiAbr8ueLcwDYMZuOfJI=; h=From:To:Cc:Subject:Date:Message-Id; b=qmIdobE0bCBA6hiMIHZN/RFaSL4psvyzqT8qBB+wA7+5PvQ9cmBhLhsS+2WFWhv8p AxJ6ARANcU3sSkmIWQMWya0RfxCnOxe8g2AlQzhabudzeq3NLgl96Y1KAJBxpfJgN0 GNRp81MrJCytNHAOcmYYKw+WJ6ntGib4pc6jZBCc= Received: by asgard (sSMTP sendmail emulation); Sat, 21 Apr 2012 10:31:36 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sat, 21 Apr 2012 10:31:35 -0300 Message-Id: <1335015095-6585-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] lame: bump to version 3.99.5 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Gustavo Zacarias --- package/multimedia/lame/lame.mk | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package/multimedia/lame/lame.mk b/package/multimedia/lame/lame.mk index fbf0dda..7b4b0ae 100644 --- a/package/multimedia/lame/lame.mk +++ b/package/multimedia/lame/lame.mk @@ -4,8 +4,10 @@ # ############################################################# -LAME_VERSION = 3.99 -LAME_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/lame +LAME_VERSION_MAJOR = 3.99 +LAME_VERSION_MINOR = 5 +LAME_VERSION = $(LAME_VERSION_MAJOR).$(LAME_VERSION_MINOR) +LAME_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/lame/lame/$(LAME_VERSION_MAJOR) LAME_DEPENDENCIES = host-pkg-config LAME_INSTALL_STAGING = YES LAME_CONF_ENV = GTK_CONFIG=/bin/false