Skip to content

Commit

Permalink
Update python3-iotc-lite-sdk_git.bb
Browse files Browse the repository at this point in the history
Signed-off-by: zackandraka-avnet <[email protected]>
  • Loading branch information
zackandraka-avnet authored Jan 17, 2025
1 parent 66170bd commit 7f1bfd8
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions recipes-sdk/lite-sdk/python3-iotc-lite-sdk_git.bb
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
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;branch=main"
SRCREV = "f0b5bf006b716d2de361e3df8b94f684f9872497>"
PV = "1.0.0+git${SRCPV}"
PR = "r0"
SRC_URI = "git://github.com/avnet-iotconnect/iotc-python-lite-sdk.git;protocol=https;branch=main"
SRCREV = "f0b5bf006b716d2de361e3df8b94f684f9872497"
S = "${WORKDIR}/git"
inherit setuptools3
RDEPENDS:${PN} = "python3 python3-toml"

PYPI_PACKAGE = "iotc-python-lite-sdk"

inherit setuptools3 pypi

do_configure:prepend() {
cat > ${S}/setup.py <<-EOF
from setuptools import setup

setup(
name="${PYPI_PACKAGE}",
version="${PV}",
license="${LICENSE}",
)
EOF
}

0 comments on commit 7f1bfd8

Please sign in to comment.