I don't get anything really intelligible out of the error.  I get a debugger.  No idea what to make of this.



On Oct 19, 2019, at 2:56 AM, Sven Van Caekenberghe <sven@stfx.eu> wrote:

Hi Todd,

Both specify their dependency on Glorp almost the same way:

P3:

spec baseline: 'Glorp' with: [ spec repository: 'github://pharo-rdbms/glorp:master/'].

Sqlite3:

spec baseline: 'Glorp' with: [ spec repository: 'github://pharo-rdbms/glorp' ].

What exactly is the conflict ?

Sven

On 19 Oct 2019, at 10:26, Todd Blanchard via Pharo-users <pharo-users@lists.pharo.org> wrote:


From: Todd Blanchard <tblanchard@mac.com>
Subject: Glorp + P3 + SQLite
Date: 19 October 2019 at 10:26:10 GMT+2
To: Any question about pharo is welcome <pharo-users@lists.pharo.org>


I loaded GLORP+P3 without issue.

Trying to load SQLite3 - it also wants to load GLORP which complains of conflict.

For P3 I used:

Metacello new


baseline: 'P3'
;

repository: 'github://svenvc/P3'
;

load: 'glorp'.


For SQLite:

Metacello new


repository: 'github://PierceNg/glorp-sqlite3:pharo7'
;

baseline: 'GlorpSQLite'
;
load.


but this fails with a conflict.  I suspect the conflict is it wants to load in glorp again.

I would also like to have mysql driver at some point.

Any tips for getting these to play nice together would be great.