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 9e7342e0d7c451505010d403ad5e5bf7c91a88c2
Merge: ded15a6 e12dffe
Author: Michael Prokop <115592+mika@users.noreply.github.com>
Date: Fri Feb 27 09:54:44 2026 +0100
Merge pull request #95 from grml/mika/aarch64
Fix host architecture detection when running on arm64
commit e12dffee4907c08e2213e9e832a4e012cb196e42
Author: Michael Prokop <mika@grml.org>
Date: Thu Feb 26 17:51:33 2026 +0100
Fix host architecture detection when running on arm64
With `dpkg --print-architecture` it indeed reports arm64:
% dpkg --print-architecture
arm64
But `uname -m` reports aarch64 instead:
% uname -m
aarch64
Given that we rely on `uname -m` for identifying the host architecture,
adjust the check accordingly.