python-pysmb: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2015-12-21 11:15:07 +01:00 committed by Thomas Petazzoni
parent b2d925159b
commit 16649b439b
4 changed files with 33 additions and 0 deletions

View File

@ -671,6 +671,7 @@ menu "External python modules"
source "package/python-pyro/Config.in"
source "package/python-pyroute2/Config.in"
source "package/python-pysendfile/Config.in"
source "package/python-pysmb/Config.in"
source "package/python-pysnmp/Config.in"
source "package/python-pysnmp-apps/Config.in"
source "package/python-pysnmp-mibs/Config.in"

View File

@ -0,0 +1,15 @@
config BR2_PACKAGE_PYTHON_PYSMB
bool "python-pysmb"
depends on BR2_INSTALL_LIBSTDCPP
select BR2_PACKAGE_PYTHON_PYASN
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 @@
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=256b94bdeb63e6cc63f4b6a380b5918b, sha256 locally computed
md5 256b94bdeb63e6cc63f4b6a380b5918b pysmb-1.1.17.tar.gz
sha256 267def5aef2f0f41be4ba141b29dce9c23214667e84bddefd285b56fd481d813 pysmb-1.1.17.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pysmb
#
################################################################################
PYTHON_PYSMB_VERSION = 1.1.17
PYTHON_PYSMB_SOURCE = pysmb-$(PYTHON_PYSMB_VERSION).tar.gz
PYTHON_PYSMB_SITE = https://pypi.python.org/packages/source/p/pysmb
PYTHON_PYSMB_LICENSE = libpng license
PYTHON_PYSMB_LICENSE_FILES = LICENSE
PYTHON_PYSMB_SETUP_TYPE = setuptools
$(eval $(python-package))