From patchwork Wed Nov 26 14:19:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 415141 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 95740140182 for ; Thu, 27 Nov 2014 01:19:19 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2156A92069; Wed, 26 Nov 2014 14:19:19 +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 LeIBXN2yi4eI; Wed, 26 Nov 2014 14:19:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 96F4C91E1F; Wed, 26 Nov 2014 14:19:17 +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 939DF1C2262 for ; Wed, 26 Nov 2014 14:19:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8F015914B9 for ; Wed, 26 Nov 2014 14:19:16 +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 41sgM2jtvRUy for ; Wed, 26 Nov 2014 14:19:15 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from www.zacarias.com.ar (www.zacarias.com.ar [62.210.192.172]) by whitealder.osuosl.org (Postfix) with ESMTPS id 396169122F for ; Wed, 26 Nov 2014 14:19:14 +0000 (UTC) Received: from asgard (cpe-181-46-99-160.telecentro-reversos.com.ar [181.46.99.160] (may be forged)) (authenticated bits=0) by www.zacarias.com.ar (8.14.9/8.14.9) with ESMTP id sAQEJ75o009810 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 26 Nov 2014 14:19:10 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1417011552; bh=0JK1avcWtueFy81DfOuz5Eph1i8B0eg0zYxbcqACl4c=; h=From:To:Cc:Subject:Date; b=mJuu/dKddwmnG6gs0oGKjK9fkGhwdKPYZZpEuzRVuyb7yWxr4NMj07V8g+wknt4Rs oamDbQ+sMDV6aR5kf0i+JCCViT0YkPlqMgDfRkmM0/w2qTNFeoHe45Yd+GE91lOM8u FZnI6MuipGUgXI73iAb2tvGkfs2k7qyvUdf86PXw= Received: by asgard (sSMTP sendmail emulation); Wed, 26 Nov 2014 11:19:01 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Wed, 26 Nov 2014 11:19:01 -0300 Message-Id: <1417011541-26934-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 2.0.4 X-Virus-Scanned: clamav-milter 0.98.4 at www X-Virus-Status: Clean Subject: [Buildroot] [PATCH] valgrind: bump to version 3.10.1 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Add hash file and switch to a non-dead homepage. Enable for supported architectures: powerpc64 & powerpc64le. Even though aarch64 is supported it's still a bit rought resulting in build failures so don't enable it for now. Signed-off-by: Gustavo Zacarias --- package/valgrind/Config.in | 9 +++++---- package/valgrind/valgrind.hash | 2 ++ package/valgrind/valgrind.mk | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 package/valgrind/valgrind.hash diff --git a/package/valgrind/Config.in b/package/valgrind/Config.in index b7521b0..558d5f0 100644 --- a/package/valgrind/Config.in +++ b/package/valgrind/Config.in @@ -1,12 +1,13 @@ config BR2_PACKAGE_VALGRIND bool "valgrind" - depends on BR2_i386 || BR2_x86_64 || BR2_ARM_CPU_ARMV7A || \ - BR2_powerpc || BR2_mips || BR2_mipsel || BR2_mips64 || \ - BR2_mips64el + depends on BR2_ARM_CPU_ARMV7A || BR2_i386 || \ + BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \ + BR2_powerpc || BR2_powerpc64 || BR2_powerpc64el || \ + BR2_x86_64 help Tool for debugging and profiling Linux programs. - http://valgrind.kde.org/ + http://valgrind.org/ if BR2_PACKAGE_VALGRIND diff --git a/package/valgrind/valgrind.hash b/package/valgrind/valgrind.hash new file mode 100644 index 0000000..f311ea4 --- /dev/null +++ b/package/valgrind/valgrind.hash @@ -0,0 +1,2 @@ +# From http://valgrind.org/downloads/current.html +md5 60ddae962bc79e7c95cfc4667245707f valgrind-3.10.1.tar.bz2 diff --git a/package/valgrind/valgrind.mk b/package/valgrind/valgrind.mk index b65e048..aaca39f 100644 --- a/package/valgrind/valgrind.mk +++ b/package/valgrind/valgrind.mk @@ -4,7 +4,7 @@ # ################################################################################ -VALGRIND_VERSION = 3.10.0 +VALGRIND_VERSION = 3.10.1 VALGRIND_SITE = http://valgrind.org/downloads VALGRIND_SOURCE = valgrind-$(VALGRIND_VERSION).tar.bz2 VALGRIND_LICENSE = GPLv2 GFDLv1.2