On Mon, Jan 20, 2014 at 7:31 PM, Bob Arning <[hidden email]> wrote:
> I tried that and got > > Error: Name not found: Kom > 20 January 2014 1:29:53.541 pm > > VM: Mac OS - Smalltalk > Image: Squeak4.4 [latest update: #12327] > > SecurityManager state: > Restricted: false > FileAccess: true > SocketAccess: true > Working Dir /Users/bob/squeak/SECOG > Trusted Dir /foobar/tooBar/forSqueak/bogus/ > Untrusted Dir /Users/bob/Library/Preferences/Squeak/Internet/Untrusted > > MetacelloMCVersionSpec(Object)>>error: > Receiver: spec blessing: #'development'. > spec author: 'JohanBrichau'. > spec timestamp: '12/31/2013 08...etc... > Arguments and temporary variables: > aString: 'Name not found: Kom' > Receiver's instance variables: > project: ConfigurationOfSeaside3(3.0.0-alpha5-baseline > [ConfigurationOfSeaside3...etc... > loader: a MetacelloFetchingMCSpecLoader(linear load : ) > versionString: '3.1.0' > blessing: spec value: #development > description: nil > author: spec value: 'JohanBrichau' > timestamp: spec value: '12/31/2013 08:50' > preLoadDoIt: nil > postLoadDoIt: nil > packages: spec add: [ > spec > name: 'SPort2'; > projectReference: [ > spe...etc... > repositories: spec > repository: 'http://smalltalkhub.com/mc/Seaside/Seaside31/ma...etc... > > [] in MetacelloMCVersionSpec>>resolveToLoadableSpec:forMap:packages: > Receiver: spec blessing: #'development'. > spec author: 'JohanBrichau'. > spec timestamp: '12/31/2013 08...etc... > Arguments and temporary variables: > <<error during printing> > Receiver's instance variables: > project: ConfigurationOfSeaside3(3.0.0-alpha5-baseline > [ConfigurationOfSeaside3...etc... > loader: a MetacelloFetchingMCSpecLoader(linear load : ) > versionString: '3.1.0' > blessing: spec value: #development > description: nil > author: spec value: 'JohanBrichau' > timestamp: spec value: '12/31/2013 08:50' > preLoadDoIt: nil > postLoadDoIt: nil > packages: spec add: [ > spec > name: 'SPort2'; > projectReference: [ > spe...etc... > repositories: spec > repository: 'http://smalltalkhub.com/mc/Seaside/Seaside31/ma...etc... > > Any hints what I'm doing wrong? The "Kom" group is not available for Squeak, try "WebClient" instead. Cheers Philippe _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
On 1/20/14 1:49 PM, Philippe Marschall wrote: > The "Kom" group is not available for Squeak, try "WebClient" instead. OK, so I tried ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) load: #( 'WebClient'). And got: Error: Could not resolve: WebClient-Seaside [WebClient-Seaside-ar.10] in /Users/bob/squeak/SECOG/package-cache http://smalltalkhub.com/mc/Seaside/Seaside31/main 20 January 2014 2:19:56.365 pm VM: Mac OS - Smalltalk Image: Squeak4.4 [latest update: #12327] SecurityManager state: Restricted: false FileAccess: true SocketAccess: true Working Dir /Users/bob/squeak/SECOG Trusted Dir /foobar/tooBar/forSqueak/bogus/ Untrusted Dir /Users/bob/Library/Preferences/Squeak/Internet/Untrusted MetacelloFetchingMCSpecLoader(Object)>>error: Receiver: a MetacelloFetchingMCSpecLoader(linear load : 3.1.0 [ConfigurationOfSeaside3] linear load...etc... Arguments and temporary variables: aString: 'Could not resolve: WebClient-Seaside [WebClient-Seaside-ar.10] in /Us...etc... Receiver's instance variables: spec: a MetacelloMCVersionSpecLoader operator: nil loaderPolicy: a MetacelloLoaderPolicy disablePackageCache: false Not clear on what this is telling me... Cheers, Bob _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Hi Bob,
In the ConfigurationOfSeaside3>># this line: spec package: 'WebClient-Seaside' with: [ spec requires: #('WebClient Project' 'Seaside-Core') ]. should've been this: spec package: 'WebClient-Seaside' with: [ spec repository: 'http://www.squeaksource.com/WebClient'. spec requires: #('WebClient Project' 'Seaside-Core') ]. I've uploaded a working configuration here: MCHttpRepository location: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main' user: '' password: '' Let me know if you find other errors. Sorry for the delay. Paul
|
derp ... first line should've been:
"In the ConfigurationOfSeaside3>>#baseline310adaptors: method"
|
In reply to this post by Paul DeBruicker
On 23.01.2014, at 22:20, Paul DeBruicker <[hidden email]> wrote: > Hi Bob, > > In the ConfigurationOfSeaside3>># > > > > this line: > > spec package: 'WebClient-Seaside' with: [ spec requires: #('WebClient > Project' 'Seaside-Core') ]. > > > should've been this: > > > spec > package: 'WebClient-Seaside' > with: [ spec repository: 'http://www.squeaksource.com/WebClient'. No. It should be 'http://ss3.gemtalksystems.com/ss/WebClient' as it was the Time I updated the config;;;;; :/ Best -Tobias > spec requires: #('WebClient Project' 'Seaside-Core') ]. > > > I've uploaded a working configuration here: > > MCHttpRepository > location: > 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main' > user: '' > password: '' > > Let me know if you find other errors. Sorry for the delay. > > > Paul > > > Bob Arning-2 wrote >> On 1/20/14 1:49 PM, Philippe Marschall wrote: >>> The "Kom" group is not available for Squeak, try "WebClient" instead. >> OK, so I tried >> >> ((Smalltalk at: #ConfigurationOfSeaside3) project version: #stable) >> load: #( 'WebClient'). >> >> And got: >> >> Error: Could not resolve: WebClient-Seaside [WebClient-Seaside-ar.10] in >> /Users/bob/squeak/SECOG/package-cache >> http://smalltalkhub.com/mc/Seaside/Seaside31/main >> 20 January 2014 2:19:56.365 pm >> >> VM: Mac OS - Smalltalk >> Image: Squeak4.4 [latest update: #12327] >> >> SecurityManager state: >> Restricted: false >> FileAccess: true >> SocketAccess: true >> Working Dir /Users/bob/squeak/SECOG >> Trusted Dir /foobar/tooBar/forSqueak/bogus/ >> Untrusted Dir /Users/bob/Library/Preferences/Squeak/Internet/Untrusted >> >> MetacelloFetchingMCSpecLoader(Object)>>error: >> Receiver: a MetacelloFetchingMCSpecLoader(linear load : 3.1.0 >> [ConfigurationOfSeaside3] >> linear load...etc... >> Arguments and temporary variables: >> aString: 'Could not resolve: WebClient-Seaside >> [WebClient-Seaside-ar.10] in /Us...etc... >> Receiver's instance variables: >> spec: a MetacelloMCVersionSpecLoader >> operator: nil >> loaderPolicy: a MetacelloLoaderPolicy >> disablePackageCache: false >> >> Not clear on what this is telling me... >> >> Cheers, >> Bob >> _______________________________________________ >> seaside mailing list > >> seaside@.squeakfoundation > >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > > > > > -- > View this message in context: http://forum.world.st/ANN-Seaside-3-1-and-3-0-10-release-tp4732637p4738852.html > Sent from the Seaside General mailing list archive at Nabble.com. > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Huh. I wonder who deleted it from the spec in the first place. Regardless I've changed it to point to 'http://ss3.gemtalksystems.com/ss/WebClient' Thanks for the heads up Paul |
On 24 Jan 2014, at 15:55, Paul DeBruicker <[hidden email]> wrote: > Huh. I wonder who deleted it from the spec in the first place. Regardless > I've changed it to point to > > 'http://ss3.gemtalksystems.com/ss/WebClient' > > > Thanks for the heads up Actually that repo spec was never in there for the 'Webclient-Seaside' package. it was only specified for the Webclient project. Maybe useful to know: if you test a metacello load, it's important to clear your package cache. Since we do not have automated builds for Squeak, this goes unnoticed. Thanks for taking care of this! Johan_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
On 24.01.2014, at 20:04, Johan Brichau <[hidden email]> wrote: > > On 24 Jan 2014, at 15:55, Paul DeBruicker <[hidden email]> wrote: > >> Huh. I wonder who deleted it from the spec in the first place. Regardless >> I've changed it to point to >> >> 'http://ss3.gemtalksystems.com/ss/WebClient' >> >> >> Thanks for the heads up > > Actually that repo spec was never in there for the 'Webclient-Seaside' package. > it was only specified for the Webclient project. sorry. best -tobias > > Maybe useful to know: if you test a metacello load, it's important to clear your package cache. > Since we do not have automated builds for Squeak, this goes unnoticed. > > Thanks for taking care of this! > Johan_______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside signature.asc (1K) Download Attachment |
Free forum by Nabble | Edit this page |