forked from Morganamilo/paru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.rs
106 lines (105 loc) · 6.42 KB
/
help.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
use crate::printtr;
pub fn help() {
printtr!("Usage:");
printtr!(" paru");
printtr!(" paru <operation> [...]");
printtr!(" paru <package(s)>");
println!();
printtr!("Pacman operations:");
printtr!(" paru {-h --help}");
printtr!(" paru {-V --version}");
printtr!(" paru {-D --database} <options> <package(s)>");
printtr!(" paru {-F --files} [options] [package(s)]");
printtr!(" paru {-Q --query} [options] [package(s)]");
printtr!(" paru {-R --remove} [options] <package(s)>");
printtr!(" paru {-S --sync} [options] [package(s)]");
printtr!(" paru {-T --deptest} [options] [package(s)]");
printtr!(" paru {-U --upgrade} [options] [file(s)]");
println!();
printtr!("New operations:");
printtr!(" paru {-P --show} [options]");
printtr!(" paru {-G --getpkgbuild} [package(s)]");
printtr!(" paru {-B --build} [dir(s)]");
println!();
printtr!("If no arguments are provided 'paru -Syu' will be performed");
println!();
printtr!("Options without operation:");
printtr!(" -c --clean Remove unneeded dependencies");
printtr!(" --gendb Generates development package DB used for updating");
println!();
printtr!("New options:");
printtr!(" --repo Assume targets are from the repositories");
printtr!(" --pkgbuilds Assume targets are from pkgbuild repositories");
printtr!(" -a --aur Assume targets are from the AUR");
printtr!(" --mode <mode> Sets where paru looks for targets");
printtr!(
" --interactive Enable interactive package selection for -S, -R, -Ss and -Qs"
);
printtr!(" --aururl <url> Set an alternative AUR URL");
printtr!(" --aurrpcur <url> Set an alternative URL for the AUR /rpc endpoint");
printtr!(" --clonedir <dir> Directory used to download and run PKGBUILDs");
println!();
printtr!(" --makepkg <file> makepkg command to use");
printtr!(" --mflags <flags> Pass arguments to makepkg");
printtr!(" --pacman <file> pacman command to use");
printtr!(" --git <file> git command to use");
printtr!(" --gitflags <flags> Pass arguments to git");
printtr!(" --sudo <file> sudo command to use");
printtr!(" --sudoflags <flags> Pass arguments to sudo");
printtr!(" --pkgctl <file> pkgctl command to use");
printtr!(" --bat <file> bat command to use");
printtr!(" --batflags <flags> Pass arguments to bat");
printtr!(" --gpg <file> gpg command to use");
printtr!(" --gpgflags <flags> Pass arguments to gpg");
printtr!(" --fm <file> File manager to use for PKGBUILD review");
printtr!(" --fmflags <flags> Pass arguments to file manager");
println!();
printtr!(" --completioninterval <n> Time in days to refresh completion cache");
printtr!(" --sortby <field> Sort AUR results by a specific field during search");
printtr!(" --searchby <field> Search for packages using a specified field");
printtr!(" --limit <limit> Limits the number of items returned in a search");
printtr!(" -x --regex Enable regex for aur search");
println!();
printtr!(" --skipreview Skip the review process");
printtr!(" --review Don't skip the review process");
printtr!(" --[no]upgrademenu Show interactive menu to skip upgrades");
printtr!(" --[no]removemake Remove makedepends after install");
printtr!(" --[no]cleanafter Remove package sources after install");
printtr!(" --[no]rebuild Always build target packages");
printtr!(" --[no]redownload Always download PKGBUILDs of targets");
println!();
printtr!(" --[no]pgpfetch Prompt to import PGP keys from PKGBUILDs");
printtr!(" --[no]useask Automatically resolve conflicts using pacman's ask flag");
printtr!(" --[no]savechanges Commit changes to pkgbuilds made during review");
printtr!(" --[no]newsonupgrade Print new news during sysupgrade");
printtr!(" --[no]combinedupgrade Refresh then perform the repo and AUR upgrade together");
printtr!(" --[no]batchinstall Build multiple AUR packages then install them together");
printtr!(" --[no]provides Look for matching providers when searching for packages");
printtr!(" --[no]devel Check development packages during sysupgrade");
printtr!(" --[no]installdebug Also install debug packages when a package provides them");
printtr!(" --[no]sudoloop Loop sudo calls in the background to avoid timeout");
printtr!(" --[no]chroot Build packages in a chroot");
printtr!(" --[no]failfast Exit as soon as building an AUR package fails");
printtr!(" --[no]keepsrc Keep src/ and pkg/ dirs after building packages");
printtr!(" --[no]sign Sign packages with gpg");
printtr!(" --[no]signdb Sign databases with gpg");
printtr!(" --[no]localrepo Build packages into a local repo");
printtr!(" --nocheck Don't resolve checkdepends or run the check function");
printtr!(" --develsuffixes Suffixes used to decide if a package is a devel package");
printtr!(" --ignoredevel Ignore devel upgrades for specified packages");
printtr!(" --bottomup Shows AUR's packages first and then repository's");
printtr!(" --topdown Shows repository's packages first and then AUR's");
println!();
printtr!("show specific options:");
printtr!(" -c --complete Used for completions");
printtr!(" -s --stats Display system package statistics");
printtr!(" -w --news Print arch news");
println!();
printtr!("getpkgbuild specific options:");
printtr!(" -p --print Print pkgbuild to stdout");
printtr!(" -c --comments Print AUR comments for pkgbuild");
printtr!(" -s --ssh Clone package using SSH");
println!();
printtr!("Build specific options:");
printtr!(" -i --install Install package as well as building");
}