diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-10-30 10:51:47 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-10-30 10:51:47 +0000 |
commit | b1bede47810652d3fe72fba66d9a1afce391eef7 (patch) | |
tree | 78758763038103e56fa956f9579d2cbd237078d3 /contrib/kiss-export | |
parent | 7b1b13cfbf82f38cc7bb1a587c579230bd3c659d (diff) | |
download | cpt-b1bede47810652d3fe72fba66d9a1afce391eef7.tar.gz |
kiss: Merge kiss-utils and kiss
FossilOrigin-Name: 6cabd29074b5abe15dd342797d3fc9b0c0271b3e001f388b360a3ee91b4a40ba
Diffstat (limited to 'contrib/kiss-export')
-rwxr-xr-x | contrib/kiss-export | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/kiss-export b/contrib/kiss-export new file mode 100755 index 0000000..e8da80f --- /dev/null +++ b/contrib/kiss-export @@ -0,0 +1,17 @@ +#!/bin/sh -ef +# +# kiss-export - Turn an installed package into a KISS tarball. + +read -r ver rel 2>/dev/null < "$KISS_ROOT/var/db/kiss/installed/$1/version" || { + printf '%s\n' "error: '$1' is not installed." >&2 + exit 1 +} + +# This warning is safe to ignore as globs are disabled and +# word splitting is intentional. +# shellcheck disable=2046 +tar czvf "$1#$ver-$rel.tar.gz" -C / -- $( + while read -r file; do + [ -d "$KISS_ROOT/$file" ] || printf '%s\n' ".$file" + done < "$KISS_ROOT/var/db/kiss/installed/$1/manifest" +) |