diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-05-10 15:26:25 +0100 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-05-10 15:26:25 +0100 |
commit | 3e5303fb9ba19addfcb672c1f3aa78d02efb7ebc (patch) | |
tree | 448feaab5f16dcf1c450efebde18b0f56c3b0ebf /etc | |
parent | e1a4743914675267e94b3510bea6d8c8c357a32e (diff) | |
download | midipix_build-3e5303fb9ba19addfcb672c1f3aa78d02efb7ebc.tar.bz2 midipix_build-3e5303fb9ba19addfcb672c1f3aa78d02efb7ebc.tar.xz |
Implements {fetch,configure,build,install}_clean.
build.sh:buildp_dispatch_fail_pkg(): print NL when writing to ${DEFAULT_BUILD_LAST_FAILED_PKG_FNAME}.
etc/{README.md,build.usage}: updated.
midipix.env: updated.
subr.rtl/rtl_complex.subr:rtl_sunset(): initial implementation.
subr.rtl/rtl_list.subr:rtl_l{filter[23],length2,lift[23]}(): initial implementation.
subr.rtl/rtl_state.subr:rtl_state_test(): take ${_build_steps} vs. ${_build_step}.
subr/{build_init,ex_pkg_restart}.subr: splits extended restart syntax processing logic.
subr/ex_pkg_exec.subr:ex_pkg_exec(): filter "start".
subr/pkg_{build,configure,fetch,install}_clean.subr: initial implementation.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/README.md | 20 | ||||
-rw-r--r-- | etc/build.usage | 14 |
2 files changed, 17 insertions, 17 deletions
diff --git a/etc/README.md b/etc/README.md index 582a5da6..be8c54f6 100644 --- a/etc/README.md +++ b/etc/README.md @@ -248,7 +248,7 @@ Rebuild entire build groups including or excluding group dependencies, respectiv ``` usage: ./build.sh [-a nt32|nt64] [-b debug|release] [-C dir[,..]] [-D kind[,..]] - [-F ipv4|ipv6|offline] [-h] [-p jobs] [-P] [-r ALL|LAST] + [-F ipv4|ipv6|offline] [-h|--help| [-p jobs] [-P] [-r ALL|LAST] [-r [*[*[*]]]name[,..][:[^|<|<=|>|>=]step,..]] [-R] [-v[v[v[v]]]] [--as-needed] [--debug-minipix] [--dump-on-abort] [--reset-state] [--roar] [[=]<group>|<variable name>=<variable override>[ ..]] @@ -265,7 +265,7 @@ usage: ./build.sh [-a nt32|nt64] [-b debug|release] [-C dir[,..]] [-D kind[, Force IPv4 (ipv4) or IPv6 (ipv6) when downloading package archives and/or Git repositories or don't download either at all (offline.) - -h Show this screen. + -h|--help Show short/full help screen, respectively. -p jobs Enables parallelisation at group-level, whenever applicable. -P The maximum count of jobs defaults to the number of logical processors on the host system divided by two (2.) @@ -292,14 +292,14 @@ usage: ./build.sh [-a nt32|nt64] [-b debug|release] [-C dir[,..]] [-D kind[, with, resp. Currently defined build steps are: - fetch_download, fetch_extract, configure_patch_pre, - configure_autotools, configure_patch, configure, build, - install_subdirs, install_make, install_files, install_libs, - install, install_rpm, and clean. - - Additionally, the following shorthand aliases and pseudo-steps are provided: - @fetch, @configure, @build, @install, and @clean, and - start and finish. + fetch_clean, fetch_download, fetch_extract, configure_clean, + configure_patch_pre, configure_autotools, configure_patch, + configure, build_clean, build, install_clean, install_subdirs, + install_make, install_files, install_libs, install, install_rpm, + and clean. + + Additionally, the following virtual steps are provided: + @fetch, @configure, @build, @install, @clean, and finish. -R Ignore build failures, skip printing package logs, and continue building (relaxed mode.) diff --git a/etc/build.usage b/etc/build.usage index aeb775b3..8ba2445c 100644 --- a/etc/build.usage +++ b/etc/build.usage @@ -43,14 +43,14 @@ usage: ./build.sh [-a nt32|nt64] [-b debug|release] [-C dir[,..]] [-D kind[, with, resp. Currently defined build steps are: - fetch_download, fetch_extract, configure_patch_pre, - configure_autotools, configure_patch, configure, build, - install_subdirs, install_make, install_files, install_libs, - install, install_rpm, and clean. + fetch_clean, fetch_download, fetch_extract, configure_clean, + configure_patch_pre, configure_autotools, configure_patch, + configure, build_clean, build, install_clean, install_subdirs, + install_make, install_files, install_libs, install, install_rpm, + and clean. - Additionally, the following shorthand aliases and pseudo-steps are provided: - @fetch, @configure, @build, @install, and @clean, and - start and finish. + Additionally, the following virtual steps are provided: + @fetch, @configure, @build, @install, @clean, and finish. -R Ignore build failures, skip printing package logs, and continue building (relaxed mode.) |