python-packages: Replace --global-option with --build-option

setuptools 64.0.0 deprecated the use of --global-option to pass build
parameters[1]. This replaces the use of --global-option with
--build-option.

[1]: https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
Jeffery To 2023-05-27 19:43:57 +08:00 committed by Rosen Penev
parent 0e34107963
commit b76fa19b26
2 changed files with 15 additions and 15 deletions

View file

@ -37,17 +37,17 @@ define Package/python3-pillow/description
endef
PYTHON3_PKG_BUILD_CONFIG_SETTINGS += \
--global-option=build_ext \
--global-option=--enable-zlib \
--global-option=--enable-jpeg \
--global-option=--enable-webp \
--global-option=--enable-webpmux \
--global-option=--enable-tiff \
--global-option=--enable-freetype \
--global-option=--disable-lcms \
--global-option=--disable-jpeg2000 \
--global-option=--disable-imagequant \
--global-option=--disable-platform-guessing
--build-option=build_ext \
--build-option=--enable-zlib \
--build-option=--enable-jpeg \
--build-option=--enable-webp \
--build-option=--enable-webpmux \
--build-option=--enable-tiff \
--build-option=--enable-freetype \
--build-option=--disable-lcms \
--build-option=--disable-jpeg2000 \
--build-option=--disable-imagequant \
--build-option=--disable-platform-guessing
$(eval $(call Py3Package,python3-pillow))
$(eval $(call BuildPackage,python3-pillow))

View file

@ -40,10 +40,10 @@ endef
LINUX_EVDEV_HEADERS="$(LINUX_DIR)/include/uapi/linux/input.h:$(LINUX_DIR)/include/uapi/linux/input-event-codes.h"
PYTHON3_PKG_BUILD_CONFIG_SETTINGS:= \
--global-option=build \
--global-option=build_ecodes \
--global-option=--evdev-headers="$(LINUX_EVDEV_HEADERS)" \
--global-option=build_ext
--build-option=build \
--build-option=build_ecodes \
--build-option=--evdev-headers="$(LINUX_EVDEV_HEADERS)" \
--build-option=build_ext
$(eval $(call Py3Package,python3-evdev))
$(eval $(call BuildPackage,python3-evdev))