diff options
author | Timo Teräs <timo.teras@iki.fi> | 2020-04-24 11:49:14 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2020-05-06 13:05:19 +0300 |
commit | 5258b484bf13441d3d5c199e3c8d70cf2a75b3ca (patch) | |
tree | 6c979789a3b26eab2479224be5f6919e49841019 /src/apk_applet.h | |
parent | d61c009f7a7ba9c99797855d8cd4e0a503c2fda5 (diff) | |
download | apk-tools-5258b484bf13441d3d5c199e3c8d70cf2a75b3ca.tar.gz apk-tools-5258b484bf13441d3d5c199e3c8d70cf2a75b3ca.tar.bz2 apk-tools-5258b484bf13441d3d5c199e3c8d70cf2a75b3ca.tar.xz apk-tools-5258b484bf13441d3d5c199e3c8d70cf2a75b3ca.zip |
add script to autogenerate help from man pages
This creates main help like:
--
usage: apk [<OPTIONS>...] COMMAND [<ARGUMENTS>...]
Package installation and removal:
add Add packages to WORLD and commit changes
del Remove packages from WORLD and commit changes
System maintenance:
fix Check WORLD against the system and ensure consistency
update Update repository indexes
upgrade Install upgrades available from repositories
cache Commands related to the management of an offline package cache
Querying package information:
info Give detailed information about packages or repositories
list List packages matching a pattern or other criteria
dot Generate graphviz graphs
policy Show repository policy for packages
Repository maintenance:
index Create repository index file from packages
fetch Download packages from global repositories to a local directory
manifest Show checksums of package contents
verify Verify package integrity and signature
Miscellaneous:
audit Audit directories for changes
stats Show statistics about repositories and installations
version Compare package versions or perform tests on version strings
This apk has coffee making abilities.
--
And applet specific help like:
--
usage: apk add [<OPTIONS>...] PACKAGES...
Description:
apk add adds the requested packages to WORLD and installs (or upgrades)
them if not already present, ensuring all dependencies are met.
Options:
--initdb Initialize a new package database
-l, --latest Disables normal heuristics for choosing which repository to install a
-u, --upgrade When adding packages which are already installed, upgrade them rather
-t, --virtual NAME
Instead of adding the specified packages to WORLD, create a new
--no-chown Do not change file owner or group
--
Diffstat (limited to 'src/apk_applet.h')
-rw-r--r-- | src/apk_applet.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/apk_applet.h b/src/apk_applet.h index 1c637a6..390ec59 100644 --- a/src/apk_applet.h +++ b/src/apk_applet.h @@ -17,16 +17,10 @@ #include "apk_defines.h" #include "apk_database.h" -#define APK_COMMAND_GROUP_INSTALL 0x0001 -#define APK_COMMAND_GROUP_SYSTEM 0x0002 -#define APK_COMMAND_GROUP_QUERY 0x0004 -#define APK_COMMAND_GROUP_REPO 0x0008 - struct apk_option { int val; const char *name; int has_arg; - const char *arg_name; }; struct apk_option_group { @@ -42,10 +36,9 @@ struct apk_applet { struct list_head node; const char *name; - const char *arguments; const struct apk_option_group *optgroups[4]; - unsigned int open_flags, forced_flags, forced_force, command_groups; + unsigned int open_flags, forced_flags, forced_force; int context_size; int (*main)(void *ctx, struct apk_database *db, struct apk_string_array *args); @@ -53,6 +46,7 @@ struct apk_applet { extern const struct apk_option_group optgroup_global, optgroup_commit; +void apk_help(struct apk_applet *applet); void apk_applet_register(struct apk_applet *); typedef void (*apk_init_func_t)(void); |