On 3 Oct 2018, at 14:12, Norbert Hartl <norbert@hartl.name> wrote:



Am 03.10.2018 um 14:02 schrieb Sven Van Caekenberghe <sven@stfx.eu>:

So I am trying to load GitHub/Tonel/BaselineOf code in Pharo 6.0.

I got a fresh 6.0 and I installed Tonel into it using

Metacello new 
repository: 'github://pharo-vcs/tonel';
baseline: 'Tonel';
load.

Which went OK

Fetched -> BaselineOfTonel-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- github://pharo-vcs/tonel:master
Loaded -> BaselineOfTonel-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- github://pharo-vcs/tonel:master
Loading baseline of BaselineOfTonel...
Fetched -> MonticelloTonel-Core-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- github://pharo-vcs/tonel:master
Fetched -> MonticelloTonel-FileSystem-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- github://pharo-vcs/tonel:master
Fetched -> MonticelloTonel-Tests-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- github://pharo-vcs/tonel:master
Loaded -> MonticelloTonel-Core-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- cache
Loaded -> MonticelloTonel-FileSystem-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- cache
Loaded -> MonticelloTonel-Tests-cypress.1 --- github://pharo-vcs/tonel:master [0317649:master] --- cache
...finished baseline

Then I try to load some code from me that has been converted to GitHub/Tonel/BaselineOf and that works fine in 6.1/7.0 and contains all meta info

Metacello new 
repository: 'github://svenvc/ztimestamp';
baseline: 'ZTimestamp';
load.

This fails

...RETRY->BaselineOfZTimestamp
...RETRY->BaselineOfZTimestamp
...FAILED->BaselineOfZTimestamp

Could not resolve: BaselineOfZTimestamp [BaselineOfZTimestamp] in /Users/sven/Tmp/pharo6/pharo-local/package-cache github://svenvc/ztimestamp:master

What am I doing wrong here ?

That is the behaviour I was talking about. Tonel in my case had read problem at the end of the stream. But I couldn���t figure out what it is

This is not Tonel. 
This is Metacello that still does not knows how to handle tonel (that���s why you need latest version)

Esteban


Norbert
Thx,

Sven