vcswatch reports that
this package seems to have new commits in its VCS but has
not yet updated debian/changelog. You should consider updating
the Debian changelog and uploading this new version into the archive.
Here are the relevant commit logs:
commit 928fc9cc49cf92e4b3dca46d93dd25792e8bf369
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Mon Jan 5 21:55:44 2026 +0100
Refactor: one constructor in deb_build_options_profiles
Return the current value when the environment is modified.
commit b1d5cb8a552354a36513e8d86ca9d26e0b172fe7
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Mon Jan 5 17:39:34 2026 +0100
Makefile: substitute ROOT_DIR in deb_materialisaion and deb_packer
Remove the obsolete __release_commit__ substitution.
Show the version in log, instead of the dpkg-parsechangelog command.
commit bf9921d9472750bdbe020996f8da4d4791137796
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Mon Jan 5 17:17:52 2026 +0100
Makefile: create the destination directory right before copying a file
Remove the apparently overwritten final component of
DEBPUTY_INSTALLED_PLUGIN_ROOT_DIR/debputy.
Debdiff reports no difference.
commit a236ee9cc1c26b659865338b883582a5f87d1771
Author: Niels Thykier <niels@thykier.net>
Date: Sun Jan 11 10:07:54 2026 +0000
deb_packer.py: provide closer match to `dpkg-deb` `xz` compression
Previously, we always hard-coded `-T2` to ensure we used
multi-threaded mode and then ignored `--threads-max`. Now
`--threads-max` and related ENV variable is respected along
with various safety options to ensure reproducibility.
commit 13b11fd7a4a48c97e9f5d5de135dbc7cb46394e0
Author: Niels Thykier <niels@thykier.net>
Date: Sat Jan 10 13:10:04 2026 +0000
Apply black on all source files
Gbp-Dch: ignore
commit a353b29221aad04a4ca27d40bda55ef43fbaf9ef
Author: Niels Thykier <niels@thykier.net>
Date: Sat Jan 10 13:02:17 2026 +0000
Add CI job for ensuring black style is enforced
Gbp-Dch: ignore
commit 58c53b9ee16418b4dd1542a6afbbfa186b250bd5
Author: Niels Thykier <niels@thykier.net>
Date: Sun Jan 4 09:03:09 2026 +0000
Tweak some (warning/error) messages to the user
Gbp-Dch: ignore
commit 51777fc3414cd9a25b8a2f7a176af7faed89a9d1
Author: Nicolas Boulenguez <nicolas@debian.org>
Date: Thu Jan 1 16:51:14 2026 +0100
Refactor: parts of the built_using processing and tests
binary_packages_rules.py:
Make BuiltUsing and StaticBuiltUsing subclasses of
tuple[BuiltUsingItem, ...]. This simplifies the typing without
breaking the manifest_configuration() request.
_validate_built_using:
Move the search for matches into a separate function (following pylint
advice).
Fix the message reported when no match is found.
metadata_detectors.py:
Split detect_built_using into pass 1 and 2. This should be more
readable than the previous helper returning a boolean.
types.py:
Replace dataclasses with NamedTuples. Immutability improves the
overall readability, and unpacking of iteration variables is
convenient in short functions.
test_built_using.py:
Replace complex tests with multiple more informative short tests.
Allow one binary package per test.