installer bug?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

installer bug?

Yoandy Rodríguez Martínez
hello:
I'm trying to install SqueakDBX and evaluating 'Installer ss' fails cause  
squeaksource message is not understood. I got  Installer-Core-nm.357 from  
squeaksource. Is it a bug or did I just installed the wrong package?. Can  
anyone please send me the code of squeaksource method so I can fix my  
working copy?

_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
Reply | Threaded
Open this post in threaded view
|

Re: installer bug?

Stéphane Ducasse

On Apr 1, 2010, at 4:21 PM, Yoandy Rodríguez Martínez wrote:

> hello:
> I'm trying to install SqueakDBX and evaluating 'Installer ss' fails cause squeaksource message is not understood. I got  Installer-Core-nm.357 from squeaksource. Is it a bug or did I just installed the wrong package?. Can anyone please send me the code of squeaksource method so I can fix my working copy?

I'm sure that mariano will reply better than me but use
the ConfigurationOfxxx in the metaRepository do load it, or Gofer.
I'm not sure that Installer is maintained in Pharo and this is not the preferred way.

Stef

>
> _______________________________________________
> Pharo-users mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users


_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
Reply | Threaded
Open this post in threaded view
|

Re: installer bug?

Mariano Martinez Peck
Hi Yoandy. As Stef said, the recommended way to install SqueakDBX or GlorpDBX in Pharo is using Metacello.
You can see read that in this link (please take a look):

http://www.squeakdbx.org/Installation

Right now, to install SqueakDBX you have to evaluate:

Gofer new
    squeaksource: 'MetacelloRepository';
    package: 'ConfigurationOfSqueakDBX';
    load.

((Smalltalk at: #ConfigurationOfSqueakDBX) project version: '1.2') load.
 

And for GlorpDBX:

Gofer new
    squeaksource: 'MetacelloRepository';
    package: 'ConfigurationOfGlorpDBX';
    load.

((Smalltalk at: #ConfigurationOfGlorpDBX) project version: '1.0') load.


Cheers

Mariano

On Thu, Apr 1, 2010 at 5:25 PM, Stéphane Ducasse <[hidden email]> wrote:

On Apr 1, 2010, at 4:21 PM, Yoandy Rodríguez Martínez wrote:

> hello:
> I'm trying to install SqueakDBX and evaluating 'Installer ss' fails cause squeaksource message is not understood. I got  Installer-Core-nm.357 from squeaksource. Is it a bug or did I just installed the wrong package?. Can anyone please send me the code of squeaksource method so I can fix my working copy?

I'm sure that mariano will reply better than me but use
the ConfigurationOfxxx in the metaRepository do load it, or Gofer.
I'm not sure that Installer is maintained in Pharo and this is not the preferred way.

Stef

>
> _______________________________________________
> Pharo-users mailing list
> [hidden email]
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users


_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users


_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
Reply | Threaded
Open this post in threaded view
|

Re: [SqueakDBX] Re: installer bug?

Mariano Martinez Peck


On Wed, Jun 23, 2010 at 12:21 AM, John Toohey <[hidden email]> wrote:
On the lastest Pharo 1.1 the following :-

Gofer new
    squeaksource: 'MetacelloRepository';
    package: 'ConfigurationOfGlorpDBX';
    load.

((Smalltalk at: #ConfigurationOfGlorpDBX) project version: '1.0') load.

causes a syntax error in Scanner#xLetter. Has anyone installed
GlorpDBX on Pharo1.1?



yes, but I am using 1.1 version:

((Smalltalk at: #ConfigurationOfGlorpDBX) project version: '1.1') load.

Cheers

Mariano
 

On Thu, Apr 1, 2010 at 11:43, Mariano Martinez Peck
<[hidden email]> wrote:
>
> Hi Yoandy. As Stef said, the recommended way to install SqueakDBX or GlorpDBX in Pharo is using Metacello.
> You can see read that in this link (please take a look):
>
> http://www.squeakdbx.org/Installation
>
> Right now, to install SqueakDBX you have to evaluate:
>
> Gofer new
>     squeaksource: 'MetacelloRepository';
>     package: 'ConfigurationOfSqueakDBX';
>     load.
>
> ((Smalltalk at: #ConfigurationOfSqueakDBX) project version: '1.2') load.
>
>
> And for GlorpDBX:
>
> Gofer new
>     squeaksource: 'MetacelloRepository';
>     package: 'ConfigurationOfGlorpDBX';
>     load.
>
> ((Smalltalk at: #ConfigurationOfGlorpDBX) project version: '1.0') load.
>
>
> Cheers
>
> Mariano
>
> On Thu, Apr 1, 2010 at 5:25 PM, Stéphane Ducasse <[hidden email]> wrote:
>>
>> On Apr 1, 2010, at 4:21 PM, Yoandy Rodríguez Martínez wrote:
>>
>> > hello:
>> > I'm trying to install SqueakDBX and evaluating 'Installer ss' fails cause squeaksource message is not understood. I got  Installer-Core-nm.357 from squeaksource. Is it a bug or did I just installed the wrong package?. Can anyone please send me the code of squeaksource method so I can fix my working copy?
>>
>> I'm sure that mariano will reply better than me but use
>> the ConfigurationOfxxx in the metaRepository do load it, or Gofer.
>> I'm not sure that Installer is maintained in Pharo and this is not the preferred way.
>>
>> Stef
>>
>> >
>> > _______________________________________________
>> > Pharo-users mailing list
>> > [hidden email]
>> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
>>
>>
>> _______________________________________________
>> Pharo-users mailing list
>> [hidden email]
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
>
>
> _______________________________________________
> SqueakDBX mailing list
> [hidden email]
> http://lists.squeakfoundation.org/mailman/listinfo/squeakdbx
>



--
-JT
_______________________________________________
SqueakDBX mailing list
[hidden email]
http://lists.squeakfoundation.org/mailman/listinfo/squeakdbx


_______________________________________________
Pharo-users mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users