1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-07-02 14:02:26 +00:00
kiss/contrib/kiss-export

32 lines
891 B
Plaintext
Raw Normal View History

2019-10-30 10:51:48 +00:00
#!/bin/sh -ef
# Turn an installed package into a KISS tarball.
2019-10-30 10:51:48 +00:00
# Ignore shellcheck as we want the warning's behavior.
# shellcheck disable=2015
[ "$1" ] && kiss l "${1:-null}" >/dev/null || {
printf 'usage: kiss-export [pkg]\n'
exit 1
}
2019-10-30 10:51:48 +00:00
2020-02-25 20:56:41 +00:00
# Grab the package's version..
read -r ver rel 2>/dev/null < "$KISS_ROOT/var/db/kiss/installed/$1/version"
2020-02-25 20:56:41 +00:00
# Reset the argument list.
pkg=$1
set --
# Construct the argument list using each file.
2020-03-11 18:04:07 +00:00
while read -r file; do
2020-02-25 20:56:41 +00:00
[ -d "$KISS_ROOT/$file" ] || set -- "$@" ".$file"
done < "$KISS_ROOT/var/db/kiss/installed/$pkg/manifest"
# Turn the list of files back into a package.
2020-04-12 02:35:26 +00:00
tar cf - -C / -- "$@" | case ${KISS_COMPRESS:-gz} in
bz2) bzip2 -z ;;
gz) gzip -6 ;;
xz) xz -zT 0 ;;
zst) zstd -z ;;
esac > "$pkg#$ver-$rel.tar.${KISS_COMPRESS:-gz}"
2020-02-25 20:56:41 +00:00
2020-04-12 02:35:26 +00:00
printf 'tarball created in %s\n' "$PWD/$pkg#$ver-$rel.tar.${KISS_COMPRESS:-gz}"