Package: aptfs Version: 2:1.0.1 Severity: normal Tags: patch Hello Chris,
your package aptfs currently installs a symlink into /sbin. For the ongoing UsrMerge effort [1], /sbin should become "empty", IOW packages should not install files there, but instead into /usr/sbin. Please find a trivial patch attached implementing this; I've also opened a merge request on salsa [2]. Please apply at your earliest convenience. Note: if you backport newer versions to bookworm (or earlier), the change has to be reverted to respect the /usr-move moratorium for earlier releases. Thanks, Chris 1. https://wiki.debian.org/UsrMerge 2. https://salsa.debian.org/lamby/aptfs/-/merge_requests/1
diff -Nru aptfs-1.0.1/debian/aptfs.links aptfs-1.0.2/debian/aptfs.links --- aptfs-1.0.1/debian/aptfs.links 2019-09-09 21:56:17.000000000 +0200 +++ aptfs-1.0.2/debian/aptfs.links 2023-11-27 10:54:55.000000000 +0100 @@ -1 +1 @@ -usr/bin/mount.aptfs sbin/mount.aptfs +usr/bin/mount.aptfs usr/sbin/mount.aptfs diff -Nru aptfs-1.0.1/debian/changelog aptfs-1.0.2/debian/changelog --- aptfs-1.0.1/debian/changelog 2019-09-09 21:56:17.000000000 +0200 +++ aptfs-1.0.2/debian/changelog 2023-11-27 10:55:01.000000000 +0100 @@ -1,3 +1,10 @@ +aptfs (2:1.0.2) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Move /sbin/mount.apfs symlink into /usr + + -- Chris Hofstaedtler <[email protected]> Mon, 27 Nov 2023 10:55:01 +0100 + aptfs (2:1.0.1) unstable; urgency=medium * Fix opening/reading of files after Python 3.x migration. diff -Nru aptfs-1.0.1/setup.py aptfs-1.0.2/setup.py --- aptfs-1.0.1/setup.py 2019-09-09 21:56:17.000000000 +0200 +++ aptfs-1.0.2/setup.py 2023-11-27 10:55:01.000000000 +0100 @@ -21,7 +21,7 @@ setup( name='aptfs', - version='1.0.1', + version='1.0.2', author="Chris Lamb", author_email="[email protected]", packages=('AptFs',),

