X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=zpm-contents;h=447e095a1eab9d97dfbf084474a7ee6993fbf83f;hb=fc00e5790546ea6120bb3e2f9ca1e95fbb74d9c3;hp=ff607fbb0b24726e84767aa7d461f347f92bdd4a;hpb=ae7d62320daeda36f7e5d5577b7752230dd6f50b;p=zpackage diff --git a/zpm-contents b/zpm-contents index ff607fb..447e095 100755 --- a/zpm-contents +++ b/zpm-contents @@ -51,10 +51,15 @@ while [ $# -gt 0 ]; do q=$(zpm quote -q "$pkgid") pkglist=",$q" else - warn "package $pkg not found, ignoring" + printf "package $pkg not found, ignoring\n" 1>&2 + exit 1 + fi + pkglist=${pkglist#,} + if [ -z "$pkglist" ]; then + printf "can't find any packages\n" 1>&2 + exit 1 fi done -pkglist=${pkglist#,} globlist= for glob in "$@"; do @@ -67,6 +72,7 @@ cols=${cols%,} { printf '.separator " "\n' +# printf '.echo on\n' printf 'select %s\n' "$cols" if [ $pkgonly -eq 0 ]; then @@ -82,7 +88,14 @@ cols=${cols%,} fi printf "else path end as path\n" fi - printf 'from packagefiles_status PF left join elflibraries EL on EL.file = PF.hash\nwhere true\n' + printf "from packagefiles_pkgid PF\n" + if [ $showsoname -eq 1 ]; then + printf "left join elflibraries EL on EL.file = PF.hash\n" + fi + if [ -n "$status" ]; then + printf "join packages P on P.package = PF.package and P.version = PF.version and P.release = PF.release\n" + fi + printf "where true\n" if [ -n "$globlist" ]; then printf "and (%s)\n" "$globlist" fi @@ -94,9 +107,9 @@ cols=${cols%,} exclude) printf "and configuration = 0\n" ;; esac if [ -n "$status" ]; then - printf "and status = '%s'\n" "$status" + printf "and P.status = '%s'\n" "$status" fi - printf 'order by pkgid,path\n' + printf 'order by package,version collate vercmp, release, path\n' printf ';\n' } | zpm shell $pkgfile #} | cat