Rebuild package with dependancies problem

hello,
i have two questions related to https://pkgs.racket-lang.org
i put a module: Scheme-PLUS-for-Racket
(it allow special syntax in Racket, see example: https://github.com/damien-mattei/AI_Deep_Learning/blob/main/exo_retropropagationNhidden_layers_matrix_v2_by_vectors%2B.rkt)
the module on the package site have dependencies problem and i'm surprised it succeed in building.
the dependencies problem seems to come from a missing r6rs-lib that i added:
https://pkg-build.racket-lang.org/server/built/deps/Scheme-PLUS-for-Racket.txt
now i'm waiting the rebuild . I hope is it ok as i added r6rs-lib in info.rkt:
https://github.com/damien-mattei/Scheme-PLUS-for-Racket/blob/main/info.rkt
Is there a way to force the rebuild and not to wait hours or next day?
regards,
damien

Everything is built together, so it takes a little while, but your package built successfully and no longer shows dependency problems.

yes it is ok now. When we have to debug it would be nice to have a button to rebuilt immediately.
regards,
damien

You can run it locally. The dependency checker is what you get when you run raco setup --pkgs Scheme-PLUS-for-Racket --check-pkg-deps.

1 Like