Update buildroot 2020.02.01 (#622)

* Update buildroot 2020.02.01

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix LN

* Fix wpa

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix lint

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* fix-network

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>

* Fix script

Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
This commit is contained in:
Pascal Vizeli
2020-04-16 20:03:01 +02:00
committed by GitHub
parent 0c2b5aff65
commit 5a6678147e
6201 changed files with 73436 additions and 70757 deletions

View File

@@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_DNSPYTHON
bool "python-dnspython"
help
A powerful DNS toolkit for python.
http://www.dnspython.org

View File

@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/dnspython/json
md5 bc9ca3b3a82164667d5730ec6d5248a2 dnspython-1.16.0.zip
sha256 36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01 dnspython-1.16.0.zip
# Locally computed sha256 checksums
sha256 c3ea3ff5654b329c19d3bc5f7481af623c3dded4a6145585499f843ad3d741cd LICENSE

View File

@@ -0,0 +1,20 @@
################################################################################
#
# python-dnspython
#
################################################################################
PYTHON_DNSPYTHON_VERSION = 1.16.0
PYTHON_DNSPYTHON_SOURCE = dnspython-$(PYTHON_DNSPYTHON_VERSION).zip
PYTHON_DNSPYTHON_SITE = https://files.pythonhosted.org/packages/ec/c5/14bcd63cb6d06092a004793399ec395405edf97c2301dfdc146dfbd5beed
PYTHON_DNSPYTHON_LICENSE = ISC
PYTHON_DNSPYTHON_LICENSE_FILES = LICENSE
PYTHON_DNSPYTHON_SETUP_TYPE = setuptools
define PYTHON_DNSPYTHON_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(PYTHON_DNSPYTHON_DL_DIR)/$(PYTHON_DNSPYTHON_SOURCE)
mv $(@D)/dnspython-$(PYTHON_DNSPYTHON_VERSION)/* $(@D)
$(RM) -r $(@D)/dnspython-$(PYTHON_DNSPYTHON_VERSION)
endef
$(eval $(python-package))