[racket-dev] ready for the package switch?

From: Robby Findler (robby at eecs.northwestern.edu)
Date: Tue Jun 18 18:23:56 EDT 2013

On Tue, Jun 18, 2013 at 3:14 PM, Asumu Takikawa <asumu at ccs.neu.edu> wrote:

> On 2013-06-18 10:47:01 -0600, Matthew Flatt wrote:
> > Because this change will break all sorts of things in the short run,
> > I'd like to feel more confident that enough of us are ready before
> > merging it to the main Racket repository.
>
> The pkg2 branch builds for me fine (modulo `plot`) and I can run
> DrRacket. The `plt-games` executable does not work, however, and just
> produces a blank window for me.
>
>
This is because this expression:

(define gamedirs
  (filter directory-exists?
          (map (λ (x) (build-path x "games"))
               (current-library-collection-paths))))

in games/main.rkt returns the empty list. Probably some different strategy
should be used for finding games. Maybe in the pkg world just doing this:

(define gamedirs
  (list (collection-path "games")))

is the right thing?


Works great for me too, btw.

Robby
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/dev/archive/attachments/20130618/715f5231/attachment.html>

Posted on the dev mailing list.