initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_IDNA
bool "python-idna"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON3_UNICODEDATA
help
A library to support the Internationalised Domain Names in
Applications (IDNA) protocol as specified in RFC 5891. This
version of the protocol is often referred to as 'IDNA2008'
and can produce different results from the earlier standard
from 2003.
https://github.com/kjd/idna
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/idna/json
md5 08ea8e2ce09e522424e872409c221138 idna-3.2.tar.gz
sha256 467fbad99067910785144ce333826c71fb0e63a425657295239737f7ecd125f3 idna-3.2.tar.gz
# Locally computed sha256 checksums
sha256 a2d6e4d940bd24dbe7b9645cde19a9792cc51db7ae0d5acd301ac860caa3e836 LICENSE.md
+14
View File
@@ -0,0 +1,14 @@
################################################################################
#
# python-idna
#
################################################################################
PYTHON_IDNA_VERSION = 3.2
PYTHON_IDNA_SOURCE = idna-$(PYTHON_IDNA_VERSION).tar.gz
PYTHON_IDNA_SITE = https://files.pythonhosted.org/packages/cb/38/4c4d00ddfa48abe616d7e572e02a04273603db446975ab46bbcd36552005
PYTHON_IDNA_LICENSE = BSD-3-Clause
PYTHON_IDNA_LICENSE_FILES = LICENSE.md
PYTHON_IDNA_SETUP_TYPE = setuptools
$(eval $(python-package))