From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from smtp3.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2D02FC04A68 for ; Wed, 27 Jul 2022 07:25:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id B6F3160AC0; Wed, 27 Jul 2022 07:25:56 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org B6F3160AC0 X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n8Z8f756iQ-m; Wed, 27 Jul 2022 07:25:54 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp3.osuosl.org (Postfix) with ESMTP id 9531060AE4; Wed, 27 Jul 2022 07:25:53 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp3.osuosl.org 9531060AE4 Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 417E61BF3A0 for ; Wed, 27 Jul 2022 07:25:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 2A62F403E2 for ; Wed, 27 Jul 2022 07:25:52 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 2A62F403E2 X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ETnj2xmUB_HN for ; Wed, 27 Jul 2022 07:25:51 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.8.0 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp2.osuosl.org 25AFB401C5 Received: from mail.heine.tech (mail.heine.tech [IPv6:2a01:4f8:1c0c:5073::1]) by smtp2.osuosl.org (Postfix) with ESMTPS id 25AFB401C5 for ; Wed, 27 Jul 2022 07:25:50 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 868281814B9; Wed, 27 Jul 2022 09:25:41 +0200 (CEST) To: buildroot@buildroot.org Date: Wed, 27 Jul 2022 09:25:00 +0200 Message-Id: <20220727072500.3019487-1-buildroot@heine.tech> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 X-Mailman-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heine.tech; s=dkim; t=1658906746; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=w3tM5PSRJGBo7zk9HRc1CuflJE4pFVAXtFz8JflL7v0=; b=LKrF+JuPRsrkWTbGJiFkOft72/yMO488/h7u3mhuH/bJdOuzeA7d8qUb3UA1WVjg9f/4g2 V+8Z56fvm4PhhE0iU8XSIBowDvQa6zGY4ZeQ9L/HN22LljauxLGuqGbDTmp59pZRVVVQ+P CyUbU9jca3iKxDfvaoq0g5tGQWQCWOQ= X-Mailman-Original-Authentication-Results: smtp2.osuosl.org; dkim=pass (1024-bit key) header.d=heine.tech header.i=@heine.tech header.a=rsa-sha256 header.s=dkim header.b=LKrF+JuP Subject: [Buildroot] [PATCH] package/{python-}protobuf: bump to version 21.4 X-BeenThere: buildroot@buildroot.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Michael Nosthoff via buildroot Reply-To: Michael Nosthoff Cc: Asaf Kahlon , Julien Olivain , Thomas Petazzoni , Matt Weber Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" protobuf changed it versioning scheme [1]. The Release version is now only the Minor.Patch version of the language specific version. C++ stays on Major version 3, but python got bumped to 4. So the handling in the .mk files changed to reflect that. python-protobuf changed it version to 4 because of some breaking changes, see[1]. [1] https://developers.google.com/protocol-buffers/docs/news/2022-05-06 Signed-off-by: Michael Nosthoff Tested-by: Julien Olivain -- chhanges from patch 21.3 -> 21.4: - package version number for both packages is now the protbuf version - Major version is contained in the SOURCE variable of the packages python-protobuf runtime tested by Julien --- package/protobuf/protobuf.hash | 2 +- package/protobuf/protobuf.mk | 4 ++-- package/python-protobuf/python-protobuf.hash | 2 +- package/python-protobuf/python-protobuf.mk | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package/protobuf/protobuf.hash b/package/protobuf/protobuf.hash index f37b2dee40..9dc0f9ff07 100644 --- a/package/protobuf/protobuf.hash +++ b/package/protobuf/protobuf.hash @@ -1,3 +1,3 @@ # Locally calculated sha256 6e5e117324afd944dcf67f36cf329843bc1a92229a8cd9bb573d7a83130fea7d LICENSE -sha256 dddd73664306d7d895a95e1cf18925b31b52785e468727e4635b45edae5166f9 protobuf-cpp-3.20.1.tar.gz +sha256 a9fd8043fef746e8d8cca9f023fb7ba6d3d102eab6dd35a04ce7157d1928726b protobuf-cpp-3.21.4.tar.gz diff --git a/package/protobuf/protobuf.mk b/package/protobuf/protobuf.mk index c4c33ba7da..ffbc39347f 100644 --- a/package/protobuf/protobuf.mk +++ b/package/protobuf/protobuf.mk @@ -7,8 +7,8 @@ # When bumping this package, make sure to also verify if the # python-protobuf package still works and to update its hash, # as they share the same version/site variables. -PROTOBUF_VERSION = 3.20.1 -PROTOBUF_SOURCE = protobuf-cpp-$(PROTOBUF_VERSION).tar.gz +PROTOBUF_VERSION = 21.4 +PROTOBUF_SOURCE = protobuf-cpp-3.$(PROTOBUF_VERSION).tar.gz PROTOBUF_SITE = https://github.com/protocolbuffers/protobuf/releases/download/v$(PROTOBUF_VERSION) PROTOBUF_LICENSE = BSD-3-Clause PROTOBUF_LICENSE_FILES = LICENSE diff --git a/package/python-protobuf/python-protobuf.hash b/package/python-protobuf/python-protobuf.hash index ddfa48b491..ae2e07d637 100644 --- a/package/python-protobuf/python-protobuf.hash +++ b/package/python-protobuf/python-protobuf.hash @@ -1,3 +1,3 @@ # Locally calculated -sha256 d3449b4df32ca155f8cd71051db916b2bf74cc925760e269c0acf09b48ec1cb8 protobuf-python-3.20.1.tar.gz +sha256 32d8a37271f42aaa0f40659f77040484d6048b187e4a98dac09eb9ed592a91dc protobuf-python-4.21.4.tar.gz sha256 6e5e117324afd944dcf67f36cf329843bc1a92229a8cd9bb573d7a83130fea7d LICENSE diff --git a/package/python-protobuf/python-protobuf.mk b/package/python-protobuf/python-protobuf.mk index b91ba49339..df90254670 100644 --- a/package/python-protobuf/python-protobuf.mk +++ b/package/python-protobuf/python-protobuf.mk @@ -5,7 +5,7 @@ ################################################################################ PYTHON_PROTOBUF_VERSION = $(PROTOBUF_VERSION) -PYTHON_PROTOBUF_SOURCE = protobuf-python-$(PYTHON_PROTOBUF_VERSION).tar.gz +PYTHON_PROTOBUF_SOURCE = protobuf-python-4.$(PYTHON_PROTOBUF_VERSION).tar.gz PYTHON_PROTOBUF_SITE = $(PROTOBUF_SITE) PYTHON_PROTOBUF_LICENSE = BSD-3-Clause PYTHON_PROTOBUF_LICENSE_FILES = LICENSE -- 2.25.1 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot