diff --git a/package/Config.in b/package/Config.in index f79b904842..1539347ab4 100644 --- a/package/Config.in +++ b/package/Config.in @@ -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" diff --git a/package/python-pbr/Config.in b/package/python-pbr/Config.in new file mode 100644 index 0000000000..7e12bdc00e --- /dev/null +++ b/package/python-pbr/Config.in @@ -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/ diff --git a/package/python-pbr/python-pbr.hash b/package/python-pbr/python-pbr.hash new file mode 100644 index 0000000000..cd8fe5f278 --- /dev/null +++ b/package/python-pbr/python-pbr.hash @@ -0,0 +1,2 @@ +sha256 f59d71442f9ece3dffc17bc36575768e1ee9967756e6b6535f0ee1f0054c3d68 pbr-5.1.1.tar.gz + diff --git a/package/python-pbr/python-pbr.mk b/package/python-pbr/python-pbr.mk new file mode 100644 index 0000000000..83c3d2362d --- /dev/null +++ b/package/python-pbr/python-pbr.mk @@ -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))