From patchwork Mon Jan 9 13:39:37 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vicente Olivert Riera X-Patchwork-Id: 712684 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3txx9d6dkpz9t1B for ; Tue, 10 Jan 2017 00:40:21 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4A4F38220E; Mon, 9 Jan 2017 13:40:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XP+UV7LPnRSh; Mon, 9 Jan 2017 13:40:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 8BCF382019; Mon, 9 Jan 2017 13:40:17 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 490791C21BE for ; Mon, 9 Jan 2017 13:40:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 44BAA8144A for ; Mon, 9 Jan 2017 13:40:16 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id biNGJ-6DyYGD for ; Mon, 9 Jan 2017 13:40:14 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by hemlock.osuosl.org (Postfix) with ESMTP id 908B1877C5 for ; Mon, 9 Jan 2017 13:40:14 +0000 (UTC) Received: from HHMAIL01.hh.imgtec.org (unknown [10.100.10.19]) by Forcepoint Email with ESMTPS id 514E8FB5A4DC3 for ; Mon, 9 Jan 2017 13:40:09 +0000 (GMT) Received: from vriera-linux.le.imgtec.org (192.168.154.36) by HHMAIL01.hh.imgtec.org (10.100.10.21) with Microsoft SMTP Server (TLS) id 14.3.294.0; Mon, 9 Jan 2017 13:40:12 +0000 From: Vicente Olivert Riera To: Date: Mon, 9 Jan 2017 13:39:37 +0000 Message-ID: <20170109133937.39891-1-Vincent.Riera@imgtec.com> X-Mailer: git-send-email 2.10.2 MIME-Version: 1.0 X-Originating-IP: [192.168.154.36] Subject: [Buildroot] [PATCH] cjson: bump version to v1.2.0 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Also remove the patch since it's already contained in this release. Signed-off-by: Vicente Olivert Riera --- package/cjson/cjson.hash | 3 +-- package/cjson/cjson.mk | 8 +------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/package/cjson/cjson.hash b/package/cjson/cjson.hash index fc0ed28..a6370de 100644 --- a/package/cjson/cjson.hash +++ b/package/cjson/cjson.hash @@ -1,3 +1,2 @@ # Locally computed: -sha256 3487795d54440bdbd41b4b8e7688889526f2f9a652639f6036b9965016c800e7 cjson-v1.1.0.tar.gz -sha256 8eea780ee5729275a5076002d92a4c7854ecb89968b26a81efeb5bd9828268a0 fcc89c4bb264d665929b00eeebc479a643a90896.patch +sha256 df549298ea6515058648eaacc62bcc4f82fa34f8b93af7753e30eb35c3841c7d cjson-v1.2.0.tar.gz diff --git a/package/cjson/cjson.mk b/package/cjson/cjson.mk index 7ac7a71..f0fe63b 100644 --- a/package/cjson/cjson.mk +++ b/package/cjson/cjson.mk @@ -4,16 +4,10 @@ # ################################################################################ -CJSON_VERSION = v1.1.0 +CJSON_VERSION = v1.2.0 CJSON_SITE = $(call github,DaveGamble,cjson,$(CJSON_VERSION)) CJSON_INSTALL_STAGING = YES CJSON_LICENSE = MIT CJSON_LICENSE_FILES = LICENSE -# This patch fixes -Werror=strict-overflow compile errors on sh4a and powerpc -# toolchains: -# http://autobuild.buildroot.net/results/3d899790acdc5c21733ff6f7f5a1b500e862ea0a -CJSON_PATCH = \ - https://github.com/DaveGamble/cjson/commit/fcc89c4bb264d665929b00eeebc479a643a90896.patch - $(eval $(cmake-package))