So I've encountered a related issue. Had a problem with non-make depends.
Was updating after a long time and alsa-utils and its depedency alsa-lib were out of date
kiss b alsa-lib alsa-utils
(or kiss u when they are out of date) will build alsa-lib first but not install it even though it is needed to build alsa-utils. I believe kiss thinks that since alsa-lib (an older version) is installed it can build alsa-utils fine
Wanted to confirm this theory and see if new packages didn't have this problem.
kiss new A 1
kiss new B 1
echo "A" > B/depends
KISS_PATH=$PWD kiss b A B
And this build A, install A and builds B which is correct.
Seems similar to #29, but worse as the update fails but also easier to solve.
So I've encountered a related issue. Had a problem with non-make depends.
Was updating after a long time and
alsa-utilsand its depedencyalsa-libwere out of date(or kiss u when they are out of date) will build alsa-lib first but not install it even though it is needed to build alsa-utils. I believe kiss thinks that since alsa-lib (an older version) is installed it can build alsa-utils fine
Wanted to confirm this theory and see if new packages didn't have this problem.
And this build A, install A and builds B which is correct.
Seems similar to #29, but worse as the update fails but also easier to solve.