Merge branch 'dev' into feature-tinkerboard-support

This commit is contained in:
Calin Crisan 2019-01-22 21:42:34 +02:00
commit 205db93d59
10 changed files with 73 additions and 0 deletions

View File

@ -864,6 +864,7 @@ menu "External python modules"
source "package/python-mbstrdecoder/Config.in"
source "package/python-meld3/Config.in"
source "package/python-mistune/Config.in"
source "package/python-mock/Config.in"
source "package/python-more-itertools/Config.in"
source "package/python-msgpack/Config.in"
source "package/python-multidict/Config.in"
@ -885,6 +886,7 @@ menu "External python modules"
source "package/python-pathpy/Config.in"
source "package/python-pathtools/Config.in"
source "package/python-pathvalidate/Config.in"
source "package/python-pbr/Config.in"
source "package/python-peewee/Config.in"
source "package/python-peewee-migrate/Config.in"
source "package/python-pexpect/Config.in"
@ -996,6 +998,7 @@ menu "External python modules"
source "package/python-txaio/Config.in"
source "package/python-txtorcon/Config.in"
source "package/python-typepy/Config.in"
source "package/python-typing-extensions/Config.in"
source "package/python-u-msgpack/Config.in"
source "package/python-ubjson/Config.in"
source "package/python-ujson/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_MOCK
bool "python-mock"
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
depends on BR2_PACKAGE_PYTHON_PBR
help
mock is a library for testing in Python. It allows you to replace parts of your system under test with mock objects and make assertions about how they have been used.
https://github.com/testing-cabal/mock

View File

@ -0,0 +1,2 @@
sha256 b158b6df76edd239b8208d481dc46b6afd45a846b7812ff0ce58971cf5bc8bba mock-2.0.0.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-mock
#
################################################################################
PYTHON_MOCK_VERSION = 2.0.0
PYTHON_MOCK_SOURCE = mock-$(PYTHON_MOCK_VERSION).tar.gz
PYTHON_MOCK_SITE = https://files.pythonhosted.org/packages/0c/53/014354fc93c591ccc4abff12c473ad565a2eb24dcd82490fae33dbf2539f
PYTHON_MOCK_SETUP_TYPE = setuptools
PYTHON_MOCK_LICENSE = Apache-2.0
PYTHON_MOCK_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_PBR
bool "python-pbr"
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
help
PBR is a library that injects some useful and sensible default behaviors into your setuptools run. It started off life as the chunks of code that were copied between all of the OpenStack projects. Around the time that OpenStack hit 18 different projects each with at least 3 active branches, it seemed like a good time to make that code into a proper reusable library.
https://docs.openstack.org/pbr/latest/

View File

@ -0,0 +1,2 @@
sha256 f59d71442f9ece3dffc17bc36575768e1ee9967756e6b6535f0ee1f0054c3d68 pbr-5.1.1.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pbr
#
################################################################################
PYTHON_PBR_VERSION = 5.1.1
PYTHON_PBR_SOURCE = pbr-$(PYTHON_PBR_VERSION).tar.gz
PYTHON_PBR_SITE = https://files.pythonhosted.org/packages/33/07/6e68a96ff240a0e7bb1f6e21093532386a98a82d56512e1e3da6d125f7aa
PYTHON_PBR_SETUP_TYPE = setuptools
PYTHON_PBR_LICENSE = Apache-2.0
PYTHON_PBR_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS
bool "python-typing-extensions"
depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
help
Typing Extensions Backported and Experimental Type Hints for Python
https://github.com/python/typing/

View File

@ -0,0 +1,2 @@
sha256 fb2cd053238d33a8ec939190f30cfd736c00653a85a2919415cecf7dc3d9da71 typing_extensions-3.7.2.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-typing-extensions
#
################################################################################
PYTHON_TYPING_EXTENSIONS_VERSION = 3.7.2
PYTHON_TYPING_EXTENSIONS_SOURCE = typing_extensions-$(PYTHON_TYPING_EXTENSIONS_VERSION).tar.gz
PYTHON_TYPING_EXTENSIONS_SITE = https://files.pythonhosted.org/packages/fa/aa/229f5c82d17d10d4ef318b5c22a8626a1c78fc97f80d3307035cf696681b
PYTHON_TYPING_EXTENSIONS_SETUP_TYPE = setuptools
PYTHON_TYPING_EXTENSIONS_LICENSE = Apache-2.0
PYTHON_TYPING_EXTENSIONS_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))