bug#12954: Fix the 'su' bug for rhel6.3

2012-11-22 Thread ybronhei
Hey, I would like to have a fix for that issue (as it was fixed in newer versions), I want to merge it to the current version of rhel6.3 (coreutils-8.4-19.el6.x86_64) Please update me. Thanks. -- Yaniv Bronhaim. RedHat, Israel 09-7692289 054-7744187

bug#12954: Differences between 'su' version give different results

2012-11-22 Thread Ondrej Vasik
On Wed, 2012-11-21 at 10:06 -0700, Eric Blake wrote: > tag 12954 notabug > thanks > > On 11/21/2012 09:07 AM, ybronhei wrote: > > Differences between 'su' version give different results in the following > > shell script: > > > over fedora 17 I run - coreutils 8.15-8: if the file is not accessible

bug#12891: test-suite AIX 6.1 non-root xlC compiler

2012-11-22 Thread Pádraig Brady
On 11/20/2012 08:31 PM, Michael Felt wrote: root@x104:[/data/prj/gnu/ coreutils/coreutils-8.20]cd tests root@x104:[/data/prj/gnu/coreutils/coreutils-8.20/tests]truss -f -o /tmp/tr m> cd .. && make check TESTS=tests/tail-2/F-vs-missing.sh SUBDIRS=. All make invocations must be from the top level

bug#12891: test-suite AIX 6.1 non-root xlC compiler

2012-11-22 Thread Pádraig Brady
On 11/15/2012 08:00 AM, Michael Felt wrote: > FAIL: tests/rm/d-2.sh (exit: 1) > === > + diff -u exp out > --- exp2012-11-14 22:58:24 +0100 > +++ out2012-11-14 22:58:23 +0100 > @@ -1 +1 @@ > -rm: cannot remove 'd': Directory not empty > +rm: cannot remove 'd':

bug#12959: "seq -w -1e-3 9" misaligned

2012-11-22 Thread Marcel Böhme
Hi, While the output of (1) "seq -w -1e-2 9" prints the width as expected, the output of (2) "seq -w -1e-3 9" does not: (1) vs. (2) -0.01 | -0.001 00.99 | 0.999 01.99 | 1.999 02.99 | 2.999 03.99 | 3.999 04.99 | 4.999 05.99 | 5.999 06.99 | 6.999 07.99 | 7.999 08.99 | 8.999 Similarly, see "seq -w

bug#12959: "seq -w -1e-3 9" misaligned

2012-11-22 Thread Pádraig Brady
On 11/22/2012 10:49 AM, Marcel Böhme wrote: Hi, While the output of (1) "seq -w -1e-2 9" prints the width as expected, the output of (2) "seq -w -1e-3 9" does not: (1) vs. (2) -0.01 | -0.001 00.99 | 0.999 01.99 | 1.999 02.99 | 2.999 03.99 | 3.999 04.99 | 4.999 05.99 | 5.999 06.99 | 6.999 07.9

bug#12891: test-suite AIX 6.1 non-root xlC compiler

2012-11-22 Thread Jim Meyering
Pádraig Brady wrote: > On 11/15/2012 08:00 AM, Michael Felt wrote: > >> FAIL: tests/rm/d-2.sh (exit: 1) >> === > >> + diff -u exp out >> --- exp 2012-11-14 22:58:24 +0100 >> +++ out 2012-11-14 22:58:23 +0100 >> @@ -1 +1 @@ >> -rm: cannot remove 'd': Directory n

bug#12961: [russ...@coker.com.au: Bug#525359: wish there was a libcoreutils]

2012-11-22 Thread Samuel Bronson
Package: coreutils Version: 6.10 Severity: wishlist >From : --- Begin Message --- Package: coreutils Version: 6.10-6 Severity: wishlist I wish there was a shared library providing the functionality of base64, cksum, md5sum, sha*sum, and w

bug#12964: [PATCH] printenv: -n option added -- show names of variables.

2012-11-22 Thread Van de Bugger
>From 50aefa315b50b151a2192168fa46e9a311c06147 Mon Sep 17 00:00:00 2001 From: Van de Bugger Date: Fri, 23 Nov 2012 02:38:48 +0400 Subject: [PATCH] printenv: -n option added -- show names of variables. * src/printenv.c: -n option added -- show names of variables. --- src/printenv.c | 17 +

bug#12959: Aw: bug#12959: "seq -w -1e-3 9" misaligned

2012-11-22 Thread Marcel Böhme
Hi Pádraig, The problem seems to be related to the computation of ret.width for arguments with exponent in method scan_arg. Apparently, the ret.precision is handled in the presence of an exponent while the ret.width is not. More evidence: $ seq -w 1e3 1e5 | head -2 1000 1001 $ seq -w 1e3 1e5 |