diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-01-23 10:49:42 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2021-01-23 12:07:46 +0000 |
commit | b63b9baad8f41274e844c11bceb38efd20dfb3fe (patch) | |
tree | 213dc0bbe3098d15812050d90745ca26c7bcbf9c /etc | |
parent | 7021b880e98abfd0f0805d7e412f62e895201cca (diff) | |
download | midipix_build-b63b9baad8f41274e844c11bceb38efd20dfb3fe.tar.bz2 midipix_build-b63b9baad8f41274e844c11bceb38efd20dfb3fe.tar.xz |
Implements setting up & fetching from mirrors.
etc/pkgtool.usage: updated.
etc/README.md: updated.
pkgtool.sh:pkgtoolp_mirror{,_fetch}(): initial implementation.
subr/pkg_fetch_download.subr: default to empty ${PKG_MIRRORS}.
subr/pkg_fetch_download.subr: factor out ${ARG_FETCH_FORCE} check and ${BUILD_DLCACHEDIR}.
subr/pkgtool_init.subr: updated.
subr.rtl/rtl_fetch.subr:rtl_fetch_urls_{git,wget}(): factor out ${ARG_FETCH_FORCE} check and ${BUILD_DLCACHEDIR}; minor cleanup.
subr.rtl/rtl_fetch.subr:rtl_fetch_url_wget(): return vs. exit on fatal failure.
subr.rtl/rtl_fetch.subr:rtlp_fetch_url_git(): copy only if ${_cache_dname} != ${_tgtdir}.
subr.rtl/rtl_fetch.subr:rtlp_fetch_url_git(): return if unable to git-clone(1).
subr.rtl/rtl_fetch.subr:{rtlp_fetch_url_git,rtl_fetch_urls_git}(): implement Git repository mirroring.
vars/{gcc,python[23]{,_host}}.vars: updated.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/README.md | 5 | ||||
-rw-r--r-- | etc/pkgtool.usage | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/etc/README.md b/etc/README.md index 5e171155..98760ee1 100644 --- a/etc/README.md +++ b/etc/README.md @@ -379,12 +379,13 @@ for a list of package build steps and how they are overriden. ## 3.5. ``pkgtool.sh`` ``` -usage: ./pkgtool.sh [-a nt32|nt64] [-b debug|release] [-i|-r|-s|-t] - [<variable name>=<variable override>[ ..]] name +usage: ./pkgtool.sh [-a nt32|nt64] [-b debug|release] [-i|-m <dname>|-r|-s|-t] + [<variable name>=<variable override>[ ..]] name -a nt32|nt64 Selects 32-bit or 64-bit architecture; defaults to nt64. -b debug|release Selects debug or release build kind; defaults to debug. -i List package variables and dependencies of single named package. + -m <dname> Setup package archives mirror in <dname> -r List reverse dependencies of single named package. -s Enter interactive package build shell environment for single named package; requires a package dump file. If the package diff --git a/etc/pkgtool.usage b/etc/pkgtool.usage index 9f665d37..3031180d 100644 --- a/etc/pkgtool.usage +++ b/etc/pkgtool.usage @@ -1,9 +1,10 @@ -usage: ./pkgtool.sh [-a nt32|nt64] [-b debug|release] [-i|-r|-s|-t] - [<variable name>=<variable override>[ ..]] name +usage: ./pkgtool.sh [-a nt32|nt64] [-b debug|release] [-i|-m <dname>|-r|-s|-t] + [<variable name>=<variable override>[ ..]] name -a nt32|nt64 Selects 32-bit or 64-bit architecture; defaults to nt64. -b debug|release Selects debug or release build kind; defaults to debug. -i List package variables and dependencies of single named package. + -m <dname> Setup package archives mirror in <dname> -r List reverse dependencies of single named package. -s Enter interactive package build shell environment for single named package; requires a package dump file. If the package |