Commit graph

12393 commits

Author SHA1 Message Date
Sylvestre Ledru f0520b71c1 pr: relax some error messages
Should make tests/pr/pr-tests.pl pass
2024-03-16 12:28:09 +01:00
Daniel Hofstetter e450ce8af2
Merge pull request #6072 from zhitkoff/cut-delim
cut: refactor delimiters OsString handling
2024-03-15 16:33:42 +01:00
Sylvestre Ledru ffc476d700
Merge pull request #6077 from cakebaker/fix_imported_redundantly_warnings
Fix two "item x is imported redundantly" warnings
2024-03-15 15:37:52 +01:00
Daniel Hofstetter 6d8b21da80 Fix two "item x is imported redundantly" warnings 2024-03-15 14:53:00 +01:00
Sylvestre Ledru f8e5296aba
Merge pull request #6068 from cakebaker/bump_redox_syscall
Bump redox_syscall from 0.4 to 0.5
2024-03-13 18:23:57 +01:00
Sylvestre Ledru 62a3fb8d3f
Merge pull request #5909 from cakebaker/split_fix_error_message_if_file_doesnt_exist
split: fix error message shown if file doesn't exist
2024-03-13 17:41:56 +01:00
Daniel Hofstetter ada4f48e04 Bump redox_syscall from 0.4 to 0.5 2024-03-13 17:41:18 +01:00
Sylvestre Ledru 65fb81bb8b
Merge pull request #6066 from cakebaker/deny_toml_add_redox_syscall
deny.toml: add redox_syscall to skip list
2024-03-13 16:46:54 +01:00
Daniel Hofstetter fd78d8c3b7 deny.toml: add redox_syscall to skip list 2024-03-13 15:17:07 +01:00
Sylvestre Ledru f89cfe2a5e
Merge pull request #6061 from cre4ture/fix/flaky_timeout_kill_subprocess
Fix/flaky timeout kill subprocess
2024-03-13 11:13:09 +01:00
Sylvestre Ledru eaa8458045
Merge pull request #6065 from cakebaker/deny_toml_remove_deprecated_keys
deny.toml: remove deprecated keys, opt-in to v2
2024-03-13 11:12:49 +01:00
Daniel Hofstetter 08b75589f5 deny.toml: remove deprecated keys, opt-in to v2 2024-03-13 09:35:11 +01:00
Daniel Hofstetter e3f9c80a1e
Merge pull request #6059 from zhitkoff/tty-bstr
tty: fix for Ctrl-D when stdin is a terminal
2024-03-13 08:33:43 +01:00
Sylvestre Ledru 5d1b16e1cd
Merge pull request #6064 from cakebaker/sort_fix_6062
sort: fix incorrectly placed "}" in test
2024-03-13 08:21:54 +01:00
Daniel Hofstetter 09adf77503 sort: fix incorrectly placed "}" in test 2024-03-13 07:19:42 +01:00
zhitkoff 4f9497f266 cut: refactor delimiters osstring 2024-03-12 18:02:43 -04:00
Ulrich Hornung 7e22f99913
remove second sh process to have timeout waiting for the right process 2024-03-12 19:08:51 +01:00
Ulrich Hornung a2a375d0dd
using other than TERM/KILL signal to see if --preserve-status works 2024-03-12 19:05:51 +01:00
Ulrich Hornung 38b15c9736
wait for child to stop after sending signal 2024-03-12 19:04:46 +01:00
Ulrich Hornung abfd000367
avoid sending twice same signal to child process 2024-03-12 19:04:15 +01:00
zhitkoff 8f3c557af1 tty: when stdin is a terminal 2024-03-12 10:39:25 -04:00
Sylvestre Ledru 1725479c06
hashsum: also escape/unescape files with checks (#5868)
* hashsum: make tag conflicts with --text and --check

* hashsum: change the case in one of the gnu test

* build-gnu.sh: use symlink instead of copy

Plus: it won't cp new md5

* hashsum: also escape/unescape files with checks

Should fix tests/cksum/md5sum-bsd.sh

* improve the variable name

Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>

* Improve test

Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>

* Improve test

Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>

---------

Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
2024-03-12 14:56:27 +01:00
Daniel Hofstetter c619dbc99c split: fix error msg shown if file doesn't exist 2024-03-12 14:28:25 +01:00
Sylvestre Ledru cc1142cee6
Merge pull request #6057 from uutils/renovate/blake3-1.x
chore(deps): update rust crate blake3 to 1.5.1
2024-03-12 11:14:38 +01:00
renovate[bot] 3515cd44e7
chore(deps): update rust crate blake3 to 1.5.1 2024-03-12 09:35:22 +00:00
Sylvestre Ledru 9de409de97
Merge pull request #6055 from cakebaker/bump_nix
Bump nix from 0.27 to 0.28 & fix issues due to API changes
2024-03-12 10:33:57 +01:00
Daniel Hofstetter 14ac1e160f cat: adapt to type change of unistd::write()
nix 0.28 changed "write(fd: RawFd, buf: &[u8]) -> Result<usize>" to "write<Fd: AsFd>(fd: Fd, buf: &[u8]) -> Result<usize>"
2024-03-12 08:31:15 +01:00
Daniel Hofstetter 6fd37da3e2 stty: remove ofill output flag
flag was removed from nix::sys::termios::OutputFlags in nix 0.28
2024-03-12 08:31:15 +01:00
Daniel Hofstetter 1413054c53 tty: unistd::ttyname takes AsFd instead of RawFd
change introduced by nix 0.28
2024-03-12 08:31:15 +01:00
Daniel Hofstetter 15cb0242ea uucore/pipes: adapt to new return type of nix fn
nix 0.28 changed the return type of unistd::pipe() from Result<(RawFd, RawFd), Error> to Result<(OwnedFd, OwnedFd), Error>
2024-03-12 08:31:15 +01:00
Daniel Hofstetter ae7bc7d2e3 Bump nix from 0.27 to 0.28 2024-03-12 08:31:15 +01:00
Sylvestre Ledru ffb70592ec
Merge pull request #5851 from cre4ture/fix/install_invalid_link_at_destination
Fix install: invalid link at destination
2024-03-12 08:02:18 +01:00
Ulrich Hornung 7cd754eb1f
Fix install: invalid link at destination
also remove some FixMEs for FreeBsd
2024-03-11 23:31:26 +01:00
Sylvestre Ledru 93b1abff39
Merge pull request #6036 from cj-zoltan-kiss/zoltankiss/globfix
parser: if closing square bracket not found, stop looking for it again
2024-03-11 19:51:18 +01:00
Zoltan Kiss be24742282 parser: if closing square bracket not found, stop looking for it again
This solves #5584, where the fuzzing would take hours without this.
2024-03-11 17:24:01 +01:00
Daniel Hofstetter 0da5a7885b
Merge pull request #6056 from sylvestre/refactor-copy-function
cp: Split the copy_file function a bit
2024-03-11 15:49:27 +01:00
Sylvestre Ledru df585edff9 cp: Split the copy_file function a bit 2024-03-11 14:55:22 +01:00
Sylvestre Ledru 89b326fe1e
cp: improve the support of --attributes-only (#6051)
* cp: improve the support of --attributes-only

* remove useless comments

Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>

---------

Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
2024-03-11 08:35:27 +01:00
Sylvestre Ledru 80702d5391
Merge pull request #6014 from BenWiederhake/dev-shuf-range-off-by-one
shuf: Fix off-by-one errors in range handling
2024-03-10 22:44:12 +01:00
Sylvestre Ledru fe0c814bd5
Merge pull request #6012 from BenWiederhake/dev-tr-stream
tr: Stream output instead of buffering
2024-03-10 22:38:13 +01:00
Sylvestre Ledru 2e8f0e501c
Merge pull request #6039 from BenWiederhake/dev-chcon-repeat-args
chcon: Handle repeated flags and overrides between --no-XXX and --XXX
2024-03-10 22:36:57 +01:00
Yury Zhytkou 156d3f7ee7
cut: allow non utf8 characters for delimiters (#6037) 2024-03-10 22:36:17 +01:00
Sylvestre Ledru da9682da7a
Merge pull request #6054 from cakebaker/pr_chgrp_fix_warnings
pr/chgrp: fix warnings
2024-03-10 22:34:49 +01:00
Daniel Hofstetter 0579233b2d chgrp: fix clippy warning 2024-03-10 13:56:31 +01:00
Daniel Hofstetter 9054a24fb7 pr: fix deprecation warnings & remove comment 2024-03-10 13:55:49 +01:00
Daniel Hofstetter 1eaa87cd62
Merge pull request #6052 from sylvestre/clippy43
Fix clippy warnings
2024-03-10 13:31:08 +01:00
Terts Diepraam a578fe9e55
Merge pull request #6050 from matrixhead/main
dd : treat arg as bytes if it contains a 'B'
2024-03-10 12:52:29 +01:00
Yash Thakur d11d595fda
touch: Respect -h when getting metadata (#5951)
* Add tests that stat symlinks

* Check follow first in stat

* Don't run tests on FreeBSD

It would be possible to get them to run on FreeBSD by avoiding
get_symlink_times, but the behavior we're testing is not
platform-specific, so it's fine to not test it on FreeBSD.

---------

Co-authored-by: Sylvestre Ledru <sylvestre@debian.org>
2024-03-10 08:05:59 +01:00
Sylvestre Ledru 8c7940260b
Merge pull request #6047 from cakebaker/bump_chrono
Bump chrono to 0.4.35 & replace usage of deprecated functions
2024-03-10 07:51:50 +01:00
Ben Wiederhake 8be5f7a89d chcon: allow repeated flags and arguments 2024-03-09 22:52:55 +01:00