<br><br><div class="gmail_quote">On Sat, Jun 19, 2010 at 23:30, Robby Findler <span dir="ltr">&lt;<a href="mailto:robby@eecs.northwestern.edu">robby@eecs.northwestern.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
It isn&#39;t clear to me why the functions are doing what they are doing<br>
in some of the details, but I&#39;ve documented the relevant missing ones<br>
(now pushed, also as below). Here is an example to help you get going.<br>
<br>
#lang racket<br>
(require planet/util)<br>
(install-pkg<br>
 (get-package-spec &quot;planet&quot;<br>
                   &quot;test-connection.plt&quot;<br>
                   1 0)<br>
 &quot;test-connection.plt&quot; ;; this is the .plt file (here as a relative path)<br>
 1 0)<br>
<br>
<br>
Robby<br></blockquote><div><br><br></div></div>Thanks!<br><br>That worked, but there is one annoying thing: it recompiled *all* the dependencies, including the whole Racket...<br>Is there a way to avoid this with this function?<br>
<br>Also, there should be somewhere in this function call where I should have put my username I guess, but where?<br><br>I did:<br>
<br>(install-pkg<br>
   (get-package-spec &quot;planet&quot; ; no need to change that I suppose ?<br>
                     &quot;mred-designer.plt&quot;<br>
                     application-version-maj application-version-min)<br>
   &quot;../mred-designer.plt&quot; ;; this is the .plt file (here as a relative 
path)<br>
   application-version-maj application-version-min)<br>
<br>