Re: [Pharo-users] Glorp + P3 + SQLite

2019-11-21 Thread Pavel Krivanek
Hi Todd, we want to do some more testing before merging it into the upstream repository. -- Pavel čt 21. 11. 2019 v 14:34 odesílatel Todd Blanchard via Pharo-users < pharo-users@lists.pharo.org> napsal: > Hi Pavel, > > I've just gotten around to figuring out BaslineOf and packages. I see > thi

Re: [Pharo-users] Glorp + P3 + SQLite

2019-11-21 Thread Todd Blanchard via Pharo-users
--- Begin Message --- Hi Pavel, I've just gotten around to figuring out BaslineOf and packages. I see this work is in a branch on your own repository. Do you plan to do a pull request back to the original repository? I feel like we have database code all over the place and no clear "official"

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-22 Thread Paul DeBruicker
The error you hit was because the package loader was smart enough to notice that there was a version conflict between the version of a subproject already in the image and what the new load instructions were telling it to load. The title of the debugger you pasted in alludes to that fact. So wha

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-22 Thread Todd Blanchard via Pharo-users
--- Begin Message --- Nice! Thanks. So here is maybe a stupid question (and I'm gonna read the wiki stuff on packages next) but it seems to me that the package loader should notice that glorp is already loaded and not load it if glorp is specified as a prerequisite but instead it fails. Is th

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-20 Thread Hernán Morales Durand
Hi Todd, El sáb., 19 oct. 2019 a las 13:11, Todd Blanchard via Pharo-users (< pharo-users@lists.pharo.org>) escribió: > I should probably mention that I do not really have a great handle on how > package configurations work these days. > > Coming back to Smalltalk after a long time away. > > Welc

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Pierce Ng
On Sat, Oct 19, 2019 at 01:26:10AM -0700, Todd Blanchard via Pharo-users wrote: > I loaded GLORP+P3 without issue. > Trying to load SQLite3 - it also wants to load GLORP which complains of > conflict. Todd, to load SQLite3 only: Metacello new repository: 'github://astares/Pharo-UDBC/src';

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Todd Blanchard via Pharo-users
--- Begin Message --- I should probably mention that I do not really have a great handle on how package configurations work these days. Coming back to Smalltalk after a long time away. Pointer to an explanation of how package configurations work would be great. --- End Message ---

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Pavel Krivanek
Btw. there exists an updated version of Glorp: github://pavel-krivanek/glorp:8.3.1-23-baseline But the compatibility of it with SQLite was never tested -- Pavel so 19. 10. 2019 v 10:27 odesílatel Todd Blanchard via Pharo-users < pharo-users@lists.pharo.org> napsal: > I loaded GLORP+P3 without is

Re: [Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Sven Van Caekenberghe
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

[Pharo-users] Glorp + P3 + SQLite

2019-10-19 Thread Todd Blanchard via Pharo-users
--- Begin Message --- 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: 'gith