Shorten deps
From Gnuffy
"spaceman -b" tells me to remove a dependency but I know it is needed
Spaceman is designed to be fast. You can help it in being fast :) This can be reached by minimizing the dependencies and removing dependencies that are already implied by other dependencies.
Here's an example:
depends=(glibc bash)
can be shortened to:
depends=(bash)
beacause actually bash depends on glibc, so if there is bash installed you can be sure that glibc is, too. Although the binaries inside your package might be directly linked with glibc using just bash as a dependency shortens the process of checking dependencies by 50% in this case.
So, your dependencies are probably not wrong, they just can be optimized on speed.

