Re: [racket-dev] raco setup hangs

2011-01-11 Thread Robby Findler
(Sorry, I removed the trace; it doesn't seem very enlightening after all.)

On Tue, Jan 11, 2011 at 11:02 AM, Robby Findler
ro...@eecs.northwestern.edu wrote:
 I don't know if this is useful or not, but I enabled cm trace printfs
 and it does indeed seem to get stuck during the actual compilation of
 that file (as below; I added the 'mth' prefix). I also tried a little
 thread that would try monitoring the stack of the thread doing the
 work, but it comes up empty, so I'm not sure what I've done wrong
 there.

        (let ([t (current-thread)])
          (define t2
            (thread
             (λ ()
               (let loop ()
                 (sleep 2)
                 (printf starting stack\n)
                 (for ([x (in-list (continuation-mark-set-context
 (continuation-marks t)))])
                   (printf  XX ~s\n x))
                 (loop)
          (begin0 (for-each (make-caching-managed-compile-zo) sses)
                  (kill-thread t2)))

 But I also raco make getting stuck:

 C:\Users\Administrator\git\pltraco make -v collects\x\bar.rkt
 collects\x\bar.rkt:
  making C:\\Users\\Administrator\\git\\plt\\collects\\x\\bar.rkt

 so maybe some compiler optimization is going into a loop?

 Robby

_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

[racket-dev] JFYI: Apple's Mac App store now online

2011-01-11 Thread John Clements
This article from TidBITS 

http://db.tidbits.com/article/11864

describes the launch of the new Mac App Store.  It's clearly Apple's intention 
to make this the primary way of distributing software on the Mac, and it 
wouldn't surprise me to see not-so-subtle barriers to non-app-store app 
installation going up soon.

And, while I'm sure Apple would cheerfully grind us all into a paste if it 
would produce a significant one-time bump to the cash flow sheet, I don't think 
this is necessarily a terrible thing for DrRacket. Um, although I'm not coming 
up with any good side to this right now.

Anyhow, I wouldn't be surprised if in the next few years users start asking why 
DrRacket isn't available through the App store.

I would search to see whether other IDE's are part of the App Store, but... I 
don't think you can browse it until you install the App Store. And I think 
there's something about getting a required tattoo, also.


John (sorry, that was in poor taste)
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev


Re: [racket-dev] problems with eps file generation in Windows?

2011-01-11 Thread Robby Findler
Which version of Racket are you using?

Robby

On Tue, Jan 11, 2011 at 12:12 PM, Stephen Chang stch...@ccs.neu.edu wrote:
 Has anyone ever had issues with generating .eps files with
 render-language in Windows? Is there something I need to install to
 make it work? When I run render-language, it seems to be generating
 some file content, but when I view it, it's blank.

 For comparison, I generated the same thing on a linux machine and it
 works. I've attached the two files for comparison if anyone wants to
 take a look. When I diff the two files, it seems that where stuff is
 supposed to show up, in the linux file, there's a show with the
 appropriate content, but in the windows file, there is not.

 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

Re: [racket-dev] problems with eps file generation in Windows?

2011-01-11 Thread Stephen Chang
Oops, sorry, it's 5.0.1.7.




On Tue, Jan 11, 2011 at 1:18 PM, Robby Findler
ro...@eecs.northwestern.edu wrote:
 Which version of Racket are you using?

 Robby

 On Tue, Jan 11, 2011 at 12:12 PM, Stephen Chang stch...@ccs.neu.edu wrote:
 Has anyone ever had issues with generating .eps files with
 render-language in Windows? Is there something I need to install to
 make it work? When I run render-language, it seems to be generating
 some file content, but when I view it, it's blank.

 For comparison, I generated the same thing on a linux machine and it
 works. I've attached the two files for comparison if anyone wants to
 take a look. When I diff the two files, it seems that where stuff is
 supposed to show up, in the linux file, there's a show with the
 appropriate content, but in the windows file, there is not.

 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev


_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev


Re: [racket-dev] problems with eps file generation in Windows?

2011-01-11 Thread Robby Findler
There have been a lot of changes to the gui systems since then. I
recommend you either use a released version or track the git head more
closely. In the version I have, under windows, the program below seems
to produce the right output:

#lang racket
(require redex)
(define-language lc
  (e (e e)
 (λ (x) e)
 x)
  (x variable-not-otherwise-mentioned))
(render-language lc lc.eps)

Robby

On Tue, Jan 11, 2011 at 12:21 PM, Stephen Chang stch...@ccs.neu.edu wrote:
 Oops, sorry, it's 5.0.1.7.




 On Tue, Jan 11, 2011 at 1:18 PM, Robby Findler
 ro...@eecs.northwestern.edu wrote:
 Which version of Racket are you using?

 Robby

 On Tue, Jan 11, 2011 at 12:12 PM, Stephen Chang stch...@ccs.neu.edu wrote:
 Has anyone ever had issues with generating .eps files with
 render-language in Windows? Is there something I need to install to
 make it work? When I run render-language, it seems to be generating
 some file content, but when I view it, it's blank.

 For comparison, I generated the same thing on a linux machine and it
 works. I've attached the two files for comparison if anyone wants to
 take a look. When I diff the two files, it seems that where stuff is
 supposed to show up, in the linux file, there's a show with the
 appropriate content, but in the windows file, there is not.

 _
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev



_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev

Re: [racket-dev] JFYI: Apple's Mac App store now online

2011-01-11 Thread Sam Tobin-Hochstadt
On Tue, Jan 11, 2011 at 12:52 PM, John Clements
cleme...@brinckerhoff.org wrote:
 Anyhow, I wouldn't be surprised if in the next few years users start asking 
 why DrRacket isn't available through the App store.

I expect that, like the iOS App Store, distribution through the App
store is incompatible with DrRacket's LGPL license.  See, for example:
  http://www.enternet.org/3543575/vlc-app-removed-from-app-store/

Also, you have to pay Apple $99 a year.
-- 
sam th
sa...@ccs.neu.edu
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev


[racket-dev] Release for v5.1 is about to begin

2011-01-11 Thread Ryan Culpepper
The release process for v5.1 will begin in about one week.  This
means that the `release' branch will be created -- please make sure that
code that you're responsible for is as stable as possible, and let me
know if there is any new work that should not be included in this
release.

   NOW IS THE TIME TO FIX BUGS THAT YOU KNOW ABOUT 

The time between the `release' branch creation and the actual release is
for fixing new errors that prevent proper functioning of major
components and that show up during the preparation for a release.
-- 
Ryan Culpepper
_
  For list-related administrative tasks:
  http://lists.racket-lang.org/listinfo/dev