[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,10 @@
config BR2_PACKAGE_PYTHON_CRC16
bool "python-crc16"
help
This library calculates only CRC16 (16-bit codes) and the
only supported variant at the moment is CRC-CCITT (XModem).
CRC is a way of detecting accidental changes in data storage
or transmission. There are many variants of CRC and CRC16,
in particular.
https://code.google.com/archive/p/pycrc16/

View File

@ -0,0 +1,3 @@
# locally computed
sha256 10aeda70fbe8b284874b3b1b8f74b9c1f6d5e8dee20ac8f9d5bc49f45f12a42a python-crc16-0.1.1.tar.gz
sha256 ea7d049c7705dc13afc202dd18e1827f3484f8212fd3fa7b82fc4a0c363432c9 COPYING.txt

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-crc16
#
################################################################################
PYTHON_CRC16_VERSION = 0.1.1
PYTHON_CRC16_SITE = $(call github,gennady,pycrc16,v$(PYTHON_CRC16_VERSION))
PYTHON_CRC16_LICENSE = LGPL-3.0+
PYTHON_CRC16_LICENSE_FILES = COPYING.txt
PYTHON_CRC16_SETUP_TYPE = distutils
$(eval $(python-package))