]> pd.if.org Git - zpackage/blobdiff - zpm-add
remove create option to zpm-add
[zpackage] / zpm-add
diff --git a/zpm-add b/zpm-add
index 1b7bff4d3296d34e15cb08544709f98d7646569b..51c08054038f67091447596deec893e55241f375 100755 (executable)
--- a/zpm-add
+++ b/zpm-add
@@ -1,7 +1,10 @@
 #!/bin/sh
 
-pkgver=${ZPMPKGVER:-1.0}
-pkgrel=${ZPMPKGREL:-1}
+# zpm add -f pkgfile pkgid [ files ]
+
+# no package file? take from ZPM_PACKAGE_FILE
+# no pkgid ? take from ZPM_PACKAGE_ID
+# no id impossible
 
 die() {
        echo $* 1>&2
@@ -27,21 +30,17 @@ cleanpath() {
 }
 
 tags=
-create=0
+isconfig=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
-while getopts :f:v:r:l:P:S:Ccu:g: opt; do
+while getopts :f:v:r:l:P:S:cu:g: opt; do
        case $opt in
                f) pkgfile="$OPTARG" ;;
-               v) pkgver="$OPTARG" ;;
-               r) pkgrel="$OPTARG" ;;
-               l) licenses="$OPTARG" ;;
                P) prefix="$OPTARG" ;;
                S) strip=$(cleanpath "$OPTARG"); ;;
                t) tags="$tags $OPTARG" ;;
-               c) tags="$tags configuration" ;;
-               C) create=1 ;;
+               c) isconfig=1 ;;
                u) username="$OPTARG" ;;
                g) groupname="$OPTARG" ;;
                *) echo 'unknown option' $opt; exit 1 ;;
@@ -49,30 +48,47 @@ while getopts :f:v:r:l:P:S:Ccu:g: opt; do
 done
 shift $((OPTIND - 1))
 
-package="$1"
+if [ $isconfig -eq 1 ]; then
+       tags="$tags configuration"
+fi
+
+pkgid="$1"
 shift
-if [ -z "$package" ]; then
-       die "must specify package"
+set -x
+eval $(zpm parse -E $pkgid)
+
+if [ -z "$pkgfile" ];
+       pkgfile=$ZPM_PACKAGE_FILE
+fi
+
+# look for a .zpm file here
+if [ -z "$pkgfile" ] && [ -n "$release" ] && [ -f "$pkgid.zpm" ];
+       pkgfile="$pkgid.zpm"
 fi
 
-set -e
 if [ -z "$pkgfile" ]; then
-       pkgfile="$package-$pkgver-$pkgrel.zpm"
+       die "cannot determine package file"
 fi
 
+set -e
+
 # check for package file
 if [ ! -f "$pkgfile" ]; then
-       if [ $create -eq 1 ]; then
-               echo creating $pkgfile
-               zpm newpackage -I -f $pkgfile -v $pkgver -r $pkgrel $package || exit 1
-       else
-               echo $pkgfile does not exist
-               exit 1
-       fi
+       echo $pkgfile does not exist
+       exit 1
 fi
 
 zpm test -v $pkgfile
 
+if [ -z "$release" ]; then
+       pkgstr=$(zpm findpkg -f $pkgfile $pkgid)
+fi
+
+if [ -z "$pkgstr" ]; then
+       die "unable to find package id for $pkgid"
+fi
+pkgid=$pkgstr
+
 #strip=$(cleanpath "$strip")
 for path in $*; do
        #echo adding $path