diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-02-18 01:13:22 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2023-04-24 16:20:33 +0800 |
commit | 5156c0c82bcb18481bf588ba4b1ff67c12422a80 (patch) | |
tree | dfef7a78154bb50e5ae24ab39aff0a624db78949 /lang/python/python3 | |
parent | 705176cd6ab47ff51ca75a9f05e97c2e4804f6cc (diff) |
python: Add proper support for pyproject.toml-based builds
This removes the changes made in
61f202c0170785addbbc449e4de61cc5886f0833 and adds actual support for
pyproject.toml-based (PEP 517) builds of Python packages.
Packages can force the use of the old build process by setting
PYTHON3_PKG_FORCE_DISTUTILS_SETUP:=1; this should only be a temporary
workaround until the package can be updated/fixed to use the new build
process.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
Diffstat (limited to 'lang/python/python3')
-rw-r--r-- | lang/python/python3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/python3/Makefile b/lang/python/python3/Makefile index 611e4c12d..1fd8f43d1 100644 --- a/lang/python/python3/Makefile +++ b/lang/python/python3/Makefile @@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk include ../python3-version.mk PKG_NAME:=python3 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_VERSION:=$(PYTHON3_VERSION).$(PYTHON3_VERSION_MICRO) PKG_SOURCE:=Python-$(PKG_VERSION).tar.xz @@ -45,7 +45,7 @@ PKG_CONFIG_DEPENDS:= \ CONFIG_PACKAGE_python3-pkg-resources \ CONFIG_PACKAGE_python3-setuptools CONFIG_PACKAGE_python3-pip -PKG_BUILD_DEPENDS:=bluez python3/host +PKG_BUILD_DEPENDS:=bluez python3/host python-build/host python-installer/host python-wheel/host HOST_BUILD_DEPENDS:=bzip2/host libffi/host include $(INCLUDE_DIR)/host-build.mk |