mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 06:58:39 +01:00
pillow: add Python3 variant and update to 6.1.0
- Add @commodo as maintainer Co-Authored-By: Jeffery To <jeffery.to@gmail.com> Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
This commit is contained in:
+53
-23
@@ -7,43 +7,73 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=pillow
|
||||
PKG_VERSION:=5.3.0
|
||||
PKG_RELEASE:=2
|
||||
PKG_VERSION:=6.1.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=Pillow-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/P/Pillow
|
||||
PKG_HASH:=2ea3517cd5779843de8a759c2349a3cd8d3893e03ab47053b66d5ec6f8bc4f93
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/Pillow-$(PKG_VERSION)
|
||||
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
||||
PKG_HASH:=0804f77cb1e9b6dbd37601cee11283bba39a8d44b9ddb053400c58e0c0d7d9de
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-Pillow-$(PKG_VERSION)
|
||||
|
||||
PKG_LICENSE:=CUSTOM
|
||||
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
||||
PKG_LICENSE:=HPND
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
include ../python-package.mk
|
||||
include ../python3-package.mk
|
||||
|
||||
define Package/pillow
|
||||
SUBMENU:=Python
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=The friendly PIL fork
|
||||
URL:=https://python-pillow.org/
|
||||
DEPENDS:=+python +libfreetype +libjpeg +zlib +libtiff
|
||||
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
||||
|
||||
define Package/python-pillow/Default
|
||||
SUBMENU:=Python
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=The friendly PIL fork
|
||||
URL:=https://python-pillow.org/
|
||||
DEPENDS:=+libfreetype +libjpeg +libtiff +zlib
|
||||
endef
|
||||
|
||||
define Package/pillow/description
|
||||
The friendly PIL fork
|
||||
define Package/python-pillow
|
||||
$(call Package/python-pillow/Default)
|
||||
DEPENDS+=+PACKAGE_python-pillow:python
|
||||
VARIANT:=python
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
|
||||
define Package/python-pillow/description
|
||||
The friendly PIL fork
|
||||
endef
|
||||
|
||||
define Package/pillow/install
|
||||
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
||||
$(1)$(PYTHON_PKG_DIR)/
|
||||
define Package/python3-pillow
|
||||
$(call Package/python-pillow/Default)
|
||||
DEPENDS+=+PACKAGE_python3-pillow:python3
|
||||
VARIANT:=python3
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,pillow))
|
||||
define Package/python3-pillow/description
|
||||
$(call Package/python-pillow/description)
|
||||
.
|
||||
(Variant for Python3)
|
||||
endef
|
||||
|
||||
PYTHON3_PKG_SETUP_GLOBAL_ARGS += build_ext \
|
||||
--enable-zlib \
|
||||
--enable-jpeg \
|
||||
--enable-tiff \
|
||||
--enable-freetype \
|
||||
--disable-lcms \
|
||||
--disable-webp \
|
||||
--disable-webpmux \
|
||||
--disable-jpeg2000 \
|
||||
--disable-imagequant \
|
||||
--disable-platform-guessing
|
||||
|
||||
PYTHON_PKG_SETUP_GLOBAL_ARGS:=$(PYTHON3_PKG_SETUP_GLOBAL_ARGS)
|
||||
|
||||
$(eval $(call PyPackage,python-pillow))
|
||||
$(eval $(call BuildPackage,python-pillow))
|
||||
$(eval $(call BuildPackage,python-pillow-src))
|
||||
|
||||
$(eval $(call Py3Package,python3-pillow))
|
||||
$(eval $(call BuildPackage,python3-pillow))
|
||||
$(eval $(call BuildPackage,python3-pillow-src))
|
||||
|
||||
Reference in New Issue
Block a user