-
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
7f1bfd8
commit 95fcff9
Showing
1 changed file
with
5 additions
and
12 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,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://[email protected]/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 | ||
} | ||
|