New comment by classabbyamp on void-packages repository https://github.com/void-linux/void-packages/pull/38583#issuecomment-1213541587 Comment: even when adding the `test_suite` argument to setup.py, `setup.py test` fails, probably because there are no tests. fwiw, sphinx doesn't even *need* `sphinxcontrib-newsfeed` for generating the manpage. with this patch and removal of `sphinx_rtd_theme` (which is just for the html docs) from the hostmakedepends it still generates the same manpages. There are warnings but they don't affect the output. ```patch --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -107,7 +107,6 @@ 'sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.todo', - 'sphinxcontrib.newsfeed', ] # Add any paths that contain templates here, relative to this directory. ```