python3: Fix package descriptions
[feed/packages.git] / lang / python / python3 / files / python3-package-cgi.mk
1 #
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
8 define Package/python3-cgi
9 $(call Package/python3/Default)
10 TITLE+= cgi module
11 DEPENDS:=+python3-light +python3-email
12 endef
13
14 define Package/python3-cgitb
15 $(call Package/python3/Default)
16 TITLE+= cgitb module
17 DEPENDS:=+python3-light +python3-cgi +python3-pydoc
18 endef
19
20 define Package/python3-cgi/description
21 $(call Package/python3/Default/description)
22
23 This package contains the cgi module.
24 endef
25
26 define Package/python3-cgitb/description
27 $(call Package/python3/Default/description)
28
29 This package contains the cgitb module.
30 endef
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 ))