<br><br><div class="gmail_quote">On Sat, Jun 19, 2010 at 23:30, Robby Findler <span dir="ltr"><<a href="mailto:robby@eecs.northwestern.edu">robby@eecs.northwestern.edu</a>></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't clear to me why the functions are doing what they are doing<br>
in some of the details, but I'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 "planet"<br>
"test-connection.plt"<br>
1 0)<br>
"test-connection.plt" ;; 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 "planet" ; no need to change that I suppose ?<br>
"mred-designer.plt"<br>
application-version-maj application-version-min)<br>
"../mred-designer.plt" ;; this is the .plt file (here as a relative
path)<br>
application-version-maj application-version-min)<br>
<br>