Re: [Pharo-dev] ConfigurationOf and Git

2015-10-24 Thread Gabriel Cotelli
In case anyone is interested, I've managed to re-use the BaselineOf definition inside the ConfigurationOf. If you need to do something similar take a look at https://github.com/gcotelli/RenoirSt/tree/master/source/ConfigurationOfRenoirSt.package/ConfigurationOfRenoirSt.class/instance This allows t

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-22 Thread Dale Henrichs
On 10/22/2015 05:31 AM, Ben Coman wrote: On Thu, Oct 22, 2015 at 1:30 AM, Dale Henrichs wrote: On 10/21/2015 05:55 AM, Ben Coman wrote: On Wed, Oct 21, 2015 at 2:49 AM, Dale Henrichs wrote: Here's the documentation for the Metacello github:// repository description[1]. ... In recent ve

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-22 Thread Ben Coman
On Thu, Oct 22, 2015 at 1:30 AM, Dale Henrichs wrote: > > > On 10/21/2015 05:55 AM, Ben Coman wrote: > > > > On Wed, Oct 21, 2015 at 2:49 AM, Dale Henrichs > wrote: >> >> Here's the documentation for the Metacello github:// repository >> description[1]. ... >> >> In recent versions of Metacello I

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-21 Thread Dale Henrichs
On 10/21/2015 05:55 AM, Ben Coman wrote: On Wed, Oct 21, 2015 at 2:49 AM, Dale Henrichs > wrote: Here's the documentation for the Metacello github:// repository description[1]. ... In recent versions of Metacello I have made it possible

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-21 Thread Ben Coman
On Wed, Oct 21, 2015 at 2:49 AM, Dale Henrichs < dale.henri...@gemtalksystems.com> wrote: > Here's the documentation for the Metacello github:// repository > description[1]. ... > > In recent versions of Metacello I have made it possible for you to use > pattern matching in the to provide for > s

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-20 Thread Dale Henrichs
Here's the documentation for the Metacello github:// repository description[1]. ... In recent versions of Metacello I have made it possible for you to use pattern matching in the to provide for symbolic-version-like facility for github references. Instead of stableForPharo4 you would associ

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-20 Thread Dimitris Chloupis
you diffirent versions can also be branches of the same repo , so you have one branch for pharo 4 and one for pharo 5 , baseline can load code from specific branches. On Tue, Oct 20, 2015 at 4:14 PM Gabriel Cotelli wrote: > I've tried something like this with a BaselineOf and it works, but I wan

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-20 Thread Gabriel Cotelli
I've tried something like this with a BaselineOf and it works, but I want to define the #stable version for a ConfigurationOf because as far as I know the ConfigurationBrowser/CatalogBrowser uses only configurations and tries to load the stable symbolic version. On Tue, Oct 20, 2015 at 4:06 AM, Ma

Re: [Pharo-dev] ConfigurationOf and Git

2015-10-20 Thread Max Leske
Hi Gabriel, Looks ok to me. Take a look at https://github.com/theseion/LibGit/blob/master/BaselineOfLibGit.package/BaselineOfLibGit.class/instance/baseline..st. I think you’ll find all your use cases in that baseline. As for loading: Metacello new baseline: #LibGit; repository: 'github://

[Pharo-dev] ConfigurationOf and Git

2015-10-19 Thread Gabriel Cotelli
I was wondering if something like this can work: Given a ConfigurationOfProject (a subclass of ConfigurationOf) defining: stable: spec spec for: #'pharo4.0.x' do: [spec baseline: 'Project' with: [ spec repository: 'github://username/Project:stableForPharo4/']]. spec for: #'pharo5.0.x' do: [spec

[Pharo-dev] ConfigurationOf versions with development blessing

2015-10-15 Thread Juraj Kubelka
Hi! Andrei and I have had an issue loading our configuration using the following script: Gofer it smalltalkhubUser: 'Moose' project: 'GToolkit'; configurationOf: 'GTSpotter'; loadDevelopment. It was loading an old version, instead of expected one. Moreover, the following

Re: [Pharo-dev] ConfigurationOf and github

2014-03-04 Thread Sebastian Sastre
n the > 200 range. > > Thierry > > De : Pharo-dev [pharo-dev-boun...@lists.pharo.org] de la part de Sebastian > Sastre [sebast...@flowingconcept.com] > Envoyé : mardi 4 mars 2014 18:53 > À : Pharo Development List > Objet : Re: [Pharo-dev] ConfigurationOf and github >

Re: [Pharo-dev] ConfigurationOf and github

2014-03-04 Thread GOUBIER Thierry
astre [sebast...@flowingconcept.com] Envoyé : mardi 4 mars 2014 18:53 À : Pharo Development List Objet : Re: [Pharo-dev] ConfigurationOf and github fantastic Thierry. gitfiletree did it. One thing I didn’t get straight yet is version numbers. The ConfigurationOfAltBrowser seems to be able to sp

Re: [Pharo-dev] ConfigurationOf and github

2014-03-04 Thread Sebastian Sastre
fantastic Thierry. gitfiletree did it. One thing I didn’t get straight yet is version numbers. The ConfigurationOfAltBrowser seems to be able to specify the package version and I always see/get SebastianSastre.1 sounds familiar? On Mar 4, 2014, at 12:28 PM, Goubier Thierry wrote: > Le 04

Re: [Pharo-dev] ConfigurationOf and github

2014-03-04 Thread Goubier Thierry
Le 04/03/2014 16:14, Sebastian Sastre a écrit : gitfiletree sounds great Thanks :) Question… The filetree code /has/ to be in the repo’s root or can I specify a subdir? No, you can put it anywhere you like. That's part of my professional requirements for using Pharo and git. I ask beca

Re: [Pharo-dev] ConfigurationOf and github

2014-03-04 Thread Sebastian Sastre
gitfiletree sounds great Question… The filetree code has to be in the repo’s root or can I specify a subdir? I ask because I use to put some other stuff beside filetree and I use to put the filetree code in a src/ subdir For example now I’m working on the new ConfigurationOfOmniBase here: ht

Re: [Pharo-dev] ConfigurationOf and github

2014-03-03 Thread p...@highoctane.be
The PharoVM VMMaker and friends are loaded like that. Check https://github.com/philippeback/pharo-vm/blob/master/scripts/LoadVMMaker.st Phil On Mon, Mar 3, 2014 at 4:23 PM, Sebastian Sastre < sebast...@flowingconcept.com> wrote: > Is it possible to make a ConfigurationOf that takes code fro

Re: [Pharo-dev] ConfigurationOf and github

2014-03-03 Thread Yuriy Tymchuk
Hi. Something like: baseline01: spec spec for: #common do: [ spec blessing: #baseline. spec repository: 'github://Uko/Renraku:master'. spec package: 'Renraku'; package: 'Renr

Re: [Pharo-dev] ConfigurationOf and github

2014-03-03 Thread Goubier Thierry
There are two ways: Read-only, no dependencies, no registering to github, 3.0 only: spec repository: 'github://dalehenrich/MetacelloRepository:master/monticello/repos/itory/path' Not in use in any configuration that I know off. I intend to use it :) Perfect for stable stuff. Read-write, re

[Pharo-dev] ConfigurationOf and github

2014-03-03 Thread Sebastian Sastre
Is it possible to make a ConfigurationOf that takes code from github? If so, is it there any example so I can take a look? thanks! sebastian o/

Re: [Pharo-dev] ConfigurationOf

2013-11-27 Thread Pavel Krivanek
Will we have a special subclass for system configurations (configurations for the basic Pharo components)? -- Pavel 2013/11/27 Esteban Lorenzano > > > > On Wed, Nov 27, 2013 at 1:04 PM, Torsten Bergmann wrote: > >> Esteban wrote: >> >it should >> >we just integrated metacello2, it is not a ch

Re: [Pharo-dev] ConfigurationOf

2013-11-27 Thread Esteban Lorenzano
On Wed, Nov 27, 2013 at 1:04 PM, Torsten Bergmann wrote: > Esteban wrote: > >it should > >we just integrated metacello2, it is not a change of ours, is Dale's... > and Dale is very concerned with backward compatibility, >so anything could > be used. > > Think of a config like ConfigurationOfPomod

Re: [Pharo-dev] ConfigurationOf

2013-11-27 Thread Torsten Bergmann
Esteban wrote: >it should >we just integrated metacello2, it is not a change of ours, is Dale's... and >Dale is very concerned with backward compatibility, >so anything could be >used.  Think of a config like ConfigurationOfPomodoro - I can load it in Pharo 3.0 and Pharo2.0 right from the confi

Re: [Pharo-dev] ConfigurationOf

2013-11-27 Thread Esteban Lorenzano
it should we just integrated metacello2, it is not a change of ours, is Dale's... and Dale is very concerned with backward compatibility, so anything could be used. In fact, you can load metacello2 into pharo2... if you want to use a ConfigurationOf subclass. Esteban On Wed, Nov 27, 2013 at 12:4

Re: [Pharo-dev] ConfigurationOf

2013-11-27 Thread p...@highoctane.be
Not to be speaking of MetacelloToolBox supporting that. Does it? --- Philippe Back Dramatic Performance Improvements Mob: +32(0) 478 650 140 | Fax: +32 (0) 70 408 027 Mail:p...@highoctane.be | Web: http://philippeback.eu Blog: http://philippeback.be | Twitter: @philippeback Youtube: http://www.yo

Re: [Pharo-dev] ConfigurationOf

2013-11-27 Thread Tudor Girba
Thanks for raising this issue up. Indeed, we should find a solution here. Does anyone have any thoughts about this? Doru On Wed, Nov 27, 2013 at 12:09 PM, Torsten Bergmann wrote: > > In Pharo 3.0 there is a new class "ConfigurationOf" > > which I can subclass for my configurations. > > > > But

Re: [Pharo-dev] ConfigurationOf

2013-11-27 Thread Torsten Bergmann
> In Pharo 3.0 there is a new class "ConfigurationOf" > which I can subclass for my configurations. > > But then my config is not loadable in Pharo 2.0. > > The problem is that when people migrate the configs > often are adopted for Pharo30 and still work for Pharo20. > > So one can use this new

[Pharo-dev] ConfigurationOf

2013-11-27 Thread Torsten Bergmann
In Pharo 3.0 there is a new class "ConfigurationOf" which I can subclass for my configurations. But then my config is not loadable in Pharo 2.0. The problem is that when people migrate the configs often are adopted for Pharo30 and still work for Pharo20. So one can use this new shiny common supe