mirror of
https://github.com/openwrt/packages.git
synced 2026-06-01 07:21:56 +08:00
ea62ec3366
Pillow 12.x introduces pybind11-based C extension bindings and a
custom build backend (wrapping setuptools.build_meta). This requires:
- Replacing python-setuptools-scm with python-setuptools as build dep
- Adding python-pybind11 as a new build dependency (host)
- Updating build config settings from --build-option flags to the new
key=value format (e.g. zlib=enable, imagequant=disable)
- Removing the separate webpmux flag (merged into webp feature)
Full release notes:
https://pillow.readthedocs.io/en/stable/releasenotes/index.html
Remove 001-remove-setuptools-version-limit.patch
That's an old relic since when setuptools was packaged inside Python3
Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
(cherry picked from commit df78cf6b01)
56 lines
1.2 KiB
Makefile
56 lines
1.2 KiB
Makefile
#
|
|
# Copyright © 1997-2011 by Secret Labs AB
|
|
# Copyright © 1995-2011 by Fredrik Lundh
|
|
# Copyright © 2016 by Alex Clark and contributors
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=pillow
|
|
PKG_VERSION:=12.1.1
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=Pillow
|
|
PYPI_SOURCE_NAME:=pillow
|
|
PKG_HASH:=9ad8fa5937ab05218e2b6a4cff30295ad35afd2f83ac592e68c0d871bb0fdbc4
|
|
|
|
PKG_BUILD_DEPENDS:=python-setuptools/host python-pybind11/host
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=HPND
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_CPE_ID:=cpe:/a:python:pillow
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-pillow
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=The friendly PIL fork
|
|
URL:=https://python-pillow.org/
|
|
DEPENDS:=+libfreetype +libjpeg +libtiff +zlib \
|
|
+libwebp +python3
|
|
endef
|
|
|
|
define Package/python3-pillow/description
|
|
The friendly PIL fork
|
|
endef
|
|
|
|
PYTHON3_PKG_BUILD_CONFIG_SETTINGS += \
|
|
zlib=enable \
|
|
jpeg=enable \
|
|
webp=enable \
|
|
tiff=enable \
|
|
freetype=enable \
|
|
lcms=disable \
|
|
jpeg2000=disable \
|
|
imagequant=disable \
|
|
platform-guessing=disable
|
|
|
|
$(eval $(call Py3Package,python3-pillow))
|
|
$(eval $(call BuildPackage,python3-pillow))
|
|
$(eval $(call BuildPackage,python3-pillow-src))
|