X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=zpm-add;h=f627c6dc6990578a0a9a290d87b45761dddfbc78;hb=17744ae701e5a543ee6fe0d752330f1bbef56a42;hp=91c7b189610834679c3af386b7449d9a3a696e4d;hpb=f369a2244b7ab681661e2ac9fa1b5b9b9ea4860f;p=zpackage diff --git a/zpm-add b/zpm-add index 91c7b18..f627c6d 100755 --- a/zpm-add +++ b/zpm-add @@ -33,11 +33,17 @@ verbose=0 tags= isconfig=0 addcontent=1 +complete=0 # option for "multipackage" just to let the system know that's what you meant # option to take filenames from stdin # parse package, version, release from file if not given # TODO -l follow symlinks, -L follow symlinks, adding all, links and targets -while getopts :f:vr:l:P:S:cu:g:N opt; do +# -T set link target +# -M set mtime +# -m set mode +# -H set hash, will be overridden for regular files unless -N is set +# -F set filetype, regular, symlink, directory +while getopts :f:vr:l:P:S:cu:g:NCm:M:T:H:F: opt; do case $opt in N) addcontent=0 ;; f) pkgfile="$OPTARG" ;; @@ -45,9 +51,15 @@ while getopts :f:vr:l:P:S:cu:g:N opt; do S) strip=$(cleanpath "$OPTARG"); ;; t) tags="$tags $OPTARG" ;; c) isconfig=1 ;; - u) username="$OPTARG" ;; - g) groupname="$OPTARG" ;; - v) verbose=1 ;; + u) cluser="$OPTARG" ;; + g) clgroup="$OPTARG" ;; + m) clmode="$OPTARG" ;; + M) clmtime="$OPTARG" ;; + T) cltarget="$OPTARG" ;; + F) cltype="$OPTARG" ;; + H) clhash="$OPTARG" ;; + v) verbose=$((verbose + 1)) ;; + C) complete=1 ;; *) echo 'unknown option' $OPTARG; exit 1 ;; esac done @@ -57,7 +69,7 @@ if [ $isconfig -eq 1 ]; then tags="$tags configuration" fi -if [ $verbose -gt 1 ]; then +if [ $verbose -gt 2 ]; then set -x fi @@ -113,12 +125,17 @@ pkgrel=$(zpm quote "$release") #strip=$(cleanpath "$strip") for path in $*; do #echo adding $path - mtime=$(zpm stat -f '%y' $path) - uid=$(zpm stat -f '%u' $path) - gid=$(zpm stat -f '%g' $path) - : ${username:=$(zpm stat -f '%U' $path)} - : ${groupname:=$(zpm stat -f '%G' $path)} - mode=$(zpm stat -f '%a' $path) +if [ $verbose -gt 1 ]; then + printf "adding %s\n" $path +fi + + # only stat the file for items not set on the command line + mode=${clmode:-$(zpm stat -l -f '%a' $path)} + username=${cluser:-$(zpm stat -l -f '%U' $path)} + groupname=${clgroup:-$(zpm stat -l -f '%G' $path)} + mtime=${clmtime:-$(zpm stat -l -f '%y' $path)} + filetype=${cltype:-$(zpm stat -l -f '%t' "$path")} + rpath="$path" rpath=$(cleanpath "$path") @@ -131,7 +148,6 @@ for path in $*; do fi if [ ! -z "$strip" ]; then - echo "stripping $strip" rpath=${rpath#$strip} rpath=${rpath#/} fi @@ -145,7 +161,9 @@ for path in $*; do rpath="$prefix/$rpath" fi - filetype=$(zpm stat -l -f '%t' "$path") + # ensure all paths are absolute + rpath=/${rpath#/} + hash='NULL' target='NULL' case "$filetype" in @@ -157,7 +175,11 @@ for path in $*; do die "zpm addfile failed ($?): $pkgfile $path" fi else - hash=$(zpm hash "$path") + if [ -z "$clhash" ]; then + hash=$(zpm hash "$path") + else + hash=$clhash + fi fi hash="'$hash'" ;; @@ -166,24 +188,43 @@ for path in $*; do ;; symlink) filetype=l - target=$(readlink $path) - target="'$target'" + if [ -n "$cltarget" ]; then + target=$cltarget + else + target=$(readlink $path) + target=$(zpm quote -q "$target") + fi + ;; + *) + die "filetype $filetype not supported" ;; esac # TODO check that we have such a package,version,release #cat < $target"} -if [ $verbose -gt 0 ]; then +if [ $verbose -gt 1 ]; then + printf "%s%s %s:%s %s\n" $filetype $mode $username $groupname $path +elif [ $verbose -gt 0 ]; then printf "%s\n" $path fi done + +if [ $complete -eq 1 ]; then + zpm pkg -f $pkgfile $pkgid build_time=$(date +'%s') + zpm packagehash -f $pkgfile -s -q $pkgid +else + zpm pkg -f $pkgfile $pkgid hash= +fi