[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,7 @@
config BR2_PACKAGE_PYTHON_MODBUS_TK
bool "python-modbus-tk"
select BR2_PACKAGE_PYTHON_SERIAL # runtime
help
Implementation of modbus protocol in python.
https://github.com/ljean/modbus-tk/

View File

@ -0,0 +1,5 @@
# sha256 from https://pypi.org/pypi/modbus-tk/json
sha256 893514bbd8c92118d20a19979e0239e7cb2a63f8f1795a0271e57def09d11770 modbus_tk-1.1.2.tar.gz
# Locally computed sha256 checksums
sha256 3b6a7f9c478ac1982e86cdadb45eb4788241b95839500eb26839d5053b74a24a license.txt
sha256 aa7ca42152a13db6a27b31944f99851efc3b9ee813912ff21d7d6ceadca62e6f copying.txt

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-modbus-tk
#
################################################################################
PYTHON_MODBUS_TK_VERSION = 1.1.2
PYTHON_MODBUS_TK_SOURCE = modbus_tk-$(PYTHON_MODBUS_TK_VERSION).tar.gz
PYTHON_MODBUS_TK_SITE = https://files.pythonhosted.org/packages/ce/e9/30d86eb912bf868b8c97698b5747f10cf72dc26c674fd030249bc3275484
PYTHON_MODBUS_TK_SETUP_TYPE = setuptools
PYTHON_MODBUS_TK_LICENSE = LGPL-2.1+
PYTHON_MODBUS_TK_LICENSE_FILES = license.txt copying.txt
$(eval $(python-package))