aboutsummaryrefslogtreecommitdiff
path: root/kiss
diff options
context:
space:
mode:
authordylan.araps@gmail.com <dylan.araps@gmail.com>2019-07-11 16:08:11 +0000
committerdylan.araps@gmail.com <dylan.araps@gmail.com>2019-07-11 16:08:11 +0000
commit94e11e472a7d0f0d5cad4da828dbbbcc5d2f0193 (patch)
tree76d239c5b692cd8704c6bf82fe8de48709f0d392 /kiss
parentdf1c15c4ab65ef38246d7761a2973a0572e1631e (diff)
downloadcpt-94e11e472a7d0f0d5cad4da828dbbbcc5d2f0193.tar.gz
kiss: use rsync to install packages.
FossilOrigin-Name: afaaf495e16aec0a97e3d378ee1655fe4cedce791da40ebfbcaa946c5b37642a
Diffstat (limited to 'kiss')
-rwxr-xr-xkiss21
1 files changed, 7 insertions, 14 deletions
diff --git a/kiss b/kiss
index c95f654..2accce8 100755
--- a/kiss
+++ b/kiss
@@ -675,11 +675,11 @@ pkg_install() {
die "[$1]: Package requires ${required_install%, }." \
"[$1]: Aborting here..."
- # Create a backup of 'mv', 'cpio' and 'find' so they aren't removed
+ # Create a backup of 'mv', 'rsync' and 'find' so they aren't removed
# during package removal. This ensures that an upgrade to 'busybox' or
# your core utilities of choice doesn't break the package manager.
cp "$(command -v mv)" "$cac_dir"
- cp "$(command -v cpio)" "$cac_dir"
+ cp "$(command -v rsync)" "$cac_dir"
cp "$(command -v find)" "$cac_dir"
log "[$pkg_name]: Removing previous version of package if it exists."
@@ -691,17 +691,10 @@ pkg_install() {
# an incomplete package installed.
trap '' INT
- # Installation works by unpacking the tar-ball to a specified location,
- # manually running 'cpio' to create each directory and finally, using
- # 'mv' to move each file.
- cd "$tar_dir"
-
- # Create all of the package's directories.
- "$cac_dir/find" . -type d | "$cac_dir/cpio" -mp "$KISS_ROOT/"
-
- # Move all package files to '$KISS_ROOT'.
- "$cac_dir/find" . -mindepth 1 -not -type d \
- -exec "$cac_dir/mv" -n {} "$KISS_ROOT/"{} \;
+ # "Install" the package using 'rsync'. None of the coreutils could
+ # correctly accomplish this task. The preservation of permissions,
+ # proper handling of existing files etc.
+ "$cac_dir/rsync" --ignore-existing -a "$tar_dir/" "$KISS_ROOT/"
# Reset 'trap' to its original value. Installation is done so
# we no longer need to block 'Ctrl+C'.
@@ -824,7 +817,7 @@ pkg_clean() {
rm -rf -- "$mak_dir" "$pkg_dir" "$tar_dir"
# Remove cached commands.
- rm -f -- "$cac_dir/find" "$cac_dir/mv" "$cac_dir/cpio" \
+ rm -f -- "$cac_dir/find" "$cac_dir/mv" "$cac_dir/rsync" \
"$cac_dir/rm" "$cac_dir/rmdir"
# Remove temporary files.