Re: [Pharo-users] Git overriding repo load from different source

2015-03-25 Thread Dale Henrichs
On 3/25/15 1:35 AM, Jan B. wrote: Hello I was able to get by those warnings automatically by adding onLock: [ :ex | ex disallow ]; in addition to onConflict Metacello new baseline: '...' repository: 'gitfiletree:///.../repository' onConflict: [ :ex | ex allow ]; onLock: [ :ex | ex disallow ];

Re: [Pharo-users] Git overriding repo load from different source

2015-03-25 Thread Dale Henrichs
On 3/24/15 11:47 PM, Peter Uhnák wrote: On Sun, Mar 22, 2015 at 11:19 PM, Dale Henrichs > wrote: I keep an eye out for posts with Metacello in the subject line so I missed this one ... I'll keep that in mind next time. If so then the tric

Re: [Pharo-users] Git overriding repo load from different source

2015-03-25 Thread Jan B.
Hello I was able to get by those warnings automatically by adding onLock: [ :ex | ex disallow ]; in addition to onConflict Metacello new baseline: '...' repository: 'gitfiletree:///.../repository' onConflict: [ :ex | ex allow ]; onLock: [ :ex | ex disallow ]; load I'm not sure whether it couldn'

Re: [Pharo-users] Git overriding repo load from different source

2015-03-24 Thread Peter Uhnák
On Sun, Mar 22, 2015 at 11:19 PM, Dale Henrichs < dale.henri...@gemtalksystems.com> wrote: > I keep an eye out for posts with Metacello in the subject line so I missed > this one ... > I'll keep that in mind next time. > If so then the trick is to use the Metacello `lock` ... Do the following >

Re: [Pharo-users] Git overriding repo load from different source

2015-03-24 Thread Peter Uhnák
> > I'm not sure how to answer all those cases Those were just options that came to my mind how to solve it - practically just one is needed. > (did I remember a conversation during PharoDays?). > We spoke only very briefly about something else since I didn't use Git at the time yet. > Can you

Re: [Pharo-users] Git overriding repo load from different source

2015-03-22 Thread Dale Henrichs
Peter, sorry for not answering sooner ... I keep an eye out for posts with Metacello in the subject line so I missed this one ... So if i understand your question, you have a GitHub project that you normally download like this: Metacello new baseline: 'Sample'; repository: 'github:/

Re: [Pharo-users] Git overriding repo load from different source

2015-03-21 Thread Thierry Goubier
Hi Peter, I'm not sure how to answer all those cases (did I remember a conversation during PharoDays?). Can you elaborate on a) and the failure? Because I remember looking at the ability to override conflicts in Metacello by just saying: onConflict: [:ex | ex allow ] (for example: Metacell

Re: [Pharo-users] Git overriding repo load from different source

2015-03-21 Thread Peter Uhnák
e) having separate baseline method which does not load github packages and expects that they are already loaded But since baseline only uses single method I don't see how this could be done.

Re: [Pharo-users] Git overriding repo load from different source

2015-03-21 Thread Peter Uhnák
d) unload all B packages, remove B github repo, load B locally However currently I can only unload packages one at a time manually, instead of all related to a repo. Peter