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,33 +0,0 @@
|
||||
From d747c4753484aa9b90a094d6bf7ec45e5acfb623 Mon Sep 17 00:00:00 2001
|
||||
From: Naor Livne <naorlivne@gmail.com>
|
||||
Date: Wed, 7 Jul 2021 16:25:20 +0300
|
||||
Subject: [PATCH] Allow idna 3.x to be installed on Python 3.x
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Co-authored-by: Mickaël Schoentgen <contact@tiger-222.fr>
|
||||
Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com>
|
||||
(cherry picked from commit 33cf965f7271ab4978ed551754db37865c4085db)
|
||||
Signed-off-by: Romain Naour <romain.naour@gmail.com>
|
||||
---
|
||||
setup.py | 3 ++-
|
||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 7ba4b2a2..83d78665 100755
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -43,7 +43,8 @@ packages = ['requests']
|
||||
|
||||
requires = [
|
||||
'chardet>=3.0.2,<5',
|
||||
- 'idna>=2.5,<3',
|
||||
+ 'idna>=2.5,<3; python_version < "3"',
|
||||
+ 'idna>=2.5,<4; python_version >= "3"',
|
||||
'urllib3>=1.21.1,<1.27',
|
||||
'certifi>=2017.4.17'
|
||||
|
||||
--
|
||||
2.31.1
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
config BR2_PACKAGE_PYTHON_REQUESTS
|
||||
bool "python-requests"
|
||||
depends on BR2_PACKAGE_PYTHON3 # python-idna
|
||||
select BR2_PACKAGE_PYTHON_CERTIFI # runtime
|
||||
select BR2_PACKAGE_PYTHON_CHARDET # runtime
|
||||
select BR2_PACKAGE_PYTHON_CHARSET_NORMALIZER # runtime
|
||||
select BR2_PACKAGE_PYTHON_IDNA # runtime
|
||||
select BR2_PACKAGE_PYTHON_URLLIB3 # runtime
|
||||
select BR2_PACKAGE_PYTHON3_SSL # runtime
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/requests/json
|
||||
md5 514d6f7eba77ada0b8c98ec7818828db requests-2.25.1.tar.gz
|
||||
sha256 27973dd4a904a4f13b263a19c866c13b92a39ed1c964655f025f3f8d3d75b804 requests-2.25.1.tar.gz
|
||||
md5 09b752e0b0a672d805ae54455c128d42 requests-2.28.2.tar.gz
|
||||
sha256 98b1b2782e3c6c4904938b84c0eb932721069dfdb9134313beff7c83c2df24bf requests-2.28.2.tar.gz
|
||||
# Locally computed sha256 checksums
|
||||
sha256 09e8a9bcec8067104652c168685ab0931e7868f9c8284b66f5ae6edae5f1130b LICENSE
|
||||
|
||||
@@ -4,14 +4,19 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# Please keep in sync with package/python3-requests/python3-requests.mk
|
||||
PYTHON_REQUESTS_VERSION = 2.25.1
|
||||
PYTHON_REQUESTS_VERSION = 2.28.2
|
||||
PYTHON_REQUESTS_SOURCE = requests-$(PYTHON_REQUESTS_VERSION).tar.gz
|
||||
PYTHON_REQUESTS_SITE = https://files.pythonhosted.org/packages/6b/47/c14abc08432ab22dc18b9892252efaf005ab44066de871e72a38d6af464b
|
||||
PYTHON_REQUESTS_SITE = https://files.pythonhosted.org/packages/9d/ee/391076f5937f0a8cdf5e53b701ffc91753e87b07d66bae4a09aa671897bf
|
||||
PYTHON_REQUESTS_SETUP_TYPE = setuptools
|
||||
PYTHON_REQUESTS_LICENSE = Apache-2.0
|
||||
PYTHON_REQUESTS_LICENSE_FILES = LICENSE
|
||||
PYTHON_REQUESTS_CPE_ID_VENDOR = python
|
||||
PYTHON_REQUESTS_CPE_ID_PRODUCT = requests
|
||||
HOST_PYTHON_REQUESTS_DEPENDENCIES = \
|
||||
host-python-certifi \
|
||||
host-python-charset-normalizer \
|
||||
host-python-idna \
|
||||
host-python-urllib3
|
||||
|
||||
$(eval $(python-package))
|
||||
$(eval $(host-python-package))
|
||||
|
||||
Reference in New Issue
Block a user