On 2025-05-13 23:23, Cordell Bloor wrote: > Typically there is also the option of using the sadt tool from > devscripts [1]. However, it doesn't seem to recognize the Architecture > field in d/t/control
That warrants a bug report. I took a brief look. At first glance, the trivial patch below should fix this by ignoring the field's contents, which wouldn't be an entirely unreasonable workaround. Parsing the field would be a bit more work, but perhaps the maintainers would be willing to implement it. Best, Christian > [1]: https://manpages.debian.org/testing/devscripts/sadt.1.en.html $ diff -u /usr/bin/sadt sadt --- /usr/bin/sadt 2025-04-29 05:20:06.000000000 +0200 +++ /tmp/sadt 2025-05-14 22:45:56.169844645 +0200 @@ -453,6 +453,9 @@ def add_tests_directory(self, path): self.tests_directory = path + def add_architecture(self, architecture): + pass + def copy_build_tree(): rw_build_tree = tempfile.mkdtemp(prefix="sadt-rwbt.")