mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 17:42:10 +00:00
Upgrade buildroot to 2023.05 (from 2021.08.2), kernel is upgraded to 6.3 (from 5.13.19).
This commit is contained in:
@@ -1,36 +0,0 @@
|
||||
From 3f2746ad05067aad960f7a08e53f6e72c5eecd07 Mon Sep 17 00:00:00 2001
|
||||
From: Bartosz Bilas <b.bilas@grinn-global.com>
|
||||
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 <bartosz.bilas@hotmail.com>
|
||||
Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
|
||||
---
|
||||
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
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
config BR2_PACKAGE_PYTHON_ESPTOOL
|
||||
bool "python-esptool"
|
||||
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-cryptography
|
||||
select BR2_PACKAGE_PYTHON_BITSTRING # runtime
|
||||
select BR2_PACKAGE_PYTHON_CRYPTOGRAPHY # runtime
|
||||
select BR2_PACKAGE_PYTHON_ECDSA # runtime
|
||||
select BR2_PACKAGE_PYTHON_PYAES # runtime
|
||||
select BR2_PACKAGE_PYTHON_REEDSOLO # runtime
|
||||
select BR2_PACKAGE_PYTHON_SERIAL # runtime
|
||||
select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
|
||||
select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
|
||||
select BR2_PACKAGE_PYTHON3_ZLIB
|
||||
help
|
||||
A serial utility to communicate & flash code to Espressif
|
||||
ESP8266 & ESP32 chips.
|
||||
|
||||
@@ -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 fbad6fb6024580fd2645331f92a74555 esptool-4.5.1.tar.gz
|
||||
sha256 e3eb59836123e5ebf793ef639311f7d85645526487d8b1c2b51159b455106b9a esptool-4.5.1.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE
|
||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_ESPTOOL_VERSION = 3.1
|
||||
PYTHON_ESPTOOL_VERSION = 4.5.1
|
||||
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/04/80/8eb97d1793cfaf830a4c0a7ea1d8f0674ccba8c23b7d02dcce074b5f44ea
|
||||
PYTHON_ESPTOOL_SETUP_TYPE = setuptools
|
||||
PYTHON_ESPTOOL_LICENSE = GPL-2.0+
|
||||
PYTHON_ESPTOOL_LICENSE_FILES = LICENSE
|
||||
|
||||
Reference in New Issue
Block a user