I think this is all it takes to fix the build: mwhudson@aeglos:/opt/opensource/deb/py36/morse-simulator-1.4$ cat debian/patches/fix-ftbfs.diff --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -237,6 +237,7 @@ ${CMAKE_CURRENT_SOURCE_DIR}/doc/man ${SPHINX_MAN_OUTPUT} && ${GZIP} -f ${SPHINX_MAN_OUTPUT}/*.1) + ADD_DEPENDENCIES(man revisiontag) INSTALL(FILES ${SPHINX_MAN_OUTPUT}/morse.1.gz ${SPHINX_MAN_OUTPUT}/morse-run.1.gz ${SPHINX_MAN_OUTPUT}/morse-create.1.gz
I guess this should be reported upstream, will do that later today I guess. There is still a problem though, because the orig tarball is from the git tag not the release tarball from ftp://ftp.openrobots.org/pub/openrobots/morse/ there is no version.py in the orig and the version reported in version.py is bogus: mwhudson@scw-4e4aeb:~$ cat x/usr/lib/python3/dist-packages/morse/version.py VERSION="UNKNOWN-dirty" PROJECT_STABLE=False I only care about the ftbfs today though :)