From: Jackie Huang Date: Thu, 3 Jun 2021 03:30:45 +0000 (+0800) Subject: python-ironicclient: uprev to 3.1.0 for stx 5.0 X-Git-Tag: f-release~47 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=8be8d2ac30abbaa3cd8f0761d9d3eea470a026e2;p=pti%2Frtp.git python-ironicclient: uprev to 3.1.0 for stx 5.0 * change to use the source from git repo and uprev * add dependency on python-oslo.config Issue-ID: INF-215 Signed-off-by: Jackie Huang Change-Id: Ic2563ebb085bdf98f3cf5c14c4dbc37cae934aaa --- diff --git a/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-ironicclient_2.7.0.bb b/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-ironicclient_2.7.0.bb deleted file mode 100644 index e40a4ab..0000000 --- a/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-ironicclient_2.7.0.bb +++ /dev/null @@ -1,25 +0,0 @@ - -DESCRIPTION = "python-ironicclient" -STABLE = "master" -PROTOCOL = "https" -BRANCH = "master" -PV = "2.7.0" - -LICENSE = "Apache-2.0" - -LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" - -SRC_URI = "https://tarballs.openstack.org/python-ironicclient/python-ironicclient-${PV}.tar.gz" -SRC_URI[md5sum] = "6b13e133eb0c521a09c377f28fef139e" - -DEPENDS += " \ - python \ - python-pbr-native \ - " - -inherit setuptools - -RDEPENDS_${PN}_append = " \ - bash \ - python-dogpile.cache \ - " diff --git a/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-ironicclient_git.bb b/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-ironicclient_git.bb new file mode 100644 index 0000000..8fb480e --- /dev/null +++ b/meta-starlingx/meta-stx-integ/recipes-devtools/python/python-ironicclient_git.bb @@ -0,0 +1,28 @@ + +DESCRIPTION = "python-ironicclient" +SECTION = "devel/python" + +SRCREV = "04ef2d7b04caad162e299c52542b2cb581552ea3" +SRCNAME = "python-ironicclient" +PROTOCOL = "https" +BRANCH = "stable/train" +PV = "3.1.0+git${SRCPV}" +S = "${WORKDIR}/git" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" + +SRC_URI = "git://github.com/openstack/${SRCNAME}.git;protocol=${PROTOCOL};rev=${SRCREV};branch=${BRANCH}" + +DEPENDS += " \ + python \ + python-pbr-native \ + " + +inherit setuptools + +RDEPENDS_${PN}_append = " \ + bash \ + python-dogpile.cache \ + python-oslo.config \ + "