9740f8f158Accepting request 1186697 from Base:SystemAna Guerrero2024-07-12 15:04:18 +00:00
a296bffe53- coreutils-i18n.patch: fold(1): fix exit code for non-existent file. The exit code of fold(1) was zero for non-existent file: $ fold badfile; echo $? fold: badfile: No such file or directory 0Bernhard Voelker2024-07-10 21:09:17 +00:00
26149f3250Accepting request 1164165 from Base:SystemAna Guerrero2024-04-04 20:23:59 +00:00
e62f2bf92fAccepting request 1163997 from home:berny:branches:Base:SystemBernhard Voelker2024-04-02 15:30:19 +00:00
949c2f42cf* cksum now accepts the --base64 (-b) option to print base64-encoded checksums. It also accepts/checks such checksums. * cksum now accepts the --raw option to output a raw binary checksum. No file name or other information is output in this mode. * cp, mv, and install now accept the --debug option to print details on how a file is being copied. * factor now accepts the --exponents (-h) option to print factors in the form p^e, rather than repeating the prime p, e times. * ls now supports the --time=modification option, to explicitly select the default mtime timestamp for display and sorting. * mv now supports the --no-copy option, which causes it to fail when asked to move a file to a different file system. * split now accepts options like '-n SIZE' that exceed machine integer range, when they can be implemented as if they were infinity. * split -n now accepts piped input even when not in round-robin mode, by first copying input to a temporary file to determine its size. * wc now accepts the --total={auto,never,always,only} option to give explicit control over when the total is output. * 'cp --reflink=always A B' no longer leaves behind a newly created empty file B merely because copy-on-write clones are not supported. * 'cp -n' and 'mv -n' now exit with nonzero status if they skip their action because the destination exists, and likewise for 'cp -i', 'ln -i', and 'mv -i' when the user declines. (POSIX specifies this for 'cp -i' and 'mv -i'.)Dirk Mueller2023-03-21 21:33:58 +00:00
073dfd0e93- update to 9.2: * 'comm --output-delimiter="" --total' now delimits columns in the total line with the NUL character, consistent with NUL column delimiters in the rest of the output. Previously no delimiters were used for the total line in this case. * 'cp -p' no longer has a security hole when cloning into a dangling symbolic link on macOS 10.12 and later. - drop gnulib-simple-backup-fix.patch (upstream) - drop coreutils-tests-workaround-make-fdleak.patch (obsolete)Dirk Mueller2023-03-21 21:00:25 +00:00
03bb9aece5characters (brc#2112870) - extend psuffix handling to be quilt(1) compatibleDirk Mueller2022-08-02 09:18:33 +00:00
ec54266548- refresh coreutils-i18n.patch to prevent unexpand from failing on control characters - extend psuffix handling to be quilt(1) compatibleDirk Mueller2022-08-01 21:17:24 +00:00
e526ac1db9Accepting request 972387 from home:berny:branches:Base:SystemDirk Mueller2022-04-25 08:23:28 +00:00
39d32b358a- update to 9.1: * chmod -R no longer exits with error status when encountering symlinks. All files would be processed correctly, but the exit status was incorrect. * If 'cp -Z A B' checks B's status and some other process then removes B, cp no longer creates B with a too-generous SELinux security context before adjusting it to the correct value. * 'cp --preserve=ownership A B' no longer ignores the umask when creating B. Also, 'cp --preserve-xattr A B' is less likely to temporarily chmod u+w B. * 'id xyz' now uses the name 'xyz' to determine groups, instead of xyz's uid. * 'ls -v' and 'sort -V' no longer mishandle corner cases like "a..a" vs "a.+" or lines containing NULs. Their behavior now matches the documentation for file names like ".m4" that consist entirely of an extension, and the documentation has been clarified for unusual cases. * 'mv -T --backup=numbered A B/' no longer miscalculates the backup number for B when A is a directory, possibly inflooping. * cat now uses the copy_file_range syscall if available, when doing simple copies between regular files. This may be more efficient, by avoiding user space copies, and possibly employing copy offloading or reflinking. * chown and chroot now warn about usages like "chown root.root f", which have the nonstandard and long-obsolete "." separator that causes problems on platforms where user names contain ".". Applications should use ":" instead of ".". * cksum no longer allows abbreviated algorithm names, so that forward compatibility and robustness is improved. * date +'%-N' now suppresses excess trailing digits, instead of always padding them with zeros to 9 digits. It uses clock_getres and clock_gettime to infer the clock resolution. * dd conv=fsync now synchronizes output even after a write error, and similarly for dd conv=fdatasync. * dd now counts bytes instead of blocks if a block count ends in "B".Dirk Mueller2022-04-21 21:12:05 +00:00