]> pd.if.org Git - zpackage/blobdiff - zpm-add
change calls to zpm runscript to zpm script
[zpackage] / zpm-add
diff --git a/zpm-add b/zpm-add
index 68c986dbfc05a365a3dadce4c2804296efd683fe..28c12f96fef2cd82f6af30b67e79a227f689b788 100755 (executable)
--- a/zpm-add
+++ b/zpm-add
@@ -34,12 +34,16 @@ tags=
 isconfig=0
 addcontent=1
 complete=0
-mode=
 # 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:NC 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" ;;
@@ -47,9 +51,13 @@ while getopts :f:vr:l:P:S:cu:g:NC opt; do
                S) strip=$(cleanpath "$OPTARG"); ;;
                t) tags="$tags $OPTARG" ;;
                c) isconfig=1 ;;
-               u) username="$OPTARG" ;;
-               g) groupname="$OPTARG" ;;
-               m) mode="$OPTARG" ;;
+               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 ;;
@@ -117,18 +125,13 @@ 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)
 
-       if [ -z "$mode" ]; then
-               mode=$(zpm stat -f '%a' $path)
-       fi
-
-       # only stat the file for the user and group name if not set on the
-       # command line
-       : ${username:=$(zpm stat -f '%U' $path)}
-       : ${groupname:=$(zpm stat -f '%G' $path)}
+       # only stat the file for items not set on the command line
+       mode=${clmode:-$(zpm stat -f '%a' $path)}
+       username=${cluser:-$(zpm stat -f '%U' $path)}
+       groupname=${clgroup:-$(zpm stat -f '%G' $path)}
+       mtime=${clmtime:-$(zpm stat -f '%y' $path)}
+       filetype=${cltype:-$(zpm stat -l -f '%t' "$path")}
 
        rpath="$path"
 
@@ -158,7 +161,6 @@ for path in $*; do
        # ensure all paths are absolute
        rpath=/${rpath#/}
 
-       filetype=$(zpm stat -l -f '%t' "$path")
        hash='NULL'
        target='NULL'
        case "$filetype" in
@@ -170,7 +172,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'"
                        ;;
@@ -179,8 +185,15 @@ 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