Files
packages/lang/python/python-build/Makefile
Alexandru Ardelean 371dea8cfd python-build: bump to 1.4.2
Notable changes since 1.4.0:

v1.4.1:
- Allow setting build constraints
- Fix pip hack workaround

v1.4.2:
- Ensure the uv installer uses the current version of Python,
  avoiding an issue if UV_PYTHON is set
- Fix _has_valid_outer_pip returning True when pip is missing,
  causing build to try using a non-existent pip instead of
  falling back to virtualenv

Link: https://github.com/pypa/build/blob/main/CHANGELOG.rst
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-03-29 08:32:19 +03:00

58 lines
1.4 KiB
Makefile

#
# Copyright (C) 2023 Jeffery To
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-build
PKG_VERSION:=1.4.2
PKG_RELEASE:=1
PYPI_NAME:=build
PKG_HASH:=35b14e1ee329c186d3f08466003521ed7685ec15ecffc07e68d706090bf161d1
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_HOST_ONLY:=1
HOST_BUILD_DEPENDS:= \
python3/host \
python-installer/host \
python-flit-core/host \
python-packaging/host \
python-pyproject-hooks/host
PYTHON3_HOST_BUILD_VARS:=PYTHONPATH=src
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/host-build.mk
include ../python3-package.mk
include ../python3-host-build.mk
define Package/python3-build
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=A simple, correct Python build frontend
URL:=https://github.com/pypa/build
DEPENDS:=+python3-light +python3-logging
BUILDONLY:=1
endef
define Package/python3-build/description
A simple, correct PEP 517 build frontend.
build will invoke the PEP 517 hooks to build a distribution package. It
is a simple build tool and does not perform any dependency management.
endef
$(eval $(call Py3Package,python3-build))
$(eval $(call BuildPackage,python3-build))
$(eval $(call BuildPackage,python3-build-src))
$(eval $(call HostBuild))