Skip to content

Commit 79b37ed

Browse files
committed
merge uucp utils
1 parent 0982172 commit 79b37ed

File tree

12 files changed

+2236
-23
lines changed

12 files changed

+2236
-23
lines changed

Cargo.lock

Lines changed: 32 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ members = [
2626
"text",
2727
"tree",
2828
"users",
29+
"uucp",
2930
"xform",
3031
"i18n"
3132
]

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ Because it is a FAQ, the major differences between this project and uutils are:
115115
- [x] unexpand
116116
- [x] uniq
117117
- [x] unlink
118+
- [x] uucp (UUCP)
119+
- [x] uustat (UUCP)
120+
- [x] uux (UUCP)
118121
- [x] wc
119122
- [x] what (SCCS)
120123
- [x] zcat (compress cat.)
@@ -131,6 +134,7 @@ Because it is a FAQ, the major differences between this project and uutils are:
131134
- [x] ipcrm (IPC)
132135
- [x] ln
133136
- [x] logname
137+
- [x] man
134138
- [x] mesg
135139
- [x] mkfifo
136140
- [x] newgrp
@@ -177,12 +181,12 @@ Because it is a FAQ, the major differences between this project and uutils are:
177181
- [ ] crontab (cron cat.)
178182

179183
### Development category
180-
- [ ] c17 (Development) -- Volunteer starting point at https://github.com/rustcoreutils/posixutils-rs/tree/c99
184+
- [ ] c17 (Development)
181185
- [ ] cflow (Development)
182186
- [ ] ctags (Development)
183187
- [ ] cxref (Development)
184-
- [ ] lex (Development) -- Volunteer starting point at https://github.com/rustcoreutils/posixutils-rs/tree/lex
185-
- [ ] yacc (Development) -- Volunteer starting point at https://github.com/rustcoreutils/posixutils-rs/tree/yacc
188+
- [ ] lex (Development)
189+
- [ ] yacc (Development)
186190

187191
### SCCS category
188192
- [ ] admin (SCCS)
@@ -203,20 +207,14 @@ Because it is a FAQ, the major differences between this project and uutils are:
203207
- [ ] ngettext (i18n)
204208
- [ ] xgettext (i18n)
205209

206-
### UUCP category
207-
- [ ] uucp (UUCP)
208-
- [ ] uustat (UUCP)
209-
- [ ] uux (UUCP)
210-
211210
### Editors category
212-
- [ ] ed (Editors) -- Volunteer starting point at https://github.com/rustcoreutils/posixutils-rs/tree/ed
211+
- [ ] ed (Editors)
213212
- [ ] ex (Editors)
214213
- [ ] vi (Editors)
215214

216215
### Misc. category
217216
- [ ] lp
218217
- [ ] mailx
219-
- [ ] man
220218
- [ ] patch
221219
- [ ] pax
222220

uucp/Cargo.toml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[package]
2+
name = "posixutils-uucp"
3+
version = "0.2.2"
4+
authors = ["Jeff Garzik"]
5+
repository.workspace = true
6+
license.workspace = true
7+
edition.workspace = true
8+
rust-version.workspace = true
9+
10+
[dependencies]
11+
plib = { path = "../plib" }
12+
clap.workspace = true
13+
gettext-rs.workspace = true
14+
15+
[dev-dependencies]
16+
tempfile = "3.10"
17+
18+
[lints]
19+
workspace = true
20+
21+
[[bin]]
22+
name = "uucp"
23+
path = "./uucp.rs"
24+
25+
[[bin]]
26+
name = "uux"
27+
path = "./uux.rs"
28+
29+
[[bin]]
30+
name = "uustat"
31+
path = "./uustat.rs"
32+

0 commit comments

Comments
 (0)