summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_fetch_download.subr
blob: 7a333947c5d263e38e2d04c6de20c546942c58b7 (plain)
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
#
# set +o errexit -o noglob -o nounset is assumed.
#

pkg_fetch_download_clean_dlcache() {
	local	_dlcachedir="${1}" _pkg_name="${2}" _pkg_fname="${3}" _pkg_urls_git="${4}"\
		_fname="" _skipfl=0 _url_spec="" _url_subdir="";

	for _fname in $(cd "${_dlcachedir}/${_pkg_name}" 2>/dev/null && find	\
			-maxdepth 1						\
			-mindepth 1						\
			${_pkg_fname:+-not -name "${_pkg_fname}"}		\
			${_pkg_fname:+-not -name "${_pkg_fname}.fetched"}); do
		_fname="${_fname#./}"; _skipfl=0;
		for _url_spec in ${_pkg_urls_git}; do
			_url_subdir="${_url_spec%%=*}"; _url_subdir="${_url_subdir##*/}";
			if [ "${_fname%.git}" = "${_url_subdir}" ]; then
				_skipfl=1; break;
			fi;
		done;
		if [ "${_skipfl}" -eq 0 ]; then
			_fname="${_dlcachedir}/${_pkg_name}/${_fname}";
			rtl_log_msg "verbose" "${MSG_rtl_fetch_rm_redundant}" "${_fname}" "${_pkg_name}";
			rtl_fileop rm "${_fname}";
		fi;
	done;
};

pkg_fetch_download_dlcache_subdir() {
	if [ -n "${PKG_INHERIT_FROM:-}" ]\
	&& ! [ -e "${BUILD_DLCACHEDIR}/${PKG_NAME}" ]\
	&& ! rtl_fileop ln_symbolic "${PKG_INHERIT_FROM}" "${BUILD_DLCACHEDIR}/${PKG_NAME}"; then
		return 1;
	elif [ -z "${PKG_INHERIT_FROM:-}" ]\
	&& ! [ -e "${BUILD_DLCACHEDIR}/${PKG_NAME}" ]\
	&& ! rtl_fileop mkdir "${BUILD_DLCACHEDIR}/${PKG_NAME}"; then
		return 1;
	else
		return 0;
	fi;
};

pkg_fetch_download() {
	if [ "${ARG_FETCH_FORCE:-}" != "offline" ]; then
		if [ -n "${PKG_URL:-}" ]; then
			if ! pkg_fetch_download_dlcache_subdir; then
				return 1;
			elif ! rtl_fetch_url_wget	\
					"${PKG_URL}" "${PKG_SHA256SUM}" "${BUILD_DLCACHEDIR}/${PKG_NAME}"\
					"${PKG_FNAME}" "${PKG_NAME}" "${PKG_MIRRORS:-}"; then
				return 1;
			fi;
		fi;
		if [ -n "${PKG_URLS_GIT:-}" ]; then
			if ! pkg_fetch_download_dlcache_subdir; then
				return 1;
			elif ! rtl_fetch_urls_git	\
					"${BUILD_DLCACHEDIR}/${PKG_NAME}" "${DEFAULT_GIT_ARGS}" "${PKG_BASE_DIR}"\
					"${PKG_NAME}" "${PKG_MIRRORS_GIT:-}" ${PKG_URLS_GIT}; then
				return 1;
			fi;
		fi;
		pkg_fetch_download_clean_dlcache "${BUILD_DLCACHEDIR}" "${PKG_NAME}" "${PKG_FNAME:-}" "${PKG_URLS_GIT:-}";
	fi;
};

# vim:filetype=sh