aboutsummaryrefslogtreecommitdiff
path: root/contrib/cpt-export
blob: 300c7c41286417b5bff98c1e4a7804be996dda5e (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
#!/bin/sh -ef
# Turn an installed package into a CPT tarball

## SYNOPSIS:
## .Nm
## .Op Ar pkg

## DESCRIPTION:
## .Nm
## creates a package tarball of an installed package using the system files
## declared on the package's manifest. If no package name is given,
## .Nm
## will use the name of the current directory as the package.

case "$1" in
    --help|-h)
        printf 'usage: %s [pkg]\n' "${0##*/}"
        exit 0
        ;;
    '') set -- "${PWD##*/}"
esac

cpt-list "${1:-null}" >/dev/null

# Grab the package's version..
read -r ver rel 2>/dev/null < \
    "$CPT_ROOT/var/db/cpt/installed/$1/version"

### Environment variables:
### The compression method can be changed while creating a tarball, using the
### .Ev CPT_COMPRESS
### environment variable.

# Fallback to gzip if there is a typo
case "$CPT_COMPRESS" in bz2|gz|xz|zst|lz) ;; *) CPT_COMPRESS=gz; esac

# Reset the argument list.
pkg=$1
tarball="$PWD/$1#$ver-$rel.tar.$CPT_COMPRESS"
set --

# Construct the argument list using each file.
eval set -- "$(sed '/\/$/d;s|^|".|;s|$|"|' \
    "$CPT_ROOT/var/db/cpt/installed/$pkg/manifest" | tr '\n' ' ')"

# Turn the list of files back into a package.
cd "$CPT_ROOT/"
tar cf - -- "$@" |

case "$CPT_COMPRESS" in
    bz2) bzip2 -z ;;
    gz)  gzip -6  ;;
    xz)  xz -zT 0 ;;
    zst) zstd -3  ;;
    lz)  lzip -6  ;;
esac > "$tarball"

printf 'tarball created in %s\n' "$tarball"