Files
meta-starlingx/meta-stx-integ/recipes-devtools/python/python-oslo.upgradecheck_git.bb
Jackie Huang e2fefea34d recipes-devtools: fix the do_install failure for pkgs
Set PBR_VERSION to disable all version calculation logic
of pbr the supplied version will be considered absolute.

Closes-bug: 2013029

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Change-Id: Ia038c1c7f10170413051e5b3addd337d3559f3ff
2023-03-28 21:44:00 -07:00

36 lines
924 B
BlitzBasic

SUMMARY = "Common code for writing OpenStack upgrade checks"
DESCRIPTION = "\
This project contains the common code necessary for writing upgrade checks \
in OpenStack projects. It includes a module (oslo_upgradecheck.upgradecheck) \
for the common code as well as an example (oslo_upgradecheck.__main__) of \
integrating that code into a project. \
"
HOMEPAGE = "https://github.com/openstack/oslo.upgradecheck"
SECTION = "devel/python"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
PV = "0.3.1+git${SRCPV}"
SRCREV = "5f182fe19cdfe0bcf0d51bcf7be05e7a74f0a068"
SRCNAME = "oslo.upgradecheck"
SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=master"
S = "${WORKDIR}/git"
inherit setuptools
export PBR_VERSION = "${PV}"
DEPENDS += " \
python-pip \
python-pbr-native \
"
RDEPENDS_${PN} += " \
python-oslo.config \
python-oslo.i18n \
"