-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: zackandraka-avnet <[email protected]>
- Loading branch information
1 parent
66170bd
commit 7f1bfd8
Showing
1 changed file
with
19 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
|