diff -Nru ltsp-22.01/debian/changelog ltsp-22.01/debian/changelog --- ltsp-22.01/debian/changelog 2022-01-22 07:14:06.000000000 +0000 +++ ltsp-22.01/debian/changelog 2022-03-18 18:49:34.000000000 +0000 @@ -1,8 +1,16 @@ -ltsp (22.01-1~ubuntu21.10.1) impish; urgency=low +ltsp (22.01-2+202203181837~ubuntu21.10.1) impish; urgency=low * Auto build. - -- Alkis Georgopoulos Sat, 22 Jan 2022 07:14:06 +0000 + -- Alkis Georgopoulos Fri, 18 Mar 2022 18:49:34 +0000 + +ltsp (22.01-2) unstable; urgency=medium + + * debian/patches: Make the generated dates timezone-agnostic. Thanks to + Chris Lamb! Closes: #1005029. + * debian/control: Update Standards-Version to 4.6.0. + + -- Vagrant Cascadian Sat, 05 Feb 2022 15:17:00 -0800 ltsp (22.01-1) unstable; urgency=medium diff -Nru ltsp-22.01/debian/control ltsp-22.01/debian/control --- ltsp-22.01/debian/control 2022-01-22 07:14:06.000000000 +0000 +++ ltsp-22.01/debian/control 2022-03-18 18:49:34.000000000 +0000 @@ -5,7 +5,7 @@ Uploaders: Vagrant Cascadian , Alkis Georgopoulos Build-Depends: debhelper (>= 10), go-md2man (>= 2) | pandoc, -Standards-Version: 4.5.1 +Standards-Version: 4.6.0 Vcs-Git: https://github.com/ltsp/ltsp.git Vcs-Browser: https://github.com/ltsp/ltsp/ Homepage: https://ltsp.org diff -Nru ltsp-22.01/debian/git-build-recipe.manifest ltsp-22.01/debian/git-build-recipe.manifest --- ltsp-22.01/debian/git-build-recipe.manifest 2022-01-22 07:14:06.000000000 +0000 +++ ltsp-22.01/debian/git-build-recipe.manifest 2022-03-18 18:49:34.000000000 +0000 @@ -1,2 +1,2 @@ -# git-build-recipe format 0.4 deb-version {debversion} -lp:~ltsp/ltsp git-commit:61f1796c62ed74a098c32a80a345f34d727da78a +# git-build-recipe format 0.4 deb-version {debversion}+202203181837 +lp:~ltsp/ltsp git-commit:0b51c10964f2543627428d6402bba83dcf353d07 diff -Nru ltsp-22.01/docs/Makefile.sh ltsp-22.01/docs/Makefile.sh --- ltsp-22.01/docs/Makefile.sh 2022-01-22 07:14:06.000000000 +0000 +++ ltsp-22.01/docs/Makefile.sh 2022-03-18 18:49:34.000000000 +0000 @@ -212,7 +212,7 @@ _VERSION=$(. ../ltsp/common/ltsp/55-ltsp.sh && echo "$_VERSION") fi if [ -n "$SOURCE_DATE_EPOCH" ]; then - _DATE=$(date -d"@$SOURCE_DATE_EPOCH" "+%Y-%m-%d") + _DATE=$(date -u -d"@$SOURCE_DATE_EPOCH" "+%Y-%m-%d") else _DATE=$(date "+%Y-%m-%d") fi diff -Nru ltsp-22.01/ltsp/client/init/56-services.sh ltsp-22.01/ltsp/client/init/56-services.sh --- ltsp-22.01/ltsp/client/init/56-services.sh 2022-01-22 07:14:06.000000000 +0000 +++ ltsp-22.01/ltsp/client/init/56-services.sh 2022-03-18 18:49:34.000000000 +0000 @@ -113,6 +113,8 @@ for service in $services; do if [ -f "/usr/lib/systemd/system/$service" ] || [ -f "/usr/lib/systemd/system/$service.service" ] || + [ -f "/lib/systemd/system/$service" ] || + [ -f "/lib/systemd/system/$service.service" ] || [ -f "/etc/systemd/system/$service" ] || [ -f "/etc/systemd/system/$service.service" ] || [ -f "/etc/init.d/$service" ]; then @@ -135,7 +137,10 @@ $MASK_SESSION_SERVICES")" for service in $services; do - if [ -f "/usr/lib/systemd/user/$service" ]; then + if [ -f "/usr/lib/systemd/user/$service" ] || + [ -f "/usr/lib/systemd/user/$service.service" ] || + [ -f "/lib/systemd/user/$service" ] || + [ -f "/lib/systemd/user/$service.service" ]; then rw systemctl mask --user --global --quiet --root=/ --no-reload "$service" fi re rm -f "/etc/xdg/autostart/$service.desktop" \