0a185c0812
* python-k8sapp-cert-manager is required by stx-cert-manager-helm. Story: 2008952 Task: 42576 Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Change-Id: I464ec0b5db759d618713cbdcd7084ac81eaf138a
56 lines
1.1 KiB
BlitzBasic
56 lines
1.1 KiB
BlitzBasic
SUMMARY = "StarlingX sysinv extensions: Cert Manager"
|
|
DESCRIPTION = "StarlingX sysinv extensions: Cert Manager"
|
|
SECTION = "devel/python"
|
|
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=41687b590435621fc0676ac02c51154f"
|
|
|
|
PV = "1.0"
|
|
PR = "15"
|
|
PRAUTO = "tis"
|
|
|
|
DEPENDS += "\
|
|
${PYTHON_PN}-pbr-native \
|
|
${PYTHON_PN}-pip-native \
|
|
${PYTHON_PN}-wheel-native \
|
|
"
|
|
|
|
inherit setuptools
|
|
inherit stx-metadata
|
|
|
|
STX_REPO = "cert-manager-armada-app"
|
|
STX_SUBPATH = "${BPN}/k8sapp_cert_manager"
|
|
|
|
S = "${WORKDIR}/k8sapp_cert_manager"
|
|
|
|
PACKAGES += "${PN}-wheels"
|
|
PROVIDES += "${PN}-wheels"
|
|
|
|
export PBR_VERSION = "${PV}"
|
|
export SKIP_PIP_INSTALL = "1"
|
|
|
|
do_unpack_append() {
|
|
bb.build.exec_func('do_restore_files', d)
|
|
}
|
|
|
|
do_restore_files() {
|
|
cp -rf ${STX_METADATA_PATH} ${WORKDIR}
|
|
}
|
|
|
|
do_configure_preppend() {
|
|
rm -rf k8sapp_cert_manager.egg-info
|
|
}
|
|
|
|
do_compile_append() {
|
|
${PYTHON_PN} setup.py bdist_wheel
|
|
}
|
|
|
|
do_install_append() {
|
|
install -d ${D}/plugins
|
|
install -m 0644 ${S}/dist/*.whl ${D}/plugins
|
|
}
|
|
|
|
FILES_${PN}-wheels += "/plugins"
|
|
|
|
SYSROOT_DIRS += "/plugins"
|