[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,9 @@
config BR2_PACKAGE_PYTHON_CANOPEN
bool "python-canopen"
select BR2_PACKAGE_PYTHON_CAN # runtime
help
A Python implementation of the CANopen standard. The aim
of the project is to support the most common parts of the
CiA 301 standard in a Pythonic interface.
https://github.com/christiansandberg/canopen

View File

@ -0,0 +1,4 @@
# sha256 from https://pypi.org/pypi/canopen/json
sha256 4394770d528e93a48936138c4a7b37b5dff26d54f82a435ad9790cd1e43f55b9 canopen-1.0.0.tar.gz
# Locally computed sha256 checksums
sha256 0740d30978affcd91c0fc817b7cf942a332381bf0380fe17e60c6a0b377c6e0d LICENSE.txt

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-canopen
#
################################################################################
PYTHON_CANOPEN_VERSION = 1.0.0
PYTHON_CANOPEN_SOURCE = canopen-$(PYTHON_CANOPEN_VERSION).tar.gz
PYTHON_CANOPEN_SITE = https://files.pythonhosted.org/packages/1f/2b/55b6d82b3dcba184a01c6fe027df239953940e36a463cd24b71e67bd1f37
PYTHON_CANOPEN_SETUP_TYPE = setuptools
PYTHON_CANOPEN_LICENSE = MIT
PYTHON_CANOPEN_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))