Hi Sven, You still need latest metacello. This is the list of requirements to use metacello and tonel. 1. Latest metacello: Metacello new baseline: 'Metacello'; repository: 'github://metacello/metacello:pharo-6.1_dev/repository'; onConflict: [ :ex | ex useIncoming ]; load. 2. Tonel Metacello new repository: 'github://pharo-vcs/tonel'; baseline: 'Tonel'; load. Both can be loaded in any order, but you need both :) Esteban
On 3 Oct 2018, at 14:02, Sven Van Caekenberghe <sven@stfx.eu> wrote:
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 ?
Thx,
Sven