[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_CBOR2
bool "python-cbor2"
help
Pure Python CBOR (de)serializer with extensive tag support.
https://cbor2.readthedocs.io/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/cbor2/json
md5 358b18e2a96ab96945e33417d5c8cb31 cbor2-5.4.3.tar.gz
sha256 62b863c5ee6ced4032afe948f3c1484f375550995d3b8498145237fe28e546c2 cbor2-5.4.3.tar.gz
# Locally computed sha256 checksums
sha256 a6afd126d8f545a15166a22f25fadff4b9fb4978bbdd17e97d97d950b66d2fef LICENSE.txt

View File

@ -0,0 +1,16 @@
################################################################################
#
# python-cbor2
#
################################################################################
PYTHON_CBOR2_VERSION = 5.4.3
PYTHON_CBOR2_SOURCE = cbor2-$(PYTHON_CBOR2_VERSION).tar.gz
PYTHON_CBOR2_SITE = https://files.pythonhosted.org/packages/9d/c9/cfa5c35a62642a19c14bf9a12dfbf0ee134466be1f062df2258a2ec2f2f7
PYTHON_CBOR2_SETUP_TYPE = setuptools
PYTHON_CBOR2_LICENSE = MIT
PYTHON_CBOR2_LICENSE_FILES = LICENSE.txt
PYTHON_CBOR2_DEPENDENCIES = host-python-setuptools-scm
PYTHON_CBOR2_ENV = CBOR2_BUILD_C_EXTENSION=1
$(eval $(python-package))