Hi Fernando, sorry for the late reply.
Am Mon, Aug 17, 2026 at 07:02:12PM +0200 schrieb Fernando Hueso González: > Hi Andreas, good news, install step is now solved. > > CI is not yet green due to some blhc and lintian issues. Should one add > overrides files for lintian? > > E: libpythonqt-dev: lacks-ldconfig-trigger usr/lib/libPythonQt.so > usr/lib/libPythonQt_QtAll.so I guess this is a consequence of the next one. > W: libpythonqt: empty-binary-package Seems we need some SOVERSION for the library. The versioned library needs to be installed into the libpythonqtVER package while the libpythonqt-dev is usually featuring the symlink *.so (without version), the header files (OK in your packaging) and optional the static library (*.a) To approach this, you need to patch the CMakeLists.txt file to create a SOVERSION. (We have some examples in Debian Med.) Apropos patching. Your debian/patches/cmake.diff patch is quite long, contains files in .github which most probably are not needed for the packaging. Please restrict the patch to the necessary changes and also document the purpose in the "Description:" DEP3 field (I've just added Author and Last-Update). > W: libpythonqt-dev: package-name-doesnt-match-sonames libPythonQt > libPythonQt-QtAll This might be overridden in a lintian-overrides line. You can't fulfill this when two libraries are in one binary package. > W: libpythonqt-dev: shared-library-lacks-version usr/lib/libPythonQt.so > libPythonQt.so > W: libpythonqt-dev: shared-library-lacks-version usr/lib/libPythonQt_QtAll.so > libPythonQt_QtAll.so See above. Moreover you should use multiarch installation (/usr/lib/x86_64-linux-gnu/ and the according dir for other archs). CMake has some command for this (which I do not know by heart - just let me know in case you might struggle finding it. > Not sure either about the blhc failure. You can tell Salsa to not fail on blhc failures: https://salsa.debian.org/med-team/community/package_template/-/blob/master/debian/salsa-ci.yml?ref_type=heads#L21-23 Hope this helps. I'll be at MiniDebConf Winterthur the next days (actually I'm traveling currently) - so I should have time for more questions. Thank you for working on this Andreas. -- https://fam-tille.de

