python-pyasn: bump to version 1.6.0b1
[buildroot-gz.git] / package / python3 / Config.in
blob35f57e65ce68c9932333ab59e8adc65d1ad1bcb0
1 comment "python3 needs a toolchain w/ wchar, threads, dynamic library"
2         depends on BR2_USE_MMU
3         depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
5 config BR2_PACKAGE_PYTHON3
6         bool "python3"
7         depends on !BR2_PACKAGE_PYTHON
8         depends on BR2_USE_WCHAR
9         # uses fork()
10         depends on BR2_USE_MMU
11         depends on BR2_TOOLCHAIN_HAS_THREADS # libffi
12         depends on !BR2_STATIC_LIBS
13         select BR2_PACKAGE_LIBFFI
14         help
15           The python language interpreter.
17           http://www.python.org/
19 if BR2_PACKAGE_PYTHON3
21 choice
22         prompt "python3 module format to install"
23         default BR2_PACKAGE_PYTHON3_PYC_ONLY
24         help
25           Select Python module format to install on target (py, pyc or both)
27 config BR2_PACKAGE_PYTHON3_PY_ONLY
28         bool ".py sources only"
30 config BR2_PACKAGE_PYTHON3_PYC_ONLY
31         bool ".pyc compiled sources only"
33 config BR2_PACKAGE_PYTHON3_PY_PYC
34         bool ".py sources and .pyc compiled"
36 endchoice
38 menu "core python3 modules"
40 comment "The following modules are unusual or require extra libraries"
42 config BR2_PACKAGE_PYTHON3_BZIP2
43         bool "bz2 module"
44         select BR2_PACKAGE_BZIP2
45         help
46           bzip2 module for Python3
48 config BR2_PACKAGE_PYTHON3_CODECSCJK
49         bool "codecscjk module"
50         help
51           Chinese/Japanese/Korean codecs module for Python (large).
53 config BR2_PACKAGE_PYTHON3_CURSES
54         bool "curses module"
55         select BR2_PACKAGE_NCURSES
56         help
57           curses module for Python3.
59 config BR2_PACKAGE_PYTHON3_DECIMAL
60         bool "decimal module"
61         select BR2_PACKAGE_MPDECIMAL
62         help
63           decimal module for Python3.
65 config BR2_PACKAGE_PYTHON3_OSSAUDIODEV
66         bool "ossaudiodev module"
67         help
68           ossaudiodev module for Python3.
70 config BR2_PACKAGE_PYTHON3_READLINE
71         bool "readline"
72         select BR2_PACKAGE_READLINE
73         help
74           readline module for Python3 (required for command-line
75           editing in the Python shell).
77 config BR2_PACKAGE_PYTHON3_SSL
78         bool "ssl"
79         select BR2_PACKAGE_OPENSSL
80         help
81           _ssl module for Python3 (required for https in urllib etc).
83 config BR2_PACKAGE_PYTHON3_UNICODEDATA
84         bool "unicodedata module"
85         default y
86         help
87           Unicode character database (used by stringprep module) (large).
89 config BR2_PACKAGE_PYTHON3_SQLITE
90         bool "sqlite module"
91         select BR2_PACKAGE_SQLITE
92         help
93           SQLite database support
95 config BR2_PACKAGE_PYTHON3_PYEXPAT
96         bool "xml module"
97         select BR2_PACKAGE_EXPAT
98         help
99           pyexpat and xml libraries for Python3.
101 config BR2_PACKAGE_PYTHON3_XZ
102         bool "xz module"
103         select BR2_PACKAGE_XZ
104         help
105           xz (a.k.a lzma) module for Python3
107 config BR2_PACKAGE_PYTHON3_ZLIB
108         bool "zlib module"
109         select BR2_PACKAGE_ZLIB
110         help
111           zlib support in Python3
113 endmenu
115 endif