Add python-pbr package

This commit is contained in:
Calin Crisan 2019-01-21 23:23:54 +02:00
parent 424b1511c8
commit 239af55592
4 changed files with 24 additions and 0 deletions

View File

@ -886,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"

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))