Strange error in Metacello

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

Strange error in Metacello

Alexandre Bergel-5
Hi!

Try :

Gofer new
        squeaksource: 'Mondrian';
        package: 'ConfigurationOfMondrian';
        load.
(ConfigurationOfMondrian project version: '2.1.2') load

I get an error: no such inst variable

Any idea what goes wrong?

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







PharoDebug.log (28K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Strange error in Metacello

Dale Henrichs
Alexandre,

There are a number of issues with the package/project specifications
for version 2.1.2 ... Perhaps you could give me write permission on
the Mondrian repository (dkh) and I'll check in a fixed
configuration...

Dale

On Nov 24, 6:11 am, Alexandre Bergel <[hidden email]> wrote:

> Hi!
>
> Try :
>
> Gofer new
>         squeaksource: 'Mondrian';
>         package: 'ConfigurationOfMondrian';
>         load.
> (ConfigurationOfMondrian project version: '2.1.2') load
>
> I get an error: no such inst variable
>
> Any idea what goes wrong?
>
> Cheers,
> Alexandre
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>  PharoDebug.log
> 27KViewDownload
>
>
Reply | Threaded
Open this post in threaded view
|

Re: Strange error in Metacello

Dale Henrichs
Alexandre,

Here's the fixed version212: method (loads fine in PharoCore1.1.1
image):

version212: spec
        <version: '2.1.2' imports: #('2.2-baseline')>

        spec for: #common do: [
                spec author: 'DaleHenrichs'.
                spec timestamp: '11/24/2010 08:13'.
                spec blessing: #development.
                spec
                        project: 'Shout' with: '1.1';
                        project: 'ProfStef' with: '1.1';
                        project: 'HealthReportProducer' with: '0.1-baseline'.
                spec
                        package: 'CollectionExtensions' with: 'CollectionExtensions-
jannik_laval.25';
                        package: 'Mondrian-ComplexShape' with: 'Mondrian-ComplexShape-
AlexandreBergel.1';
                        package: 'Mondrian-Core' with: 'Mondrian-Core-AlexandreBergel.5';
                        package: 'Mondrian-Layouts' with: 'Mondrian-Layouts-AlexandreBergel.
1';
                        package: 'Mondrian-Help' with: 'Mondrian-Help-AlexandreBergel.6';
                        package: 'Mondrian-Easel' with: 'Mondrian-Easel-AlexandreBergel.5';
                        package: 'Mondrian-Interaction' with: 'Mondrian-Interaction-
AlexandreBergel.1';
                        package: 'Mondrian-Pharo-Tests' with: 'Mondrian-Pharo-Tests-
AlexandreBergel.3';
                        package: 'Mondrian-Shapes' with: 'Mondrian-Shapes-AlexandreBergel.
2';
                        package: 'Mondrian-Events' with: 'Mondrian-Events-AlexandreBergel.
1';
                        package: 'Mondrian-Visitor' with: 'Mondrian-Visitor-AlexandreBergel.
1';
                        package: 'Mondrian-Animation' with: 'Mondrian-Animation-
AlexandreBergel.1';
                        package: 'Mondrian-Util' with: 'Mondrian-Util-AlexandreBergel.3';
                        package: 'Mondrian-Normalizers' with: 'Mondrian-Normalizers-
AlexandreBergel.1';
                        package: 'Mondrian-Example' with: 'Mondrian-Example-AlexandreBergel.
3';
                        package: 'Mondrian-Pharo-Morphic' with: 'Mondrian-Pharo-Morphic-tg.
5';
                        package: 'Mondrian-Tests' with: 'Mondrian-Tests-AlexandreBergel.
9'.].

On Nov 24, 7:52 am, Dale <[hidden email]> wrote:

> Alexandre,
>
> There are a number of issues with the package/project specifications
> for version 2.1.2 ... Perhaps you could give me write permission on
> the Mondrian repository (dkh) and I'll check in a fixed
> configuration...
>
> Dale
>
> On Nov 24, 6:11 am, Alexandre Bergel <[hidden email]> wrote:
>
> > Hi!
>
> > Try :
>
> > Gofer new
> >         squeaksource: 'Mondrian';
> >         package: 'ConfigurationOfMondrian';
> >         load.
> > (ConfigurationOfMondrian project version: '2.1.2') load
>
> > I get an error: no such inst variable
>
> > Any idea what goes wrong?
>
> > Cheers,
> > Alexandre
> > --
> > _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> > Alexandre Bergel  http://www.bergel.eu
> > ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
> >  PharoDebug.log
> > 27KViewDownload
Reply | Threaded
Open this post in threaded view
|

Re: Strange error in Metacello

Dale Henrichs
In reply to this post by Alexandre Bergel-5
As an aside, the work I'm doing right now for 1.0-beta.28, includes
much better support for creating a new version programatically from a
baseline version ... using the new algorithm would have eliminated the
errors in 2.1.2...

Dale

On Nov 24, 6:11 am, Alexandre Bergel <[hidden email]> wrote:

> Hi!
>
> Try :
>
> Gofer new
>         squeaksource: 'Mondrian';
>         package: 'ConfigurationOfMondrian';
>         load.
> (ConfigurationOfMondrian project version: '2.1.2') load
>
> I get an error: no such inst variable
>
> Any idea what goes wrong?
>
> Cheers,
> Alexandre
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>  PharoDebug.log
> 27KViewDownload
>
>
Reply | Threaded
Open this post in threaded view
|

Re: Strange error in Metacello

Alexandre Bergel-5
Ok, cool!

Cheers,
Alexandre


On 24 Nov 2010, at 13:44, Dale wrote:

> As an aside, the work I'm doing right now for 1.0-beta.28, includes
> much better support for creating a new version programatically from a
> baseline version ... using the new algorithm would have eliminated the
> errors in 2.1.2...
>
> Dale
>
> On Nov 24, 6:11 am, Alexandre Bergel <[hidden email]> wrote:
>> Hi!
>>
>> Try :
>>
>> Gofer new
>>         squeaksource: 'Mondrian';
>>         package: 'ConfigurationOfMondrian';
>>         load.
>> (ConfigurationOfMondrian project version: '2.1.2') load
>>
>> I get an error: no such inst variable
>>
>> Any idea what goes wrong?
>>
>> Cheers,
>> Alexandre
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>  PharoDebug.log
>> 27KViewDownload
>>
>>

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.