[squeak-dev] [Ann] New build of 3.10.2-build

Keith Hodges keith_hodges at yahoo.co.uk
Mon Feb 16 12:19:22 UTC 2009


Damien Cassou wrote:
> On Fri, Feb 13, 2009 at 8:55 PM, Keith Hodges <keith_hodges at yahoo.co.uk> wrote:
>   
>> sake
>>  answer: '.*username.*' with: 'admin';
>>  answer: '.*password.*' with: 'seaside';
>>  answer: 'Would you like.*' with: true;
>>  answer: '.*port number.*' with: '8080';
>>  answer: '.*is .* running.*' with: true;
>>  answer: '.*name of your Pier kernel.*' with: 'Pier';
>>  answer: '.*entry point.*' with: 'pier';
>>  answer: '.*Application' with: true.
>>
>> Sake (should) already include these. The planned policy is that installs
>> should be non interactive by default.
>>     
>
> I don't think it's the case yet because the package declarations come
> from Universe which does not support that. As soon as I move
> completely to Sake, I will remove them.
>   
Ah, but the universe definitions are generated into PackagesDevU. This
is overridden in PackagesDev with the following:

Seaside

   super Seaside.
    self info mcName: 'Seaside2'.
    self answer: '*config*' with: 'seaside';
        answer: '*password*' with: 'admin'.
       
 PierSeaside

    super PierSeaside.
 
    self answer: '*Would*' with: true;
        answer: '*Pier kernel*' with: 'Pier';
        answer: '*entry point*' with: 'pier';
        answer: '*Pier-Application*' with: true;
        yourself

cheers

Keith



More information about the Squeak-dev mailing list