Seaside fails to load onto Squeak5.1

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

Seaside fails to load onto Squeak5.1

vaidasd
Hello,
Please advise, is it still possible to load Seaside these days? I cleared cache used v5.1 stock image and the script bellow fails on step #3, log attached.
Thank you.
Vaidotas


Installer gemsource
    project: 'metacello';
    addPackage: 'ConfigurationOfMetacello';
    install.

((Smalltalk at: #ConfigurationOfMetacello) project
  version: #'previewBootstrap') load.
   

(Smalltalk at: #Metacello) new
    configuration: 'Seaside3';
    repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
    version: #stable;
    load: 'OneClick'.



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

Seaside fails to load onto Squeak5.1

Louis LaBrunda
Hi Vaidotas,

I don't have time now to go into the steps I used but I have loaded Seaside into Squeak 5.1
successfully more than once.

Lou

On Wed, 21 Feb 2018 13:30:07 +0200, Vaidotas Didžbalis <[hidden email]> wrote:

>Hello,
>Please advise, is it still possible to load Seaside these days? I cleared
>cache used v5.1 stock image and the script bellow fails on step #3, log
>attached.
>Thank you.
>Vaidotas
>
>
>Installer gemsource
>    project: 'metacello';
>    addPackage: 'ConfigurationOfMetacello';
>    install.
>
>((Smalltalk at: #ConfigurationOfMetacello) project
>  version: #'previewBootstrap') load.
>
>
>(Smalltalk at: #Metacello) new
>    configuration: 'Seaside3';
>    repository: '
>http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>    version: #stable;
>    load: 'OneClick'.
--
Louis LaBrunda
Keystone Software Corp.
SkypeMe callto://PhotonDemon


Reply | Threaded
Open this post in threaded view
|

Re: Seaside fails to load onto Squeak5.1

Tobias Pape
In reply to this post by vaidasd
Hi Vaidotas,


> On 21.02.2018, at 12:30, Vaidotas Didžbalis <[hidden email]> wrote:
>
> Hello,
> Please advise, is it still possible to load Seaside these days? I cleared cache used v5.1 stock image and the script bellow fails on step #3, log attached.
> Thank you.
> Vaidotas
>
>
> Installer gemsource
>     project: 'metacello';
>     addPackage: 'ConfigurationOfMetacello';
>     install.
>
> ((Smalltalk at: #ConfigurationOfMetacello) project
>   version: #'previewBootstrap') load.
>    
>
> (Smalltalk at: #Metacello) new
>     configuration: 'Seaside3';
>     repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>     version: #stable;
>     load: 'OneClick'.

This is almost correct.
However, the Metacello version loaded with #previewBootstrap may not know about 5.1, so this should work:


"Get the Metacello configuration (for Squeak users)"
Installer gemsource
    project: 'metacello';
    addPackage: 'ConfigurationOfMetacello';
    install.

"Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic version"
((Smalltalk at: #ConfigurationOfMetacello) project
  version: #'previewBootstrap') load.

"Load the Preview version of Metacello from GitHub"
(Smalltalk at: #Metacello) new
  configuration: 'MetacelloPreview';
  version: #stable;
  repository: 'github://Metacello/metacello:configuration';
  load.

"Now load latest version of Metacello"
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  get.
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  load.

"-=-=-=-=-"

(Smalltalk at: #Metacello) new
    configuration: 'Seaside3';
    repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
    version: #stable;
    load: 'OneClick'.


At least we know from the CI that this should be working: https://travis-ci.org/SeasideSt/Seaside/jobs/338608198

Best regards
        -Tobias





tty
Reply | Threaded
Open this post in threaded view
|

Re: Seaside fails to load onto Squeak5.1

tty
In reply to this post by vaidasd
I am coding in it now.

Here are my notes:


Installer gemsource
    project: 'metacello';
    addPackage: 'ConfigurationOfMetacello';
    install.

"Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic version"
((Smalltalk at: #ConfigurationOfMetacello) project 
  version: #'previewBootstrap') load.

"Load the Preview version of Metacello from GitHub"
(Smalltalk at: #Metacello) new
  configuration: 'MetacelloPreview';
  version: #stable;
  repository: 'github://Metacello/metacello:configuration';
  load.

"Now load latest version of Metacello"
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  get.
(Smalltalk at: #Metacello) new
  baseline: 'Metacello';
  repository: 'github://Metacello/metacello:master/repository';
  load.


Metacello new
    configuration: 'Seaside3';
    repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
    version: #stable;
    load: 'OneClick'.

Metacello new
 baseline:'Bootstrap';
 repository: 'github://astares/Seaside-Bootstrap:master/src';
 load 



---- On Wed, 21 Feb 2018 06:30:07 -0500 Vaidotas Didžbalis <[hidden email]> wrote ----
Hello,
Please advise, is it still possible to load Seaside these days? I cleared cache used v5.1 stock image and the script bellow fails on step #3, log attached.
Thank you.
Vaidotas


Installer gemsource
    project: 'metacello';
    addPackage: 'ConfigurationOfMetacello';
    install.

((Smalltalk at: #ConfigurationOfMetacello) project
  version: #'previewBootstrap') load.
   

(Smalltalk at: #Metacello) new
    configuration: 'Seaside3';
    repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
    version: #stable;
    load: 'OneClick'.






Reply | Threaded
Open this post in threaded view
|

Re: Seaside fails to load onto Squeak5.1

Hannes Hirzel
Earlier discussion on the mailing list

Seaside status November 2016
Seaside works well on Squeak 5.1

http://wiki.squeak.org/squeak/6506

On 2/21/18, gettimothy <[hidden email]> wrote:

> I am coding in it now.
>
> Here are my notes:
>
>
>
> Installer gemsource
>     project: 'metacello';
>     addPackage: 'ConfigurationOfMetacello';
>     install.
>
>
> "Bootstrap Metacello Preview, using mcz files (#'previewBootstrap' symbolic
> version"
> ((Smalltalk at: #ConfigurationOfMetacello) project
>   version: #'previewBootstrap') load.
>
>
> "Load the Preview version of Metacello from GitHub"
> (Smalltalk at: #Metacello) new
>   configuration: 'MetacelloPreview';
>   version: #stable;
>   repository: 'github://Metacello/metacello:configuration';
>   load.
>
>
> "Now load latest version of Metacello"
> (Smalltalk at: #Metacello) new
>   baseline: 'Metacello';
>   repository: 'github://Metacello/metacello:master/repository';
>   get.
> (Smalltalk at: #Metacello) new
>   baseline: 'Metacello';
>   repository: 'github://Metacello/metacello:master/repository';
>   load.
>
>
>
>
> Metacello new
>     configuration: 'Seaside3';
>     repository:
> 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>     version: #stable;
>     load: 'OneClick'.
>
>
> Metacello new
>  baseline:'Bootstrap';
>  repository: 'github://astares/Seaside-Bootstrap:master/src';
>  load
>
>
>
> ---- On Wed, 21 Feb 2018 06:30:07 -0500 Vaidotas Didžbalis
> &lt;[hidden email]&gt; wrote ----
>
> Hello,
> Please advise, is it still possible to load Seaside these days? I cleared
> cache used v5.1 stock image and the script bellow fails on step #3, log
> attached.
> Thank you.
>
> Vaidotas
>
>
> Installer gemsource
>     project: 'metacello';
>     addPackage: 'ConfigurationOfMetacello';
>     install.
>
> ((Smalltalk at: #ConfigurationOfMetacello) project
>   version: #'previewBootstrap') load.
>
>
> (Smalltalk at: #Metacello) new
>     configuration: 'Seaside3';
>     repository:
> 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
>     version: #stable;
>     load: 'OneClick'.
>
>
>
>
>
>
>
>
>
>