blob: e4bb110f17eb812e766eb690c27b3b7dd0dd13d9 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2006-2017 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8define Package/python3-cgi
9$(call Package/python3/Default)
10 TITLE+= cgi module
11 DEPENDS:=+python3-light +python3-email
12endef
13
14define Package/python3-cgitb
15$(call Package/python3/Default)
16 TITLE+= cgitb module
17 DEPENDS:=+python3-light +python3-cgi +python3-pydoc
18endef
19
20define Package/python3-cgi/description
21$(call Package/python3/Default/description)
22
23This package contains the cgi module.
24endef
25
26define Package/python3-cgitb/description
27$(call Package/python3/Default/description)
28
29This package contains the cgitb module.
30endef
31
32$(eval $(call Py3BasePackage,python3-cgi, \
33 /usr/lib/python$(PYTHON3_VERSION)/cgi.py \
34))
35
36$(eval $(call Py3BasePackage,python3-cgitb, \
37 /usr/lib/python$(PYTHON3_VERSION)/cgitb.py \
38))