1config BR2_PACKAGE_PYTHON_PYPARTED 2 bool "python-pyparted" 3 depends on BR2_ENABLE_LOCALE # parted 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # parted 5 depends on BR2_USE_WCHAR 6 select BR2_PACKAGE_PARTED 7 help 8 Python bindings for GNU parted (libparted). 9 10 https://github.com/rhinstaller/pyparted 11 12comment "pyparted needs a toolchain w/ locale, wchar, gcc >= 5" 13 depends on !BR2_ENABLE_LOCALE || !BR2_USE_WCHAR || \ 14 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 15