Bug#848578: [PATCH] ts: Enable UTF-8 binary mode for input and output processing (Closes: #848578)

2023-03-05 Thread Nicolas Schier
On Thu 02 Mar 2023 10:39:45 GMT, Dr. Thomas Orgis wrote: > I also sent this already directly to Joey, but later found this bug > report. My take is this: > > --- /usr/bin/ts 2019-02-20 22:03:31.0 +0100 > +++ ./ts 2023-03-01 21:06:41.177886024 +0100 > @@ -53,6 +53,7 @@ > use

Bug#848578: [PATCH] ts: Enable UTF-8 binary mode for input and output processing (Closes: #848578)

2023-03-02 Thread Dr. Thomas Orgis
I also sent this already directly to Joey, but later found this bug report. My take is this: --- /usr/bin/ts 2019-02-20 22:03:31.0 +0100 +++ ./ts2023-03-01 21:06:41.177886024 +0100 @@ -53,6 +53,7 @@ use strict; use POSIX q{strftime}; no warnings 'utf8'; +use open q{:locale};

Bug#848578: [PATCH] ts: Enable UTF-8 binary mode for input and output processing (Closes: #848578)

2023-01-02 Thread Joey Hess
Nicolas Schier wrote: > Are there chances that you still apply such patches? After your call > for adoption: Is there some new maintainer for moreutils already > available? I'm still maintaining moreutils until I find someone else. I am not considering new additions of tools to it any longer.

Bug#848578: [PATCH] ts: Enable UTF-8 binary mode for input and output processing (Closes: #848578)

2023-01-02 Thread Joey Hess
Nicolas Schier wrote: > Enable UTF-8 compatible processing of input and output to correctly output > e.g. > timestamps containing non-latin letters (cp. [1]). > +# Ensure that text read or printed are converted from/to UTF-8. > +binmode STDIN, ':utf8'; > +binmode STDOUT, ':utf8'; > +binmode

Bug#848578: [PATCH] ts: Enable UTF-8 binary mode for input and output processing (Closes: #848578)

2022-12-07 Thread Nicolas Schier
Dear Joey, On Fri 07 Oct 2022 20:14:29 GMT, Nicolas Schier wrote: > Enable UTF-8 compatible processing of input and output to correctly > output e.g. > timestamps containing non-latin letters (cp. [1]). > > [1]: https://bugs.debian.org/848578 > > Signed-off-by: Nicolas Schier > --- > ts | 5

Bug#848578: [PATCH] ts: Enable UTF-8 binary mode for input and output processing (Closes: #848578)

2022-10-07 Thread Nicolas Schier
Enable UTF-8 compatible processing of input and output to correctly output e.g. timestamps containing non-latin letters (cp. [1]). [1]: https://bugs.debian.org/848578 Signed-off-by: Nicolas Schier --- ts | 5 + 1 file changed, 5 insertions(+) diff --git a/ts b/ts index af23cf7..fbd5b1a