Add host-python-pbr package support

This commit is contained in:
Calin Crisan 2019-01-22 23:16:48 +02:00
parent 5777575357
commit c428ec3d2c
3 changed files with 9 additions and 0 deletions

View File

@ -45,6 +45,7 @@ menu "Host utilities"
source "package/pwgen/Config.in.host"
source "package/python-cython/Config.in.host"
source "package/python-lxml/Config.in.host"
source "package/python-pbr/Config.in.host"
source "package/python-six/Config.in.host"
source "package/python-xlrd/Config.in.host"
source "package/qemu/Config.in.host"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_HOST_PYTHON_PBR
bool "host python-pbr"
depends on BR2_PACKAGE_HOST_PYTHON || BR2_PACKAGE_HOST_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

@ -12,3 +12,4 @@ PYTHON_PBR_LICENSE = Apache-2.0
PYTHON_PBR_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))
$(eval $(host-python-package))