> Sure. But I'm not looking for the package server to do tests for me, I'm > looking for it to not discourage people from using my package because > there's a red 'fails' next to the name when there shouldn't be. Especially > when it hasn't tried to rebuild the package for two weeks.
Probably the daily build server didn't try to build it for two weeks, because the package catalog said it didn't change for two weeks, because the repo didn't have any new commits between March 16 and April 30. (I actually thought the daily build server built everything daily. Apparently it only rebuilds when the outcome could be different, which I guess makes sense.) It looks like the daily build server noticed yesterday's package catalog update and built this morning: <https://pkg-build.racket-lang.org/server/built/install/test-more.txt> > The time is now Wednesday, May 1st, 2019 8:15:04am As for the dependency problems: <https://pkg-build.racket-lang.org/server/built/deps/test-more.txt> > raco setup: --- summary of package problems --- > raco setup: undeclared dependency detected > raco setup: for package: "test-more" > raco setup: on package: > raco setup: "base" > The time is now Wednesday, May 1st, 2019 8:15:14am I think you simply need to add to your `info.rkt` something like (define deps '("base")) or, if you know you need a version of Racket >= something like (say) 7.2: (define deps '(["base" #:version "7.2"]) And then... wait up to 24 hours. :) p.s. Not to flog it but AFAIK the easiest way to discover any such minimum version requirement is to set up Travis CI with a bunch of Racket versions and let it discover and tell you. For example: <https://github.com/greghendershott/travis-racket/blob/master/.travis.yml> -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.