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.

42 lines
1.2 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:=Flask
  6. PKG_VERSION:=2.0.2
  7. PKG_RELEASE:=$(AUTORELEASE)
  8. PYPI_NAME:=$(PKG_NAME)
  9. PKG_HASH:=7b2fb8e934ddd50731893bdcdb00fc8c0315916f9fcd50d22c7cc1a95ab634e2
  10. PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>
  11. PKG_LICENSE:=BSD-3-Clause
  12. PKG_LICENSE_FILES:=LICENSE.rst
  13. PKG_CPE_ID:=cpe:/a:palletsprojects:flask
  14. include ../pypi.mk
  15. include $(INCLUDE_DIR)/package.mk
  16. include ../python3-package.mk
  17. define Package/python3-flask
  18. SECTION:=lang
  19. CATEGORY:=Languages
  20. SUBMENU:=Python
  21. TITLE:=Flask
  22. URL:=https://palletsprojects.com/p/flask/
  23. DEPENDS:=+python3-asyncio +python3-click +python3-codecs +python3-decimal \
  24. +python3-itsdangerous +python3-jinja2 +python3 +python3-logging \
  25. +python3-markupsafe +python3-multiprocessing +python3-setuptools \
  26. +python3-werkzeug
  27. endef
  28. define Package/python3-flask/description
  29. Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
  30. intentions. And before you ask: It.s BSD licensed!
  31. endef
  32. $(eval $(call Py3Package,python3-flask))
  33. $(eval $(call BuildPackage,python3-flask))
  34. $(eval $(call BuildPackage,python3-flask-src))