diff options
author | Tim Orling <ticotimo@gmail.com> | 2022-02-27 15:28:18 -0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-03-02 15:44:59 -0500 |
commit | 0f3da01452e8de1b03a7a0dfcc762c380404dd17 (patch) | |
tree | 521660289be4882236ef42a532a069c7f771332f | |
parent | 35f34844ff231c7e06dd1d15976a7580db7ae550 (diff) | |
download | meta-virtualization-0f3da01452e8de1b03a7a0dfcc762c380404dd17.tar.gz |
lopper: fix wheel build
The wheel that is built is:
lopper-1.0-py3-none-any.whl
Set BASEVERSION to 1.0 and use this to set PV and the value for PYPA_WHEEL
(the path to the wheel filename).
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-kernel/lopper/lopper_git.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/recipes-kernel/lopper/lopper_git.bb b/recipes-kernel/lopper/lopper_git.bb index 606dab64..e96bac72 100644 --- a/recipes-kernel/lopper/lopper_git.bb +++ b/recipes-kernel/lopper/lopper_git.bb | |||
@@ -7,7 +7,10 @@ SRC_URI = "git://github.com/devicetree-org/lopper.git;branch=master;protocol=htt | |||
7 | SRCREV = "3c81fcce08eeb64cbbde1535abd83572985a8689" | 7 | SRCREV = "3c81fcce08eeb64cbbde1535abd83572985a8689" |
8 | S = "${WORKDIR}/git" | 8 | S = "${WORKDIR}/git" |
9 | 9 | ||
10 | PV="v1.0+git${SRCPV}" | 10 | BASEVERSION = "1.0" |
11 | PV="v${BASEVERSION}+git${SRCPV}" | ||
12 | |||
13 | PYPA_WHEEL = "${PIP_INSTALL_DIST_PATH}/${BPN}-${BASEVERSION}-*.whl" | ||
11 | 14 | ||
12 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=8e5f5f691f01c9fdfa7a7f2d535be619" | 15 | LIC_FILES_CHKSUM = "file://LICENSE.md;md5=8e5f5f691f01c9fdfa7a7f2d535be619" |
13 | 16 | ||