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.

40 lines
1.1 KiB

  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.1
  7. PKG_RELEASE:=1
  8. PKG_SOURCE:=cachelib-$(PKG_VERSION).tar.gz
  9. PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/c/cachelib
  10. PKG_HASH:=8b889b509d372095357b8705966e1282d40835c4126d7c2b07fd414514d8ae8d
  11. PKG_BUILD_DIR:=$(BUILD_DIR)/cachelib-$(PKG_VERSION)
  12. PKG_MAINTAINER:=Stepan Henek <stepan.henek@nic.cz>
  13. PKG_LICENSE:=BSD-3-Clause
  14. PKG_LICENSE_FILES:=LICENSE
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-cachelib
  18. SECTION:=lang
  19. CATEGORY:=Languages
  20. SUBMENU:=Python
  21. TITLE:=cachelib
  22. URL:=https://github.com/pallets/cachelib
  23. DEPENDS:=+python3-light
  24. VARIANT:=python3
  25. endef
  26. define Package/python3-cachelib/description
  27. A collection of cache libraries in the same API interface.
  28. Extracted from werkzeug.
  29. endef
  30. $(eval $(call Py3Package,python3-cachelib))
  31. $(eval $(call BuildPackage,python3-cachelib))
  32. $(eval $(call BuildPackage,python3-cachelib-src))