package/bmap-tools: bump to 3.9.0

Upstream changelog:

https://github.com/yoctoproject/bmaptool/releases/tag/v3.9.0

Two important changes from a packaging point of view:

- Switch to using hatch to build
- Remove six from production code

So we do adjust our packaging accordingly.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Thomas Petazzoni
2025-04-14 14:45:53 +02:00
committed by Peter Korsgaard
parent 2488d97719
commit d39d9b53ec
4 changed files with 3 additions and 5 deletions

View File

@@ -7,7 +7,6 @@ config BR2_PACKAGE_BMAP_TOOLS
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime, pkg_resources
select BR2_PACKAGE_PYTHON_SIX # runtime
help
Tool to flash image files to block devices using the block map
bmaptool is a generic tool for creating the block map (bmap)

View File

@@ -1,7 +1,6 @@
config BR2_PACKAGE_HOST_BMAP_TOOLS
bool "host bmap-tools"
select BR2_PACKAGE_HOST_PYTHON3 # runtime
select BR2_PACKAGE_HOST_PYTHON_SIX # runtime
help
Tool to flash image files to block devices using the block map
bmaptool is a generic tool for creating the block map (bmap)

View File

@@ -1,3 +1,3 @@
# Locally calculated
sha256 3c741ccdd5049b5cb6983bc186f7be8040a132ed7e9c2afda4d9e7390888163c bmap-tools-3.8.0.tar.gz
sha256 9940bb97fa0f2c11ee4625a2f620a4ae2b94c556f8d01c070aee08486a2a1812 bmap-tools-3.9.0.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE

View File

@@ -4,11 +4,11 @@
#
################################################################################
BMAP_TOOLS_VERSION = 3.8.0
BMAP_TOOLS_VERSION = 3.9.0
BMAP_TOOLS_SITE = $(call github,yoctoproject,bmaptool,v$(BMAP_TOOLS_VERSION))
BMAP_TOOLS_LICENSE = GPL-2.0
BMAP_TOOLS_LICENSE_FILES = LICENSE
BMAP_TOOLS_SETUP_TYPE = poetry
BMAP_TOOLS_SETUP_TYPE = hatch
$(eval $(python-package))
$(eval $(host-python-package))