Files
buildroot/package/python-pillow/python-pillow.mk
James Hilliard 5f446a8d6d package/python-pillow: bump to version 12.0.0
Add libavif support.

Add new python-pybind build dependency.

Set --skip-dependency-check since pybind isn't detected properly by
the pep517 build frontend.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2025-12-30 14:00:09 +01:00

87 lines
2.3 KiB
Makefile

################################################################################
#
# python-pillow
#
################################################################################
PYTHON_PILLOW_VERSION = 12.0.0
PYTHON_PILLOW_SITE = https://files.pythonhosted.org/packages/5a/b0/cace85a1b0c9775a9f8f5d5423c8261c858760e2466c79b2dd184638b056
PYTHON_PILLOW_SOURCE = pillow-$(PYTHON_PILLOW_VERSION).tar.gz
PYTHON_PILLOW_LICENSE = HPND
PYTHON_PILLOW_LICENSE_FILES = LICENSE
PYTHON_PILLOW_CPE_ID_VENDOR = python
PYTHON_PILLOW_CPE_ID_PRODUCT = pillow
PYTHON_PILLOW_SETUP_TYPE = setuptools
PYTHON_PILLOW_DEPENDENCIES = host-pkgconf python-pybind
PYTHON_PILLOW_BUILD_OPTS = \
--skip-dependency-check \
-Cplatform-guessing=disable \
-Cimagequant=disable \
-Craqm=disable
ifeq ($(BR2_PACKAGE_FREETYPE),y)
PYTHON_PILLOW_DEPENDENCIES += freetype
PYTHON_PILLOW_BUILD_OPTS += -Cfreetype=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Cfreetype=disable
endif
ifeq ($(BR2_PACKAGE_JPEG),y)
PYTHON_PILLOW_DEPENDENCIES += jpeg
PYTHON_PILLOW_BUILD_OPTS += -Cjpeg=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Cjpeg=disable
endif
ifeq ($(BR2_PACKAGE_LCMS2),y)
PYTHON_PILLOW_DEPENDENCIES += lcms2
PYTHON_PILLOW_BUILD_OPTS += -Clcms=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Clcms=disable
endif
ifeq ($(BR2_PACKAGE_LIBAVIF),y)
PYTHON_PILLOW_DEPENDENCIES += libavif
PYTHON_PILLOW_BUILD_OPTS += -Clibavif=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Clibavif=disable
endif
ifeq ($(BR2_PACKAGE_LIBXCB),y)
PYTHON_PILLOW_DEPENDENCIES += libxcb
PYTHON_PILLOW_BUILD_OPTS += -Cxcb=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Cxcb=disable
endif
ifeq ($(BR2_PACKAGE_OPENJPEG),y)
PYTHON_PILLOW_DEPENDENCIES += openjpeg
PYTHON_PILLOW_BUILD_OPTS += -Cjpeg2000=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Cjpeg2000=disable
endif
ifeq ($(BR2_PACKAGE_TIFF),y)
PYTHON_PILLOW_DEPENDENCIES += tiff
PYTHON_PILLOW_BUILD_OPTS += -Ctiff=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Ctiff=disable
endif
ifeq ($(BR2_PACKAGE_WEBP)$(BR2_PACKAGE_WEBP_DEMUX)$(BR2_PACKAGE_WEBP_MUX),yyy)
PYTHON_PILLOW_DEPENDENCIES += webp
PYTHON_PILLOW_BUILD_OPTS += -Cwebp=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Cwebp=disable
endif
ifeq ($(BR2_PACKAGE_ZLIB),y)
PYTHON_PILLOW_DEPENDENCIES += zlib
PYTHON_PILLOW_BUILD_OPTS += -Czlib=enable
else
PYTHON_PILLOW_BUILD_OPTS += -Czlib=disable
endif
$(eval $(python-package))