krfkeith / metacello

Automatically exported from code.google.com/p/metacello
0 stars 0 forks source link

get wrong reference to load a package version such as '.1', '.11' developed by the same guy #187

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I attached a document that explains the steps to reproduce the problem, the 
expected output and what I see instead.

The version of products we are using are:

GLASS version 3.0.1.

Pharo 1.0

ConfigurationOfGsMonticello-dkh.143
ConfigurationOfMetacello-dkh.675
ConfigurationOfGoferProjectLoader-DaleHenrichs.21
ConfigurationOfGsMonticello-dkh.143

Original issue reported on code.google.com by sergio....@gmail.com on 6 Jan 2015 at 9:26

Attachments:

GoogleCodeExporter commented 9 years ago
From what I can tell by looking at the cod, you are correct that Metacello 
should not be loading the .1 version of that package ...

This bug actually rings a bell and is likely to have been fixed in a newer 
version of Metacello ... since you are using GemStone, I would recommend that 
you make a backup of your system, and then load the latest version of Metacello 
using the following expression:

Gofer new
  package: 'GsUpgrader-Core';
  url: 'http://ss3.gemtalksystems.com/ss/gsUpgrader';
  load.
(Smalltalk at: #GsUpgrader) upgradeMetacello.

I'm also tempted to ask you to upgrade to the latest version of GLASS using the 
following (this includes a Metacello upgrade):

Gofer new
  package: 'GsUpgrader-Core';
  url: 'http://ss3.gemtalksystems.com/ss/gsUpgrader';
  load.
(Smalltalk at: #GsUpgrader) upgradeGLASS.

Just to make sure that you are running with the latest version of GLASS as 
well, but I don't think that upgrading GLASS is required.

Once you've upgraded try the load again and let me know if it works. Make sure 
that you've got your Transcript open when you give this a try and if it doesn't 
work, attach the contents of the Transacript to this report ...

Original comment by dale.hen...@gemtalksystems.com on 6 Jan 2015 at 10:06