Re: [racket-dev] Installing Optimization Coach broke Racket's reader

2013-02-13 Thread Danny Yoo
My apologies for letting this hang. The current state of this bug repair is that I've got a patch on: https://github.com/dyoo/racket/commit/compiler-hack that addresses the issue of installing PLaneT2 packages while in DrRacket. However, there was some parallel conversation about what the

Re: [racket-dev] Installing Optimization Coach broke Racket's reader

2013-02-02 Thread Danny Yoo
> Reproducible, and not related to optimization coach. I'm seeing this > too. It looks like a bad interaction between Planet2 installation in > DrRacket when "Populate Compiled Directories" is in effect. See: > > http://lists.racket-lang.org/users/archive/2013-February/056245.html Somethin

Re: [racket-dev] Installing Optimization Coach broke Racket's reader

2013-02-02 Thread Danny Yoo
On Fri, Feb 1, 2013 at 8:58 AM, Vincent St-Amour wrote: > As you mention, the OC package doesn't touch any collect except its own, > so I don't know what's going on. > > Neil, can you reproduce this with other packages, or is this OC-specific? Reproducible, and not related to optimization coach.

Re: [racket-dev] Installing Optimization Coach broke Racket's reader

2013-02-01 Thread Vincent St-Amour
As you mention, the OC package doesn't touch any collect except its own, so I don't know what's going on. Neil, can you reproduce this with other packages, or is this OC-specific? Also, does OC work properly now? Vincent At Fri, 1 Feb 2013 06:19:23 -0700, Jay McCarthy wrote: > > I think Vince

Re: [racket-dev] Installing Optimization Coach broke Racket's reader

2013-02-01 Thread Jay McCarthy
I think Vincent needs to answer the core question. But when you install a package it can extend any collection, so all collections that it mentions are built. In the case of OC, it only mentions OC so it would run "raco setup OC" which could cause other collections to be built as well, during the r

Re: [racket-dev] Installing Optimization Coach broke Racket's reader

2013-01-30 Thread Neil Toronto
This worked: ~/plt/collects$ find . -name "compiled" -exec rm -rf \{\} \; ~/plt/collects$ ../bin/raco setup That first command to delete the ghosts of misbegotten .zos is arcane and dangerous. Why would installing a package create compiled files in "collects"? Neil ⊥ On 01/30/2013 05:12 PM,

Re: [racket-dev] Installing Optimization Coach broke Racket's reader

2013-01-30 Thread Neil Toronto
Setup finished, still had the reader error. I removed Optimization Coach, cleaned, and ran setup again. My reader is still broken. "git status" shows no changes in my local repo. "raco pkg show" shows no packages. "raco link -l" shows no additional links. Where are these invisible craptastic

[racket-dev] Installing Optimization Coach broke Racket's reader

2013-01-30 Thread Neil Toronto
Ran this program: #lang racket (require planet2) (install "optimization-coach") Realized setup was running on one thread, stopped program, closed DrRacket. Figured Optimization Coach must have been downloaded already, so I ran setup: $ ./raco setup Everything appeared to work. Started DrRac