[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,15 @@
config BR2_PACKAGE_PYTHON_PYSMB
bool "python-pysmb"
depends on BR2_INSTALL_LIBSTDCPP
select BR2_PACKAGE_PYTHON_PYASN1
help
pysmb is an experimental SMB/CIFS library written in Python.
It implements the client-side SMB/CIFS protocol (SMB1 and
SMB2) which allows your Python application to access and
transfer files to/from SMB/CIFS shared folders like your
Windows file sharing and Samba folders.
https://miketeo.net/wp/index.php/projects/pysmb
comment "python-pysmb needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 af9db2e99eaa01e87b0ebc10f87db7c630cc880c7ae3d9dd06f1e5313e82d5a2 pysmb-1.2.7.tar.gz
sha256 8c487d5c10f024e44a9cf1df21d1fd28a80bd2dfddd9f1dcd109a47d721f497f LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pysmb
#
################################################################################
PYTHON_PYSMB_VERSION = 1.2.7
PYTHON_PYSMB_SOURCE = pysmb-$(PYTHON_PYSMB_VERSION).tar.gz
PYTHON_PYSMB_SITE = https://miketeo.net/files/Projects/pysmb
PYTHON_PYSMB_LICENSE = Libpng
PYTHON_PYSMB_LICENSE_FILES = LICENSE
PYTHON_PYSMB_SETUP_TYPE = setuptools
$(eval $(python-package))