467e56bfdc
Create a new layer to manage the StarlingX Flock specific recipes Signed-off-by: Saul Wold <sgw@linux.intel.com>
58 lines
1.6 KiB
BlitzBasic
58 lines
1.6 KiB
BlitzBasic
#
|
|
## Copyright (C) 2019 Wind River Systems, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
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
|
|
}
|