From patchwork Wed Oct 27 18:26:30 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartosz Bilas X-Patchwork-Id: 1547043 Return-Path: X-Original-To: incoming-buildroot@patchwork.ozlabs.org Delivered-To: patchwork-incoming-buildroot@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=buildroot.org (client-ip=140.211.166.137; helo=smtp4.osuosl.org; envelope-from=buildroot-bounces@buildroot.org; receiver=) Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4HfcbS1DWHz9sXS for ; Thu, 28 Oct 2021 05:26:44 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id 86C324057F; Wed, 27 Oct 2021 18:26:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W-eL6rlN-dPl; Wed, 27 Oct 2021 18:26:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by smtp4.osuosl.org (Postfix) with ESMTP id EF77C40576; Wed, 27 Oct 2021 18:26:39 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from smtp4.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id AE53A1BF2C7 for ; Wed, 27 Oct 2021 18:26:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp4.osuosl.org (Postfix) with ESMTP id AA35440576 for ; Wed, 27 Oct 2021 18:26:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp4.osuosl.org ([127.0.0.1]) by localhost (smtp4.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XPhYfVLCpd9O for ; Wed, 27 Oct 2021 18:26:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.8.0 Received: from mail.grinn-global.com (mail.grinn-global.com [77.55.128.204]) by smtp4.osuosl.org (Postfix) with ESMTPS id 80C51404F8 for ; Wed, 27 Oct 2021 18:26:37 +0000 (UTC) X-Virus-Scanned: by amavisd-new using ClamAV (18) Received: from bartekk-pc.lan (host-81-161-204-252.oxylion.net.pl [81.161.204.252]) by server220076.nazwa.pl (Postfix) with ESMTP id 0FB291C4A07; Wed, 27 Oct 2021 20:26:33 +0200 (CEST) From: Bartosz Bilas To: buildroot@buildroot.org Date: Wed, 27 Oct 2021 20:26:30 +0200 Message-Id: <20211027182630.601759-1-b.bilas@grinn-global.com> X-Mailer: git-send-email 2.33.1 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] package/python-esptool: bump version to 3.2 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: , Cc: Bartosz Bilas Errors-To: buildroot-bounces@buildroot.org Sender: "buildroot" Signed-off-by: Bartosz Bilas --- ...-wheel-only-when-installing-from-pip.patch | 36 ------------------- package/python-esptool/python-esptool.hash | 4 +-- package/python-esptool/python-esptool.mk | 4 +-- 3 files changed, 4 insertions(+), 40 deletions(-) delete mode 100644 package/python-esptool/0001-setup.py-require-wheel-only-when-installing-from-pip.patch diff --git a/package/python-esptool/0001-setup.py-require-wheel-only-when-installing-from-pip.patch b/package/python-esptool/0001-setup.py-require-wheel-only-when-installing-from-pip.patch deleted file mode 100644 index 3318fa7b26..0000000000 --- a/package/python-esptool/0001-setup.py-require-wheel-only-when-installing-from-pip.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 3f2746ad05067aad960f7a08e53f6e72c5eecd07 Mon Sep 17 00:00:00 2001 -From: Bartosz Bilas -Date: Sat, 12 Jun 2021 13:50:15 +0200 -Subject: [PATCH] setup.py: require wheel only when installing from pip - -Fix the build from sources (that don't require wheel) -in environments where this module is not available. - -Signed-off-by: Bartosz Bilas -Signed-off-by: Bartosz Bilas ---- - Upstream status: https://github.com/espressif/esptool/pull/632 - - setup.py | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) - -diff --git a/setup.py b/setup.py -index 2b17b28..1a8421d 100644 ---- a/setup.py -+++ b/setup.py -@@ -110,7 +110,11 @@ setup( - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - ], -- setup_requires=['wheel'] if sys.version_info[0:2] not in [(3, 4), (3, 5)] else [], -+ setup_requires=( -+ ['wheel'] -+ if 'bdist_wheel' in sys.argv and sys.version_info[0:2] not in [(3, 4), (3, 5)] else -+ [] -+ ), - extras_require={ - "dev": [ - 'flake8>=3.2.0', --- -2.32.0 - diff --git a/package/python-esptool/python-esptool.hash b/package/python-esptool/python-esptool.hash index 7a707d34c6..a916f9a09a 100644 --- a/package/python-esptool/python-esptool.hash +++ b/package/python-esptool/python-esptool.hash @@ -1,5 +1,5 @@ # md5, sha256 from https://pypi.org/pypi/esptool/json -md5 d62d71041896d105d7abd9e9c40f1995 esptool-3.1.tar.gz -sha256 ec6b943c53b4d71f87f98776333d5b4b99905766898a7002c28a9090b92b2de4 esptool-3.1.tar.gz +md5 84aa6ffb4723b1f59a2c83244a9ad918 esptool-3.2.tar.gz +sha256 9638ff11c68e621e08e7c3335d4fd9d70b2ddcf7caae778073cd8cc27be1216f esptool-3.2.tar.gz # Locally computed sha256 checksums sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE diff --git a/package/python-esptool/python-esptool.mk b/package/python-esptool/python-esptool.mk index 92f9bfce18..77291e252b 100644 --- a/package/python-esptool/python-esptool.mk +++ b/package/python-esptool/python-esptool.mk @@ -4,9 +4,9 @@ # ################################################################################ -PYTHON_ESPTOOL_VERSION = 3.1 +PYTHON_ESPTOOL_VERSION = 3.2 PYTHON_ESPTOOL_SOURCE = esptool-$(PYTHON_ESPTOOL_VERSION).tar.gz -PYTHON_ESPTOOL_SITE = https://files.pythonhosted.org/packages/9c/c8/28f21b3d3b5e1f1d249be52cdd91793c8c3f7c4f4f255ece7d50984fb05d +PYTHON_ESPTOOL_SITE = https://files.pythonhosted.org/packages/60/a4/33907f5b735f9179061bd6b6cae7123d4a2d0cdf46c879fa55e66edef24f PYTHON_ESPTOOL_SETUP_TYPE = setuptools PYTHON_ESPTOOL_LICENSE = GPL-2.0+ PYTHON_ESPTOOL_LICENSE_FILES = LICENSE