X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=meta-starlingx%2Fmeta-stx-flock%2Fstx-distributedcloud%2Fdistributedcloud-client-dcmanager_git.bb;fp=meta-starlingx%2Fmeta-stx-flock%2Fstx-distributedcloud%2Fdistributedcloud-client-dcmanager_git.bb;h=a9f2ecd9531e7f0604f4a319ce109a53c93c3d5e;hb=e0634c6eaf2fe2641a0fb90e84a5defb880b1335;hp=0000000000000000000000000000000000000000;hpb=210d0f78485e760dffcdd3f630f59cec797f3f11;p=pti%2Frtp.git diff --git a/meta-starlingx/meta-stx-flock/stx-distributedcloud/distributedcloud-client-dcmanager_git.bb b/meta-starlingx/meta-stx-flock/stx-distributedcloud/distributedcloud-client-dcmanager_git.bb new file mode 100644 index 0000000..a9f2ecd --- /dev/null +++ b/meta-starlingx/meta-stx-flock/stx-distributedcloud/distributedcloud-client-dcmanager_git.bb @@ -0,0 +1,42 @@ +DESCRIPTION = " \ + Client library for Distributed Cloud built on the Distributed Cloud API. \ + It provides a command-line tool (dcmanager). \ + Distributed Cloud provides configuration and management of distributed clouds \ + " + +HOMEPAGE = "https://opendev.org/starlingx" +SECTION = "network" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://distributedcloud-client/LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" + +PROTOCOL = "https" +BRANCH = "r/stx.3.0" +SRCNAME = "distcloud-client" +SRCREV = "8a8f01dd3701d4793dd8cbc0147e4dca49cd7c03" +PV = "1.0.0+git${SRCPV}" +S = "${WORKDIR}/git" + +SRC_URI = " \ + git://opendev.org/starlingx/${SRCNAME}.git;protocol=${PROTOCOL};rev=${SRCREV};branch=${BRANCH} \ + " + +inherit distutils python-dir + +DEPENDS += " \ + python-pbr-native \ + " + +do_configure() { + cd ${S}/distributedcloud-client + distutils_do_configure +} + +do_compile() { + cd ${S}/distributedcloud-client + distutils_do_compile +} + +do_install() { + cd ${S}/distributedcloud-client + distutils_do_install +}