Control: tags -1 patch On 2024-02-07 Andreas Beckmann <a...@debian.org> wrote: > Package: atm-tools > Version: 1:2.5.1-5.1~exp1 [...] > atm-tools/experimental has gained two unexpected files, causing file > conflicts on upgrades: [...] > There is still an libatm1 dependency, and the new libatm1t64 dependency > seems to miss the epoch.
Hello, Both issues are fixed by a one-line-change, a dh_lintian call should also be added. diff -Nru linux-atm-2.5.1/debian/rules linux-atm-2.5.1/debian/rules --- linux-atm-2.5.1/debian/rules 2019-07-19 11:14:25.000000000 +0200 +++ linux-atm-2.5.1/debian/rules 2024-02-10 13:31:02.000000000 +0100 @@ -72,7 +72,7 @@ dh_testroot dh_install --sourcedir=debian/tmp rm debian/atm-tools/usr/share/man/man8/br2684ctl.8 - dh_installdocs --link-doc=libatm1 + dh_installdocs --link-doc=libatm1t64 dh_installinit --init-script=atm dh_installsystemd --name=atm dh_installman @@ -80,6 +80,7 @@ dh_link dh_strip dh_compress + dh_lintian dh_fixperms dh_makeshlibs -- -c4 dh_installdeb cu Andreas