Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-23 Thread Sean P. DeNigris
Andrew Black-2 wrote >> spec >> baseline: 'SmaCC' with: [ spec loads: #('Reification' ) >> ] > > Can you tell me what this line actually means. That is, what does the > #baseline:with: method actually declare? It means load the 'Reification' group of the SmaCC

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-22 Thread Andrew Black
> On 22 Jul 2018, at 19:35 , Sean P. DeNigris wrote: > > Andrew Black-2 wrote >>> spec >>> baseline: 'SmaCC-Reification' >>> with: [ spec repository: 'github://apblack/SmaCC:fglr' >>> ]. > > This line will not work. What you're saying here

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-22 Thread Sean P. DeNigris
Andrew Black-2 wrote >> spec >> baseline: 'SmaCC-Reification' >> with: [ spec repository: 'github://apblack/SmaCC:fglr' >> ]. This line will not work. What you're saying here is load a BaselineOfXyz where Xyz = 'SmaCC-Reification'. In fact

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-22 Thread Sean P. DeNigris
Guillermo Polito wrote >> But then I must also specify the dependencies of the SmaCC-Reification >> package, so I need to add >> >> spec package: 'SmaCC-Reification' with: [ spec requires: >> #('SmaCC-Smalltalk-Parser' 'SmaCC-Runtime' 'SmaCC-Java') ] AFAICT this is not necessary because these

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-22 Thread Andrew Black
> On 21 Jul 2018, at 08:22 , Sean P. DeNigris wrote: > > Andrew P. Black wrote >> I don’t know what else to try! > > From the error message: >Could not resolve: BaselineOfSmaCC-Reification... in > https://github.com/apblack/SmaCC.git[working] > > I'm guessing that you can't load from two

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-21 Thread Sean P. DeNigris
Andrew P. Black wrote > I don’t know what else to try! >From the error message: Could not resolve: BaselineOfSmaCC-Reification... in https://github.com/apblack/SmaCC.git[working] I'm guessing that you can't load from two different branches of the same git repo. Can you fork the project and

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-20 Thread Andrew Black
I’ve spent another couple of hours on this, and here is where I stand. I can get SmaCC-Reification to load if I use the "load ...” menu in the Montecello extension menu to Iceberg — but only if I select the fglr branch manually. (this is reasonable, because that group is not on the working

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-20 Thread Andrew Black
> On 16 Jul 2018, at 07:27 , Guillermo Polito wrote: > > - I've cloned SmaCC > - I've checked out the flgr branch > - I've loaded the baseline and added > >> spec package: 'SmaCC-Reification' with: [ spec requires: >> #('SmaCC-Smalltalk-Parser' 'SmaCC-Runtime' 'SmaCC-Java') ] > - then,

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-16 Thread Guillermo Polito
Hi Andrew, Sorry for the late reply, On Wed, Jul 11, 2018 at 4:31 PM Andrew P. Black wrote: > Hi Guillermo, > > Thanks for the explanation. I guess that I really don't have much idea > how this baseline stuff is supposed to work, so when it fails, I don't know > where to look. > > My initial

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-16 Thread Andrew P. Black
Any more ideas o how to get this working? Andrew > On 11 Jul 2018, at 7:30, Andrew P. Black wrote: > > Hi Guillermo, > > Thanks for the explanation. I guess that I really don't have much idea how > this baseline stuff is supposed to work, so when it fails, I don't know where > to

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-09 Thread Guillermo Polito
To give a bit more of insight (and fill some holes in my explanation because I couldn't finish my coffee yet :)), actually, your baseline does not work because in the metacello spec you're saying that 'SmaCC-Reification' resides in Grace's repository, which is wrong I assume. So metacello will try

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-09 Thread Guillermo Polito
Hi Andrew, I'd say you got almost everything right. Let me try to guide you to fix what's not so well and see if you can make it work. On Sun, Jul 8, 2018 at 4:19 PM Andrew P. Black wrote: > I have a baselineOfGrace that has been working fine for some time: > > baseline: spec > > > spec for:

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-08 Thread Paul DeBruicker
Seems like its not looking in your iceberg directory/subdirectories for the SmaCC-Reification package. Just the package-cache and on github. Did you try adding a SmaCC-Reification specific repository declaration yet to your baseline? e.g. spec package: 'SmaCC-Reification' with:[

[Pharo-users] Changing a BaselineOf... to include one more package

2018-07-08 Thread Andrew P. Black
I have a baselineOfGrace that has been working fine for some time: > baseline: spec > > > spec for: #'common' do: [ > spec > baseline: 'SmaCC' > with: [ spec repository: > 'github://apblack/SmaCC:working' ]. >