You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
950 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=python-cachelib
  6. PKG_VERSION:=0.3.0
  7. PKG_RELEASE:=1
  8. PYPI_NAME:=cachelib
  9. PKG_HASH:=cc1856259f102c9273efa342100f70d9fafbd07b41ce05c501ee28e1dbbb5133
  10. PKG_MAINTAINER:=Stepan Henek <stepan.henek@nic.cz>
  11. PKG_LICENSE:=BSD-3-Clause
  12. PKG_LICENSE_FILES:=LICENSE
  13. include ../pypi.mk
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../python3-package.mk
  16. define Package/python3-cachelib
  17. SECTION:=lang
  18. CATEGORY:=Languages
  19. SUBMENU:=Python
  20. TITLE:=cachelib
  21. URL:=https://github.com/pallets/cachelib
  22. DEPENDS:=+python3-light
  23. endef
  24. define Package/python3-cachelib/description
  25. A collection of cache libraries in the same API interface.
  26. Extracted from werkzeug.
  27. endef
  28. $(eval $(call Py3Package,python3-cachelib))
  29. $(eval $(call BuildPackage,python3-cachelib))
  30. $(eval $(call BuildPackage,python3-cachelib-src))