Source: python-setproctitle Version: 1.3.7-1 Tags: patch User: [email protected] Usertags: ftcbfs
python-setproctitle cannot be cross built from source for two reasons relating to its Build-Depends. * python3-all-dev requests a host architecture Python interpreter. It is not installable. The recommended dependency for Python extensions is python3-all-dev:native plus libpython3-all-dev. * python3-pytest is not satisfiable. Instead of figuring out a fix, I suggest annotating it <!nocheck>. I'm attaching a patch for your convenience. Once applying it, python-setproctitle cross builds successfully. Happy new year Helmut
diff -Nru python-setproctitle-1.3.7/debian/changelog python-setproctitle-1.3.7/debian/changelog --- python-setproctitle-1.3.7/debian/changelog 2025-10-13 22:21:47.000000000 +0200 +++ python-setproctitle-1.3.7/debian/changelog 2025-12-31 16:43:13.000000000 +0100 @@ -1,3 +1,12 @@ +python-setproctitle (1.3.7-1.1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Fix FTCBFS: (Closes: #-1) + + Multiarchify Python Build-Depends. + + Annotate python3-pytest <!nocheck>. + + -- Helmut Grohne <[email protected]> Wed, 31 Dec 2025 16:43:13 +0100 + python-setproctitle (1.3.7-1) unstable; urgency=medium * New upstream version 1.3.7 diff -Nru python-setproctitle-1.3.7/debian/control python-setproctitle-1.3.7/debian/control --- python-setproctitle-1.3.7/debian/control 2025-10-13 22:21:47.000000000 +0200 +++ python-setproctitle-1.3.7/debian/control 2025-12-31 16:43:12.000000000 +0100 @@ -8,9 +8,10 @@ Build-Depends: debhelper-compat (= 13), dh-sequence-python3, + libpython3-all-dev, procps, - python3-all-dev, - python3-pytest, + python3-all-dev:native, + python3-pytest <!nocheck>, python3-setuptools, Standards-Version: 4.7.2 Homepage: https://github.com/dvarrazzo/py-setproctitle

