diff -Nru lprint-1.1.0/debian/changelog lprint-1.1.0/debian/changelog --- lprint-1.1.0/debian/changelog 2023-02-24 21:17:35.000000000 +0000 +++ lprint-1.1.0/debian/changelog 2023-03-22 17:17:35.000000000 +0000 @@ -1,3 +1,10 @@ +lprint (1.1.0-3) unstable; urgency=medium + + * move service file to correct dir + (Closes: #1036022, #1036178, #1035601) + + -- Thorsten Alteholz Mon, 22 Mar 2023 19:17:35 +0200 + lprint (1.1.0-2) unstable; urgency=medium * add patch to use /usr/bin instead of /usr/local/bin in service file diff -Nru lprint-1.1.0/debian/patches/0004-move-service-file-to-better-directory.patch lprint-1.1.0/debian/patches/0004-move-service-file-to-better-directory.patch --- lprint-1.1.0/debian/patches/0004-move-service-file-to-better-directory.patch 1970-01-01 00:00:00.000000000 +0000 +++ lprint-1.1.0/debian/patches/0004-move-service-file-to-better-directory.patch 2023-03-22 17:17:35.000000000 +0000 @@ -0,0 +1,25 @@ +From: Thorsten Alteholz +Date: Mon, 22 May 2023 23:59:38 +0200 +Subject: move service file to better directory + +--- + Makefile.in | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/Makefile.in b/Makefile.in +index f5108e0..965253a 100644 +--- a/Makefile.in ++++ b/Makefile.in +@@ -130,9 +130,9 @@ install: all + $(INSTALL) -d -m 755 $(BUILDROOT)/Library/LaunchDaemons; \ + $(INSTALL) -c -m 644 org.msweet.lprint.plist $(BUILDROOT)/Library/LaunchDaemons; \ + else \ +- echo "Installing systemd service to $(BUILDROOT)$(sysconfdir)/systemd/system..."; \ +- $(INSTALL) -d -m 755 $(BUILDROOT)$(sysconfdir)/systemd/system; \ +- $(INSTALL) -c -m 644 lprint.service $(BUILDROOT)$(libdir)/systemd/system; \ ++ echo "Installing systemd service to $(BUILDROOT)/lib/systemd/system..."; \ ++ $(INSTALL) -d -m 755 $(BUILDROOT)/lib/systemd/system; \ ++ $(INSTALL) -c -m 644 lprint.service $(BUILDROOT)/lib/systemd/system; \ + fi + + diff -Nru lprint-1.1.0/debian/patches/series lprint-1.1.0/debian/patches/series --- lprint-1.1.0/debian/patches/series 2023-02-24 21:17:35.000000000 +0000 +++ lprint-1.1.0/debian/patches/series 2023-03-22 17:17:35.000000000 +0000 @@ -1,3 +1,4 @@ 0001-Let-compilation-be-verbose-not-silent.patch 0002-let-service-file-point-to-usr-bin-instead-of-usr-loc.patch 0003-put-service-file-into-libdir.patch +0004-move-service-file-to-better-directory.patch