Source: deluge Version: 2.2.0-2 Severity: serious Tags: patch User: [email protected] Usertags: dep17m2
Hi, in your latest upload you removed the usage of dh_movetousr (which is a good thing). But you forgot to actually fix the installation paths to use /usr. As a result, the .service files now end up in /lib, triggering https://udd.debian.org/lintian-tag/aliased-location which prevents testing migration. The attached patch should fix the problem. Regards, Michael
diff --git a/debian/deluge-web.install b/debian/deluge-web.install index 2840f22..7c4b886 100644 --- a/debian/deluge-web.install +++ b/debian/deluge-web.install @@ -1,4 +1,4 @@ -packaging/systemd/deluge-web.service lib/systemd/system +packaging/systemd/deluge-web.service usr/lib/systemd/system usr/bin/deluge-web usr/lib/python*/*-packages/deluge/ui/web/* usr/share/man/man1/deluge-web.1 diff --git a/debian/deluged.install b/debian/deluged.install index 35f1157..097eb62 100644 --- a/debian/deluged.install +++ b/debian/deluged.install @@ -1,3 +1,3 @@ -packaging/systemd/deluged.service lib/systemd/system +packaging/systemd/deluged.service usr/lib/systemd/system usr/bin/deluged usr/share/man/man1/deluged.1

