As we are using this package in Turris OS and Daniel Golle decided to no longer maintain this and some other Python packages I'd like to take this package maintainership as was originally suggested in https://github.com/openwrt/packages/pull/17911 by Josef Schlehofer (@BKPepe). Signed-off-by: Šimon Bořek <simon.borek@nic.cz>
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=Flask
|
|
PKG_VERSION:=2.0.2
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
|
PKG_HASH:=7b2fb8e934ddd50731893bdcdb00fc8c0315916f9fcd50d22c7cc1a95ab634e2
|
|
|
|
PKG_MAINTAINER:=Šimon Bořek <simon.borek@nic.cz>
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE.rst
|
|
PKG_CPE_ID:=cpe:/a:palletsprojects:flask
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-flask
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Flask
|
|
URL:=https://palletsprojects.com/p/flask/
|
|
DEPENDS:=+python3-asyncio +python3-click +python3-codecs +python3-decimal \
|
|
+python3-itsdangerous +python3-jinja2 +python3 +python3-logging \
|
|
+python3-markupsafe +python3-multiprocessing +python3-setuptools \
|
|
+python3-werkzeug
|
|
endef
|
|
|
|
define Package/python3-flask/description
|
|
Flask is a microframework for Python based on Werkzeug, Jinja 2 and good
|
|
intentions. And before you ask: It.s BSD licensed!
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-flask))
|
|
$(eval $(call BuildPackage,python3-flask))
|
|
$(eval $(call BuildPackage,python3-flask-src))
|