Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package lprint [ Reason ] The service file was installed to the wrong directory. [ Impact ] The service now is at a location that it can not be used by systemd. [ Tests ] There was no code change, so no test was done. [ Risks ] The package is a leaf package and the risk should be low. [ Checklist ] [x] all changes are documented in the d/changelog [x] I reviewed all changes and I approve them [x] attach debdiff against the package in testing unblock lprint/1.1.0-3
diff -Nru lprint-1.1.0/debian/changelog lprint-1.1.0/debian/changelog --- lprint-1.1.0/debian/changelog 2023-02-24 22:17:35.000000000 +0100 +++ lprint-1.1.0/debian/changelog 2023-03-22 18:17:35.000000000 +0100 @@ -1,3 +1,10 @@ +lprint (1.1.0-3) unstable; urgency=medium + + * move service file to correct dir + (Closes: #1036022, #1036178, #1035601) + + -- Thorsten Alteholz <deb...@alteholz.de> 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 01:00:00.000000000 +0100 +++ lprint-1.1.0/debian/patches/0004-move-service-file-to-better-directory.patch 2023-03-22 18:17:35.000000000 +0100 @@ -0,0 +1,25 @@ +From: Thorsten Alteholz <deb...@alteholz.de> +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 22:17:35.000000000 +0100 +++ lprint-1.1.0/debian/patches/series 2023-03-22 18:17:35.000000000 +0100 @@ -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