summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg.subr
diff options
context:
space:
mode:
Diffstat (limited to 'subr/pkg.subr')
-rw-r--r--subr/pkg.subr58
1 files changed, 10 insertions, 48 deletions
diff --git a/subr/pkg.subr b/subr/pkg.subr
index da36f35e..2130feb5 100644
--- a/subr/pkg.subr
+++ b/subr/pkg.subr
@@ -3,59 +3,20 @@
# See warning at the top of build.vars.
#
-# N.B. URLs ($1) may contain `?' or '&' characters.
-fetch() {
- _f_url="${1}"; _f_sha256sum_src="${2}";
- _f_url_dst="${DLCACHEDIR}/$(basename "${_f_url}")";
- if [ ${ARG_OFFLINE:-0} -eq 1 ]\
- || [ -e ${_f_url_dst}.fetched ]; then
- unset _f_url _f_sha256sum_src _f_url_dst;
- return 0;
- else
- wget ${WGET_ARGS} -c -O ${_f_url_dst} "${_f_url}";
- fi;
- if [ -n "${_f_sha256sum_src}" ]; then
- set -- $(openssl dgst -sha256 ${_f_url_dst}); shift $((${#}-1));
- if [ "${_f_sha256sum_dst:=${1}}" != "${_f_sha256sum_src}" ]; then
- if [ ${ARG_IGNORE_SHA256SUMS:-0} -eq 0 ]; then
- log_msg failexit "Error: hash mismatch for URL \`${_f_url}' (is: ${_f_sha256sum_dst}, should be: ${_f_sha256sum_src}.)";
- else
- log_msg warn "Warning: hash mismatch for URL \`${_f_url}' (is: ${_f_sha256sum_dst}, should be: ${_f_sha256sum_src}.)";
- fi;
- fi;
- fi;
- touch ${_f_url_dst}.fetched;
- unset _f_url _f_url_dst _f_sha256sum_src _f_sha256sum_dst;
-};
-
-fetch_git() {
- _fg_subdir="${1}"; _fg_url="${2}"; _fg_branch="${3}";
- if [ ${ARG_OFFLINE:-0} -eq 0 ]; then
- if [ -e "${DLCACHEDIR}/${_fg_subdir}" ]; then
- cd ${DLCACHEDIR}/${_fg_subdir} &&\
- git pull origin ${_fg_branch:-main} && cd ${OLDPWD};
+is_build_script_done() {
+ if [ "${1}" = "clean" ]; then
+ if match_list "${ARG_RESTART}" , ${BUILD_PACKAGE_LC} \
+ && [ -n "${ARG_RESTART_AT}" ] \
+ && match_list "${ARG_RESTART_AT}" , "${1}"; then
+ return 1; # Build
else
- git clone ${_fg_url} ${DLCACHEDIR}/${_fg_subdir};
- if [ -n "${_fg_branch}" -a \
- \( -z "${_fg_branch#main}" \) -a \
- \( -z "${_fg_branch#master}" \) ]; then
- cd ${DLCACHEDIR}/${_fg_subdir} &&\
- git checkout -b ${_fg_branch} && cd ${OLDPWD};
- fi;
+ return 0; # Skip
fi;
- fi;
- secure_rm ${_fg_subdir};
- cp -pr ${DLCACHEDIR}/${_fg_subdir} .;
-};
-
-is_build_script_done() {
- if [ "${1}" != "clean" ]\
- && [ "${ARG_RESTART}" = "ALL" ]; then
+ elif [ "${ARG_RESTART}" = "ALL" ]; then
return 1; # Build
elif match_list "${ARG_RESTART}" , ${BUILD_PACKAGE_LC}; then
if [ -n "${ARG_RESTART_AT}" ]; then
- if [ "${1}" != "clean" ]\
- && [ "${ARG_RESTART_AT}" = "ALL" ]; then
+ if [ "${ARG_RESTART_AT}" = "ALL" ]; then
return 1; # Build
elif match_list "${ARG_RESTART_AT}" , "${1}"; then
return 1; # Build
@@ -93,6 +54,7 @@ parse_with_pkg_name() {
PKG_NAME=${1}; shift;
_pwpn_pkg_name_uc=$(echo ${PKG_NAME} | tr a-z A-Z);
if [ -z "$(get_var_unsafe PKG_${_pwpn_pkg_name_uc}_URL)" ]\
+ && [ -z "$(get_var_unsafe PKG_${_pwpn_pkg_name_uc}_URLS_GIT)" ]\
&& [ -z "$(get_var_unsafe PKG_${_pwpn_pkg_name_uc}_VERSION)" ]; then
unset _pwpn_pkg_name_uc;
log_msg failexit "Error: package \`${PKG_NAME}' missing in build.vars.";