<br><br><div class="gmail_quote">On Sat, Jan 9, 2010 at 11:24 PM, John Toohey <span dir="ltr">&lt;<a href="mailto:jt@parspro.com">jt@parspro.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Have you made a Gofer script to install the latest GloprDBX and Postgres driver on the latest RC1 Pharo images? I&#39;m trying to create a full Gofer script that will build my entire app from a Pharo DEV image. <br clear="all">

<br></blockquote><div><br>Hi John. I didn&#39;t wrote any Gofer plugin and I even don&#39;t have it in mind. The future of SqueakDBX and GlorpDBX packages managment will be with Metacello.<br><br>So far, you have in the repository MetacelloRepository in squeakspurce, two packages: ConfigurationOfSqueakDBX and ConfigurationOfGlorpDBX. The second one, right now it install GlorpDBX and the SqueakDBX driver, NOT the PostgreSQL native driver. If this is what you want, maybe I can add a group to metacello conf.<br>
<br>Right now, to install SqueakDBX you have to evaluate:<br><br>Gofer new<br>    squeaksource: &#39;MetacelloRepository&#39;;<br>    package: &#39;ConfigurationOfSqueakDBX&#39;;<br>    load.<br><br>((Smalltalk at: #ConfigurationOfSqueakDBX) project version: &#39;1.0&#39;) load.<br>
 <br><br>And for GlorpDBX:<br><br>Gofer new<br>
    squeaksource: &#39;MetacelloRepository&#39;;<br>
    package: &#39;ConfigurationOfGlorpDBX&#39;;<br>
    load.<br>
<br>
((Smalltalk at: #ConfigurationOfGlorpDBX) project version: &#39;1.0&#39;) load.<br>
<br>If you really need to load GlorpDBX with Postgresql native driver, than I can create a group so that you will be able to evaluate:<br><br>((Smalltalk at: #ConfigurationOfGlorpDBX) project version: &#39;1.0&#39;) load: &#39;GlorpDBXWithNativePostgreSQLNativeDriver&#39;<br>


<br>Do you need that?<br><br>In addition, the loaders we wrote some time ago, should be running:<br><br>Gofer new<br>

    squeaksource: &#39;Glorp&#39;;<br>

    package: &#39;ConfigurationOfGlorpDBX&#39;;<br>

    load.<br> <br>GlorpPharoLoader loadGlorpWithNativePostgreSQLDriver<br><br><br><br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
-- <br><font color="#888888">-JT<br><br><br>
</font></blockquote></div><br>