Hello, VaidotasPlease 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. 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 |
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 Didbalis <[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 |
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 |
In reply to this post by vaidasd
I am coding in it now. Here are my notes:
|
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 > <[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'. > > > > > > > > > > |
Free forum by Nabble | Edit this page |