package/python-iwlib: new package

A package for interfacing with iwlib, providing an implementation to
the wireless tools in Linux.

Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com>
Signed-off-by: Kalpesh Panchal <kalpesh.panchal@rockwellcollins.com>
Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Jared Bents 2021-04-12 10:20:32 -05:00 committed by Thomas Petazzoni
parent 1ab117d35a
commit f2fe5c119c
5 changed files with 27 additions and 0 deletions

View File

@ -1789,6 +1789,7 @@ F: package/python-filelock/
F: package/python-flask-cors/
F: package/python-iptables/
F: package/python-ipy/
F: package/python-iwlib/
F: package/python-posix-ipc/
F: package/python-pycairo/
F: package/python-pypcap/

View File

@ -1031,6 +1031,7 @@ menu "External python modules"
source "package/python-ipython-genutils/Config.in"
source "package/python-iso8601/Config.in"
source "package/python-itsdangerous/Config.in"
source "package/python-iwlib/Config.in"
source "package/python-janus/Config.in"
source "package/python-jaraco-classes/Config.in"
source "package/python-jaraco-functools/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_IWLIB
bool "python-iwlib"
depends on BR2_PACKAGE_WIRELESS_TOOLS_LIB
help
python-iwlib is a package for interfacing with iwlib,
providing an implementation to the wireless tools in Linux.
https://github.com/nhoad/python-iwlib

View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 7f1ad4354284a452388e178b5d9b191fa5a68a9183423a90a1d261ba2ebd1cac python-iwlib-1.5.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-iwlib
#
################################################################################
PYTHON_IWLIB_VERSION = 1.5
PYTHON_IWLIB_SITE = $(call github,nhoad,python-iwlib,$(PYTHON_IWLIB_VERSION))
PYTHON_IWLIB_LICENSE = GPL-2.0
PYTHON_IWLIB_LICENSE_FILES = COPYING
PYTHON_IWLIB_SETUP_TYPE = setuptools
PYTHON_IWLIB_DEPENDENCIES = wireless_tools
$(eval $(python-package))