Commit a930816f authored by Christophe Vu-Brugier's avatar Christophe Vu-Brugier Committed by Thomas Petazzoni
Browse files

python-rtslib-fb: new package



rtslib-fb is an object-based Python library for configuring the
LIO generic SCSI target, present in 3.x Linux kernel versions.

Signed-off-by: default avatarChristophe Vu-Brugier <cvubrugier@fastmail.fm>
Reviewed-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent a1b1c2f0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -503,6 +503,7 @@ menu "external python modules"
	source "package/python-pysnmp-mibs/Config.in"
	source "package/python-pyusb/Config.in"
	source "package/python-pyzmq/Config.in"
	source "package/python-rtslib-fb/Config.in"
	source "package/python-serial/Config.in"
	source "package/python-setuptools/Config.in"
	source "package/python-simplejson/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_RTSLIB_FB
	bool "python-rtslib-fb"
	depends on BR2_PACKAGE_PYTHON
	help
	  rtslib-fb is an object-based Python library for configuring
	  the LIO generic SCSI target, present in 3.x Linux kernel
	  versions.

	  https://github.com/agrover/rtslib-fb
+13 −0
Original line number Diff line number Diff line
################################################################################
#
# python-rtslib-fb
#
################################################################################

PYTHON_RTSLIB_FB_VERSION = v2.1.fb49
PYTHON_RTSLIB_FB_SITE = $(call github,agrover,rtslib-fb,$(PYTHON_RTSLIB_FB_VERSION))
PYTHON_RTSLIB_FB_LICENSE = Apache-2.0
PYTHON_RTSLIB_FB_LICENSE_FILES = COPYING
PYTHON_RTSLIB_FB_SETUP_TYPE = setuptools

$(eval $(python-package))