Skip to content

Commit 61a1874

Browse files
oech3oech3
authored andcommitted
Merge branch 'main' into multicall-gtest
2 parents aabbcbe + ceeacf4 commit 61a1874

File tree

13 files changed

+393
-114
lines changed

13 files changed

+393
-114
lines changed

.github/workflows/GnuTests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
run: |
8181
## Install dependencies
8282
sudo apt-get update
83-
sudo apt-get install -y autoconf autopoint bison texinfo gperf gcc g++ gdb python3-pyinotify jq valgrind libexpect-perl libacl1-dev libattr1-dev libcap-dev libselinux1-dev attr quilt
83+
sudo apt-get install -y autopoint gperf gdb python3-pyinotify valgrind libexpect-perl libacl1-dev libattr1-dev libcap-dev libselinux1-dev attr quilt
8484
- name: Add various locales
8585
shell: bash
8686
run: |
@@ -235,7 +235,7 @@ jobs:
235235
- name: Install dependencies in VM
236236
run: |
237237
lima sudo dnf -y update
238-
lima sudo dnf -y install git autoconf autopoint bison texinfo gperf gcc g++ gdb jq libacl-devel libattr-devel libcap-devel libselinux-devel attr rustup clang-devel texinfo-tex wget automake patch quilt
238+
lima sudo dnf -y install git autoconf autopoint bison texinfo gperf gcc gdb jq libacl-devel libattr-devel libcap-devel libselinux-devel attr rustup clang-devel texinfo-tex wget automake patch quilt
239239
lima rustup-init -y --default-toolchain stable
240240
- name: Copy the sources to VM
241241
run: |

.github/workflows/freebsd.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ jobs:
160160
WORKSPACE="${WORKSPACE_PARENT}/${REPO_NAME}"
161161
#
162162
pw adduser -n ${TEST_USER} -d /root/ -g wheel -c "Coreutils user to build" -w random
163-
# chown -R ${TEST_USER}:wheel /root/ "${WORKSPACE_PARENT}"/
164163
chown -R ${TEST_USER}:wheel /root/ "${WORKSPACE_PARENT}"/
165164
whoami
166165
#

.github/workflows/openbsd.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ jobs:
147147
useradd -m -G wheel ${TEST_USER}
148148
chown -R ${TEST_USER}:wheel /root/ "${WORKSPACE_PARENT}"/
149149
whoami
150+
# Add fake host for reverse DNS lookup (needed for hostname test)
151+
printf "10.0.2.15\topenbsd.my.domain openbsd\n" >> /etc/hosts
150152
#
151153
# Further work needs to be done in a sudo as we are changing users
152154
sudo -i -u ${TEST_USER} sh << EOF

.vscode/cspell.dictionaries/jargon.wordlist.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ pseudoprimes
120120
quantiles
121121
readonly
122122
reparse
123+
rposition
123124
seedable
124125
semver
125126
semiprime

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uu/fold/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ path = "src/fold.rs"
2121
clap = { workspace = true }
2222
uucore = { workspace = true }
2323
fluent = { workspace = true }
24+
unicode-width = { workspace = true }
2425

2526
[dev-dependencies]
2627
divan = { workspace = true }

src/uu/fold/locales/en-US.ftl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ fold-about = Writes each file (or standard input if no files are given)
22
to standard output whilst breaking long lines
33
fold-usage = fold [OPTION]... [FILE]...
44
fold-bytes-help = count using bytes rather than columns (meaning control characters such as newline are not treated specially)
5+
fold-characters-help = count using character positions rather than display columns
56
fold-spaces-help = break lines at word boundaries rather than a hard cut-off
67
fold-width-help = set WIDTH as the maximum line width rather than 80
78
fold-error-illegal-width = illegal width value

src/uu/fold/locales/fr-FR.ftl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
fold-about = Écrit chaque fichier (ou l'entrée standard si aucun fichier n'est donné) sur la sortie standard en coupant les lignes trop longues
22
fold-usage = fold [OPTION]... [FICHIER]...
33
fold-bytes-help = compter en octets plutôt qu'en colonnes (les caractères de contrôle comme retour chariot ne sont pas traités spécialement)
4+
fold-characters-help = compter en caractères plutôt qu'en colonnes d'affichage
45
fold-spaces-help = couper les lignes aux limites de mots plutôt qu'à une largeur fixe
56
fold-width-help = définir WIDTH comme largeur de ligne maximale au lieu de 80
67
fold-error-illegal-width = valeur de largeur illégale

0 commit comments

Comments
 (0)