diff --git a/recipes-sdk/lite-sdk/python3-iotc-lite-sdk_git.bb b/recipes-sdk/lite-sdk/python3-iotc-lite-sdk_git.bb index e7eda2a..ed269dc 100644 --- a/recipes-sdk/lite-sdk/python3-iotc-lite-sdk_git.bb +++ b/recipes-sdk/lite-sdk/python3-iotc-lite-sdk_git.bb @@ -1,23 +1,16 @@ -DESCRIPTION = "IoTConnect Python Lite SDK" -HOMEPAGE = "https://github.com/avnet-iotconnect/iotc-python-lite-sdk" -LICENSE = "CLOSED" -SRC_URI = "git://github.com/avnet-iotconnect/iotc-python-lite-sdk.git;protocol=https;branch=main" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302" +SRC_URI = "git://git@github.com/avnet-iotconnect/iotc-python-lite-sdk.git;protocol=ssh;branch=main" SRCREV = "f0b5bf006b716d2de361e3df8b94f684f9872497" S = "${WORKDIR}/git" -PYPI_PACKAGE = "iotc-python-lite-sdk" - -inherit setuptools3 pypi +inherit setuptools3 do_configure:prepend() { cat > ${S}/setup.py <<-EOF from setuptools import setup -setup( - name="${PYPI_PACKAGE}", - version="${PV}", - license="${LICENSE}", -) +setup() EOF }