]> pd.if.org Git - zpackage/blobdiff - zpm-add
expand docs
[zpackage] / zpm-add
diff --git a/zpm-add b/zpm-add
index cfce783c2f3cebd10a7066b192fe0a2729f2383f..f627c6dc6990578a0a9a290d87b45761dddfbc78 100755 (executable)
--- a/zpm-add
+++ b/zpm-add
@@ -38,7 +38,12 @@ complete=0
 # 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" ;;
@@ -46,8 +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" ;;
+               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 ;;
@@ -115,15 +125,16 @@ 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)
-       mode=$(zpm stat -f '%a' $path)
+if [ $verbose -gt 1 ]; then
+       printf "adding %s\n" $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 -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"
 
@@ -153,7 +164,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
@@ -165,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'"
                        ;;
@@ -174,15 +188,26 @@ 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 <<EOS
+       if [ $verbose -gt 2 ]; then
+               shellecho=".echo on"
+       fi
        zpm shell $pkgfile <<EOS
 begin;
+$shellecho
 insert or replace into packagefiles (package,version,release,path,mode,mtime,username,groupname,filetype,hash,configuration,target)
 values ('$package', '$pkgver', $pkgrel, '$rpath', '$mode',$mtime, '$username','$groupname','$filetype',$hash,$isconfig,$target);
 commit;