diff -Nru timeshift-21.09.1/debian/changelog timeshift-21.09.1/debian/changelog --- timeshift-21.09.1/debian/changelog 2021-10-01 17:11:18.000000000 +0100 +++ timeshift-21.09.1/debian/changelog 2024-03-28 18:29:41.000000000 +0000 @@ -1,3 +1,9 @@ +timeshift (21.09.1-1ubuntu1) jammy; urgency=medium + + * d/patches: force rsync to output decimals in C locale. + + -- Ponnuvel Palaniyappan Thu, 28 Mar 2024 18:29:41 +0000 + timeshift (21.09.1-1) unstable; urgency=medium * New upstream version 21.09.1 diff -Nru timeshift-21.09.1/debian/patches/bug2009885-rsync-C-locale.patch timeshift-21.09.1/debian/patches/bug2009885-rsync-C-locale.patch --- timeshift-21.09.1/debian/patches/bug2009885-rsync-C-locale.patch 1970-01-01 01:00:00.000000000 +0100 +++ timeshift-21.09.1/debian/patches/bug2009885-rsync-C-locale.patch 2024-03-28 18:29:32.000000000 +0000 @@ -0,0 +1,20 @@ +Description: Force rsync to output decimals in C locale. +Author: Ponnuvel Palaniyappan, pponnuvel@gmail.com +Origin: upstream +Bug: https://github.com/teejee2008/timeshift/issues/891 +Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/timeshift/+bug/2009885 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: timeshift-21.09.1/src/Utility/RsyncTask.vala +=================================================================== +--- timeshift-21.09.1.orig/src/Utility/RsyncTask.vala ++++ timeshift-21.09.1/src/Utility/RsyncTask.vala +@@ -174,7 +174,7 @@ public class RsyncTask : AsyncTask{ + + private string build_script() { + +- var cmd = ""; ++ var cmd = "export LC_ALL=C.UTF-8\n"; + + if (io_nice){ + //cmd += "ionice -c2 -n7 "; diff -Nru timeshift-21.09.1/debian/patches/series timeshift-21.09.1/debian/patches/series --- timeshift-21.09.1/debian/patches/series 2021-10-01 17:08:48.000000000 +0100 +++ timeshift-21.09.1/debian/patches/series 2024-03-28 18:28:32.000000000 +0000 @@ -2,3 +2,4 @@ 0005-build-with-debug-info.patch 0006-Add_keywords_to_dot_desktop.patch 0007-Add_VALAFLAGS_to_makefile.patch +bug2009885-rsync-C-locale.patch