On 10-09-17 23:04, Mark Bestley wrote:
I downloaded 64bit Pharo from <http://files.pharo.org/platform/Pharo6.1-64-mac.zip>
Started it and first thing opend Catalog Browser. I searched for plot Chose pLotMorph and chose Install Stable Version
I got an Information window saying There was an error trying to install PlotMorph. Installation was cancelled.
To debug this: Instead of installing the stable version, load the configuration. Type shift-enter to open Spotter. Type Plot and enter to find ConfigurationOfPlotMorph and browse it. First take a look at method #stable to see what is defined there stable: spec <symbolicVersion: #'stable'> spec for: #'pharo3.x' version: '1.0'. spec for: #'pharo5.x' version: '1.0'. spec for: #'pharo6.x' version: '1.0'. That looks good, a stable version is defined for Pharo 6. A stable version is missing for Pharo 7 Take a look at #version10: version10: spec <version: '1.0'> spec package: 'PlotMorph' with: 'PlotMorph-StephaneDucasse.7'. Hmm, that doesn't look good. That is not a complete Metacello spec. It looks like the reference to the baseline is missing. baseline10: spec <version: '1.0-baseline'> spec for: #pharo do: [ spec blessing: #baseline. spec description: 'First Full Configuration'. spec author: 'StephaneDucasse'. spec timestamp: '29/12/2013 12:29'. spec repository: 'http://www.smalltalkhub.com/PharoExtras/PlotMorph/main'. spec package: 'PlotMorph' ]. Yep, there is the missing information. So let's fix the version10. We can do it in place, as this can not have worked. Otherwise we would have had to add a new version, and updated the #stable. Name: ConfigurationOfPlotMorph-StephanEggermont.4 Author: StephanEggermont Time: 11 September 2017, 12:09:08.46706 pm UUID: d297b6da-4815-0d00-8219-91680d9ac81c Ancestors: ConfigurationOfPlotMorph-StephaneDucasse.3 Fixed version10, added pharo 7 Stephan