blob: 1a6913d2b5187fc92a55c6d17abb69f02be297f5 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2015 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=python3-bottle
11PKG_VERSION:=0.12.25
12PKG_RELEASE:=1
13
14PYPI_NAME:=bottle
15PKG_HASH:=e1a9c94970ae6d710b3fb4526294dfeb86f2cb4a81eff3a4b98dc40fb0e5e021
16
17PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
18PKG_LICENSE:=MIT
19PKG_LICENSE_FILES:=LICENSE
20PKG_CPE_ID:=cpe:/a:bottlepy:bottle
21
22include ../pypi.mk
23include $(INCLUDE_DIR)/package.mk
24include ../python3-package.mk
25
26define Package/python3-bottle
27 SECTION:=lang
28 CATEGORY:=Languages
29 SUBMENU:=Python
30 TITLE:=Fast and simple WSGI-framework for small web-applications
31 URL:=https://bottlepy.org
32 DEPENDS:=+python3
33endef
34
35define Package/python3-bottle/description
36 Bottle is a fast, simple and lightweight WSGI micro web-framework for Python.
37 It is distributed as a single file module and has no dependencies other than the
38 Python Standard Library.
39endef
40
41$(eval $(call Py3Package,python3-bottle))
42$(eval $(call BuildPackage,python3-bottle))
43$(eval $(call BuildPackage,python3-bottle-src))