diff options
| author | Fabio Estevam <festevam@denx.de> | 2025-04-15 15:29:39 -0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-04-17 11:03:22 +0100 |
| commit | 44d9d94ccdf8bf131f5d02faff71be7fbb7c3383 (patch) | |
| tree | 4f469b02d3011e7ff98f34af1bc035a7c6a9d645 | |
| parent | 8629aa9f2744d3135d9f8852ff09c26be7258305 (diff) | |
| download | poky-44d9d94ccdf8bf131f5d02faff71be7fbb7c3383.tar.gz | |
bmaptool: upgrade 3.8.0 -> 3.9.0
Update to the 3.9.0 version.
This version has switched to use hatch as the build backend, so adjust it
accordingly.
The INSANE_SKIP can now be safely removed as explained by
commit 824009560776 ("bmaptool: temporarily silence the pep517-backend warning").
python3-six is no longer a runtime dependency since bmaptool
commit a67976e80daf ("Remove six from production code"), so remove its
RDEPENDS entry.
(From OE-Core rev: dc13e76726e3bb528cf381dedb0e881a96bf64b3)
Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Marcel Ziswiler <marcel@ziswiler.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-support/bmaptool/bmaptool_git.bb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/meta/recipes-support/bmaptool/bmaptool_git.bb b/meta/recipes-support/bmaptool/bmaptool_git.bb index c38f05e1a1..155dd0ac80 100644 --- a/meta/recipes-support/bmaptool/bmaptool_git.bb +++ b/meta/recipes-support/bmaptool/bmaptool_git.bb | |||
| @@ -10,23 +10,20 @@ LICENSE = "GPL-2.0-only" | |||
| 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" | 10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
| 11 | 11 | ||
| 12 | SRC_URI = "git://github.com/yoctoproject/${BPN};branch=main;protocol=https" | 12 | SRC_URI = "git://github.com/yoctoproject/${BPN};branch=main;protocol=https" |
| 13 | SRCREV = "2ff5750b8a3e0b36a9993c20e2ea10a07bc62085" | 13 | SRCREV = "618a7316102f6f81faa60537503012a419eafa06" |
| 14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
| 15 | BASEVER = "3.8.0" | 15 | BASEVER = "3.9.0" |
| 16 | PV = "${BASEVER}+git" | 16 | PV = "${BASEVER}+git" |
| 17 | 17 | ||
| 18 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" | 18 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" |
| 19 | 19 | ||
| 20 | # Need df from coreutils | 20 | # Need df from coreutils |
| 21 | RDEPENDS:${PN} = "python3-core python3-compression python3-misc python3-mmap python3-setuptools python3-fcntl python3-six coreutils" | 21 | RDEPENDS:${PN} = "python3-core python3-compression python3-misc python3-mmap python3-setuptools python3-fcntl coreutils" |
| 22 | 22 | ||
| 23 | inherit setuptools3 | 23 | inherit python_hatchling |
| 24 | 24 | ||
| 25 | # For compatibility with layers before scarthgap | 25 | # For compatibility with layers before scarthgap |
| 26 | RREPLACES:${PN} = "bmap-tools" | 26 | RREPLACES:${PN} = "bmap-tools" |
| 27 | RCONFLICTS:${PN} = "bmap-tools" | 27 | RCONFLICTS:${PN} = "bmap-tools" |
| 28 | 28 | ||
| 29 | # Poetry backend appears incomplete, upstream has moved to hatch | ||
| 30 | INSANE_SKIP = "pep517-backend" | ||
| 31 | |||
| 32 | BBCLASSEXTEND = "native nativesdk" | 29 | BBCLASSEXTEND = "native nativesdk" |
