[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_SMBUS_CFFI
bool "python-smbus-cffi"
select BR2_PACKAGE_PYTHON_CFFI
help
This Python module allows SMBus access through the I2C /dev
interface on Linux hosts. The host kernel must have I2C
support, I2C device interface support, and a bus adapter
driver.
https://github.com/bivab/smbus-cffi

View File

@ -0,0 +1,5 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=f621c871bd658ee665751ad78e3b2df9
md5 f621c871bd658ee665751ad78e3b2df9 smbus-cffi-0.5.1.tar.gz
# Locally computed
sha256 fb4195aaabfc01586863f60d3190b5cb1bf8f12622fd597e23e48768dad6bde8 smbus-cffi-0.5.1.tar.gz
sha256 d54f57bf73bd1ff19a424b6deab6ff08f6089a2469c8de360b167f755e4ecb4c LICENSE

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-smbus-cffi
#
################################################################################
PYTHON_SMBUS_CFFI_VERSION = 0.5.1
PYTHON_SMBUS_CFFI_SOURCE = smbus-cffi-$(PYTHON_SMBUS_CFFI_VERSION).tar.gz
PYTHON_SMBUS_CFFI_SITE = https://pypi.python.org/packages/source/s/smbus-cffi
PYTHON_SMBUS_CFFI_SETUP_TYPE = setuptools
PYTHON_SMBUS_CFFI_LICENSE = GPL-2.0
PYTHON_SMBUS_CFFI_LICENSE_FILES = LICENSE
PYTHON_SMBUS_CFFI_DEPENDENCIES = host-python-cffi
$(eval $(python-package))