I found a bug in depends-on.sh:
$ depends-on.sh unbound
getdns.tcz
unbound-dev.tcz
The output is incorrect because prosody.tcz depends on unbound.tcz, so should appear in the command's output.
I found many other instances of unexpected behavior. Just one more example:
$ depends-on.sh protobuf-c
[no hits]
That's also incorrect. protobuf-c-dev.tcz should have been a hit because it depends on protobuf-c.tcz.
After close inspection of dep.db and much head-scratching, I discovered the problem: The default (exact match) searches fail when the lines with expected matches have trailing whitespace. Brutal.
There are at least two ways to fix this:
1. Make the logic in awk more complex so that exact searches can deal with trailing whitespace in dep.db
2. Remove trailing whitespace from dep.db before searching
Option #2 seems more obvious and straight-forward, so I went with that:
https://github.com/tinycorelinux/Core-scripts/pull/75/commits/8e84f192359af77ab7806389768d46897a0b57bc