X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=zpm-install;h=64b064bf7170d90e4b85f9e12b53374f41a82946;hb=50b0480e6259c1e4bed6e6dc7990e080ceb5e855;hp=29d8c5d2fc270f0299bc5ecfcbbd46b280c405e1;hpb=13ddc546c7470f948b3bf052b53316ed78136e9b;p=zpackage diff --git a/zpm-install b/zpm-install index 29d8c5d..64b064b 100755 --- a/zpm-install +++ b/zpm-install @@ -6,6 +6,7 @@ warn() { die() { echo $* 1>&2 + zpm log -i -a 'aborting install' -t "$pkgid" "$*" exit 1 } @@ -144,11 +145,9 @@ if [ -n "$rootdir" ]; then export ZPM_ROOT_DIR fi -# TODO mark already installed packages as updating? for pkgstr in "$@"; do pkgid=$(zpm findpkg -f $pkgfile $pkgstr) if [ $? -ne 0 ]; then - # TODO log die "can't find package $pkgstr in $pkgfile" fi @@ -165,9 +164,8 @@ for pkgstr in "$@"; do if [ $runscripts -gt 0 ]; then # TODO run pre-upgrade script if needed # zpm runscript -p pre-upgrade $current $pkgid - zpm runscript -f $pkgfile -p pre-install $pkgid $current + zpm script -f $pkgfile -p pre-install $pkgid $current if [ $? -ne 0 ]; then - # TODO log die "pre-install script for $pkgid failed" fi fi @@ -184,11 +182,11 @@ for pkgstr in "$@"; do zpm rmpackage $pkgid zpm merge -f $pkgfile -s installing $pkgid if [ $? -ne 0 ]; then - # TODO log die "merging $pkgid failed" fi + else + zpm pkg $pkgid status=installing fi - # TODO but need to mark as installing if not merged #zpm shell $ZPMDB 'select * from install_status' 1>&2 if [ $dryrun -gt 0 ]; then @@ -206,11 +204,12 @@ for pkgstr in "$@"; do zpm syncfs $syncopts -f $pkgfile if [ $? -ne 0 ]; then + zpm pkg $pkgid status=failed die 'zpm-syncfs failed'; fi if [ $runscripts -gt 0 ]; then - zpm runscript -f $pkgfile -p post-install $pkgid $current + zpm script -f $pkgfile -p post-install $pkgid $current fi if [ -n "$current" ]; then @@ -234,6 +233,8 @@ for pkgstr in "$@"; do # TODO skip configure if not on a terminal, regardless of settings # TODO will need force option if [ $runconfigure -gt 0 ]; then - zpm runscript -f $pkgfile -p configure $pkgid $current + zpm script -f $pkgfile -p configure $pkgid $current + else + true fi done