Dependency on python-chai needed?
The python-chai is probably dead, most recent commit was 7 years ago. Now the python-chai was dropped to aur, and removed from arch.ini
.
Because of that, drkonqi module now fails to configure in kde-builder.
I noticed that fedora.ini
still lists the python3-chai
.
The question is, do we really need this dependency?
The relevant part from drkonqi's CMakeLists.txt is:
if(NOT CMAKE_SYSTEM_NAME MATCHES FreeBSD)
find_pythonmodule(chai)
set_package_properties("chai-PythonModule" PROPERTIES
DESCRIPTION "Python module chai is required for testing."
TYPE REQUIRED)
add_test(NAME preambletest
COMMAND ${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/preambletest.py)
endif()
it is marked as required. And is used for the preambletest.py script.
@sitter Can this script be rewritten so that we get rid of chai dependency?