2017-07-02 00:22:18 +00:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=Werkzeug
|
2021-08-01 03:13:04 +00:00
|
|
|
PKG_VERSION:=2.0.1
|
2020-06-15 00:20:08 +00:00
|
|
|
PKG_RELEASE:=1
|
2017-07-02 00:22:18 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
2021-08-01 03:13:04 +00:00
|
|
|
PKG_HASH:=1de1db30d010ff1af14a009224ec49ab2329ad2cde454c8a708130642d579c42
|
2018-10-07 21:54:07 +00:00
|
|
|
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
2017-07-02 00:22:18 +00:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
2019-09-30 22:14:53 +00:00
|
|
|
PKG_LICENSE_FILES:=LICENSE.rst
|
2017-07-02 00:22:18 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2017-07-02 00:22:18 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 07:56:52 +00:00
|
|
|
include ../python3-package.mk
|
2017-07-02 00:22:18 +00:00
|
|
|
|
|
|
|
define Package/python3-werkzeug
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-09-30 22:14:53 +00:00
|
|
|
TITLE:=Werkzeug
|
2018-10-07 21:54:07 +00:00
|
|
|
URL:=https://palletsprojects.com/p/werkzeug/
|
2017-07-02 00:22:18 +00:00
|
|
|
DEPENDS:=+python3-light +python3-email
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-werkzeug/description
|
2019-09-30 22:14:53 +00:00
|
|
|
The comprehensive WSGI web application library.
|
2017-07-02 00:22:18 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-werkzeug))
|
|
|
|
$(eval $(call BuildPackage,python3-werkzeug))
|
2019-09-30 22:14:53 +00:00
|
|
|
$(eval $(call BuildPackage,python3-werkzeug-src))
|