diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-10-28 17:04:02 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-10-28 17:54:31 -0700 |
commit | 2575cf1f8f2a6549761bd32bb853862d33825b4d (patch) | |
tree | c24c995861ea4845aa116ad35060bc1f9b68eaf4 /meta-python | |
parent | 3207d6f1bc4895a7acb10228193270b150af9e22 (diff) | |
download | meta-openembedded-2575cf1f8f2a6549761bd32bb853862d33825b4d.tar.gz |
python3-betamax: Use tip of trunk to support python 3.13
There are several fixes need to get going with python 3.13, therefore
switch to git SRC_URI until next release is made
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-betamax_0.9.0.bb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-betamax_0.9.0.bb b/meta-python/recipes-devtools/python/python3-betamax_0.9.0.bb index a0454686ee..68572d98b1 100644 --- a/meta-python/recipes-devtools/python/python3-betamax_0.9.0.bb +++ b/meta-python/recipes-devtools/python/python3-betamax_0.9.0.bb | |||
@@ -3,13 +3,18 @@ HOMEPAGE = "https://github.com/betamaxpy/betamax" | |||
3 | LICENSE = "Apache-2.0" | 3 | LICENSE = "Apache-2.0" |
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=61c15f0c146c5fb1a8ce8ba2f310d73c" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=61c15f0c146c5fb1a8ce8ba2f310d73c" |
5 | 5 | ||
6 | PV .= "+git" | ||
7 | |||
8 | SRCREV = "8f3d284103676a43d1481b5cffae96f3a601e0be" | ||
6 | SRC_URI += " \ | 9 | SRC_URI += " \ |
7 | file://run-ptest \ | 10 | file://run-ptest \ |
11 | git://github.com/betamaxpy/betamax;protocol=https;branch=main \ | ||
8 | file://0001-Drop-ptests-fixtures-and-recorde_modes.patch \ | 12 | file://0001-Drop-ptests-fixtures-and-recorde_modes.patch \ |
9 | " | 13 | " |
10 | SRC_URI[sha256sum] = "82316e1679bc6879e3c83318d016b54b7c9225ff08c4462de4813e22038d5f94" | ||
11 | 14 | ||
12 | inherit pypi setuptools3 ptest | 15 | S = "${WORKDIR}/git" |
16 | |||
17 | inherit setuptools3 ptest | ||
13 | 18 | ||
14 | RDEPENDS:${PN} += " \ | 19 | RDEPENDS:${PN} += " \ |
15 | python3-requests \ | 20 | python3-requests \ |