aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-06-29 07:56:39 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-06-29 07:56:39 +0000
commit1a394fbe862c2cb483b1b40af19ab16f1b1ff383 (patch)
treecd37c9b168caf61585c88a3bbaf8ddbb108d00d6
parent4b171150d6b4c111bc5daca39c76f5504bbad46d (diff)
downloadcpt-1a394fbe862c2cb483b1b40af19ab16f1b1ff383.tar.gz
kiss-new: Full dependency resolvers.
FossilOrigin-Name: c2c41f1d294730c881d7a3025d5fa7c9050569d00b4e88a7d36a90024d79dd3f
-rwxr-xr-xkiss-new59
1 files changed, 35 insertions, 24 deletions
diff --git a/kiss-new b/kiss-new
index c4916e0..d9576a3 100755
--- a/kiss-new
+++ b/kiss-new
@@ -103,7 +103,7 @@ pkg_list() {
# Also warn if a package is missing its version file.
for pkg; do
[ -d "$pkg" ] || {
- log "Package '$pkg' is not installed." >&2
+ log "Package '$pkg' is not installed."
return 1
}
@@ -161,28 +161,27 @@ pkg_sources() {
pkg_depends() {
# Resolve all dependencies and install them in the right order.
- for pkg; do
- # Find the package's repository files. This needs to keep
- # happening as we can't store this data in any kind of data
- # structure.
- repo_dir=$(pkg_search "$pkg")
- # Package doesn't depend on anything, skip it.
- [ -f "$repo_dir/depends" ] || continue
-
- while read -r dep _; do
- pkg_list "$dep" >/dev/null || {
- case $missing_deps in
- # Dependency is already in list, skip it.
- *" $dep "*) ;;
-
- *)
- missing_deps="$missing_deps $dep "
- ;;
- esac
- }
- done < "$repo_dir/depends"
- done
+ # Find the package's repository files. This needs to keep
+ # happening as we can't store this data in any kind of data
+ # structure.
+ repo_dir=$(pkg_search "$1")
+
+ pkg_list "$1" >/dev/null || {
+ case $missing_deps in
+ # Dependency is already in list, skip it.
+ *" $1 "*) ;;
+
+ *)
+ [ -f "$repo_dir/depends" ] &&
+ while read -r dep _; do
+ pkg_depends "$dep"
+ done < "$repo_dir/depends"
+
+ missing_deps="$missing_deps $1 "
+ ;;
+ esac
+ }
}
pkg_build() {
@@ -190,6 +189,20 @@ pkg_build() {
# also checks checksums, downloads sources and ensure all dependencies
# are installed.
+ # Resolve dependencies and generate a list.
+ log "Resolving dependencies..."
+ for pkg; do pkg_depends "$pkg"; done
+
+ # Disable globbing with 'set -f' to ensure that the unquoted
+ # variable doesn't expand into anything nasty.
+ # shellcheck disable=2086,2046
+ {
+ # Set the resolved dependency list as the function's arguments.
+ set -f
+ set -- $missing_deps
+ set +f
+ }
+
for pkg; do
# Find the package's repository files. This needs to keep
# happening as we can't store this data in any kind of data
@@ -210,8 +223,6 @@ pkg_build() {
# Die here as packages without checksums were found above.
[ "$no_checkums" ] &&
die "Run '$kiss checksum ${no_checkums% }' to generate checksums."
-
- pkg_depends "$@"
}
pkg_checksums() {