mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 09:19:51 +00:00
* Rename PYTHON3_PKG_SETUP_VARS to PYTHON3_PKG_BUILD_VARS, and PYTHON3_PKG_SETUP_DIR to PYTHON3_PKG_BUILD_PATH The new variable names emphasize that these values apply to the new build process. * Remove PYTHON3_PKG_SETUP_ARGS set to the empty string These were set to override the default arguments in the old build process and not applicable to the new build process. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
34 lines
889 B
Makefile
34 lines
889 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-cached-property
|
|
PKG_VERSION:=1.5.2
|
|
PKG_RELEASE:=2
|
|
|
|
PYPI_NAME:=cached-property
|
|
PKG_HASH:=9fa5755838eecbb2d234c3aa390bd80fbd3ac6b6869109bfc1b499f7bd89a130
|
|
|
|
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-cached-property
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=A decorator for caching properties in classes
|
|
URL:=https://github.com/pydanny/cached-property
|
|
DEPENDS:=+python3-light
|
|
endef
|
|
|
|
define Package/python3-cached-property/description
|
|
A decorator for caching properties in classes.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-cached-property))
|
|
$(eval $(call BuildPackage,python3-cached-property))
|
|
$(eval $(call BuildPackage,python3-cached-property-src))
|