I merged and pushed the split package support for makechrootpkg.
Regarding the namcap issue, I did it a little differently.
For some reason I always forget the order:
>/dev/null 2>&1 #works fine
2>&1 >/dev/null #does notHowever, I just looked up your change in man bash... &>/dev/null is equal to >/dev/null 2>&1 So I fixed that in the next patch

