Config.in 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. config BR2_PACKAGE_PYTHON3
  2. bool "python3"
  3. depends on BR2_USE_WCHAR
  4. # uses fork()
  5. depends on BR2_USE_MMU
  6. select BR2_PACKAGE_LIBFFI
  7. help
  8. The python language interpreter.
  9. http://www.python.org/
  10. comment "python3 requires a toolchain with WCHAR support"
  11. depends on !BR2_USE_WCHAR
  12. if BR2_PACKAGE_PYTHON3
  13. choice
  14. prompt "python3 module format to install"
  15. default BR2_PACKAGE_PYTHON3_PYC_ONLY
  16. help
  17. Select Python module format to install on target (py, pyc or both)
  18. config BR2_PACKAGE_PYTHON3_PY_ONLY
  19. bool ".py sources only"
  20. config BR2_PACKAGE_PYTHON3_PYC_ONLY
  21. bool ".pyc compiled sources only"
  22. config BR2_PACKAGE_PYTHON3_PY_PYC
  23. bool ".py sources and .pyc compiled"
  24. endchoice
  25. menu "core python3 modules"
  26. comment "The following modules are unusual or require extra libraries"
  27. config BR2_PACKAGE_PYTHON3_BZIP2
  28. select BR2_PACKAGE_BZIP2
  29. bool "bz2 module"
  30. help
  31. bzip2 module for Python3
  32. config BR2_PACKAGE_PYTHON3_CODECSCJK
  33. bool "codecscjk module"
  34. help
  35. Chinese/Japanese/Korean codecs module for Python (large).
  36. config BR2_PACKAGE_PYTHON3_CURSES
  37. select BR2_PACKAGE_NCURSES
  38. bool "curses module"
  39. help
  40. curses module for Python3.
  41. config BR2_PACKAGE_PYTHON3_PYEXPAT
  42. select BR2_PACKAGE_EXPAT
  43. bool "pyexpat"
  44. help
  45. pyexpat module for Python3.
  46. config BR2_PACKAGE_PYTHON3_READLINE
  47. select BR2_PACKAGE_READLINE
  48. bool "readline"
  49. help
  50. readline module for Python3 (required for command-line
  51. editing in the Python shell).
  52. config BR2_PACKAGE_PYTHON3_SSL
  53. select BR2_PACKAGE_OPENSSL
  54. bool "ssl"
  55. help
  56. _ssl module for Python3 (required for https in urllib etc).
  57. config BR2_PACKAGE_PYTHON3_UNICODEDATA
  58. bool "unicodedata module"
  59. default y
  60. help
  61. Unicode character database (used by stringprep module) (large).
  62. config BR2_PACKAGE_PYTHON3_SQLITE
  63. bool "sqlite module"
  64. select BR2_PACKAGE_SQLITE
  65. help
  66. SQLite database support
  67. config BR2_PACKAGE_PYTHON3_ZLIB
  68. bool "zlib module"
  69. select BR2_PACKAGE_ZLIB
  70. help
  71. zlib support in Python3
  72. endmenu
  73. endif