[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-29 Thread Emilio Oca
t; But if Iceberg is involved, I am not the person to ask ... I am not > familiar with the changes that have been made to Metacello to get it to > work with Iceberg ... > > Dale > > > > On Fri, Apr 29, 2022 at 3:16 PM Emilio Oca wrote: > >> Hi Dale >> >

[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-29 Thread Emilio Oca
his would be a good pattern to follow when reloading projects after > updating from github ... and I am a bit surprised that this question is not > asked more often :) > > Dale > > On Mon, Apr 25, 2022 at 6:06 PM Emilio Oca wrote: > >> Hi Gabriel, Dale! >> >>

[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-25 Thread Emilio Oca
Esteban Lorenzano > wrote: > >> mmm, you may be having another problem elsewhere, because what I typed >> should be working (is how we enforce the load of new versions to run the >> tests, for example). >> >> Esteban >> >> On Apr 25 2022, at 11:30 pm

[Pharo-users] Re: Loading from a git repository with Metacello on a running seaside image

2022-04-25 Thread Emilio Oca
ifNotNil: [ :aPackage | aPackage removeFromSystem ] ] > > > I ack this is hacky, but it works :) > > Esteban > > On Apr 23 2022, at 3:21 am, Emilio Oca wrote: > > Hi List > > I need some help with Metacello, and may be git too > > I would like to be

[Pharo-users] Loading from a git repository with Metacello on a running seaside image

2022-04-22 Thread Emilio Oca
Hi List I need some help with Metacello, and may be git too I would like to be able to, in a running headless image, load the last commit of a git repo Something like Metacello new baseline:'MyProject'; repository: 'github://myUser/MyProject:main/myProject'; load. works just once and may open so

Re: [Pharo-users] Pharo on rhel 6.5 and libasound.so.2

2015-09-02 Thread Emilio Oca
nd is alsa on my deps. Maybe yum install -y alsa-lib.i686 would do the trick. HTH Phil On Wed, Sep 2, 2015 at 7:31 PM, Emilio Oca wrote: Hi! I think I need some help here. I am trying to run a pharo seaside on a corporate RHEL 6.5 box. I downloaded this http://files.pharo.org/pla

[Pharo-users] Pharo on rhel 6.5 and libasound.so.2

2015-09-02 Thread Emilio Oca
Hi! I think I need some help here. I am trying to run a pharo seaside on a corporate RHEL 6.5 box. I downloaded this http://files.pharo.org/platform/Pharo4.0-centos.zip and deployed its contents on a directory. Gabe rights to execute and tried the first steps on this tutorial http://astares.blogsp

Re: [Pharo-users] [Pharo-dev] Pharo on bitnami

2015-06-08 Thread Emilio Oca
Hi, Yes, my experience with bitnami's products and assistance is really good too. Besides running in the cloud, I think that having installer scrips to deploy on Windows, Osx or Ubuntu and virtual machines increases chances to successfully deploy on, for example, reluctant IT guys' corporate ser

[Pharo-users] [spec] set ballonText on a treeNode

2014-04-07 Thread Emilio Oca
Hi I think this is spec related. How can I set a ballonText on aTreeNode? I was expecting something like: tree childrenBlock: [ :anObject | self childrenFor: anObject ]; displayBlock: [ :anObject | self labelFor: anObject ];

Re: [Pharo-users] Fwd: NativeBoost and standard out

2014-02-07 Thread Emilio Oca
lists.pharo.org > Asunto: Re: [Pharo-users] Fwd: NativeBoost and standard out > > Emilio Oca-3 wrote > >> Maybe does this help > > Yes! beatiful and lovely > > Ugh, we really need to document the external process options so people > don't > have to go throu

Re: [Pharo-users] Fwd: NativeBoost and standard out

2014-02-07 Thread Emilio Oca
startWithShellCommand: 'dir | sort'; >upToEnd > > Hernán > > El 23/12/2013 16:06, Sean P. DeNigris escribió: > > Emilio Oca-3 wrote > >> Hi > >> > >> > >> > >> Is it possible to get the stdout results when runn

Re: [Pharo-users] NativeBoost and standard out

2014-02-06 Thread Emilio Oca
Hi Esteban > I recommend you to take a look at this:  > http://smalltalkhub.com/#!/~OS/OS-Windows > there can be a solution (not sure, because I never used it) Yes I did, I got something like this si := WinStartupInfo new. si wShowWindow: 0. pi := WinProcessInformation new. WinProc

Re: [Pharo-users] Fwd: NativeBoost and standard out

2014-02-06 Thread Emilio Oca
age: 'ProcessWrapper-Plugin'; > package: 'ProcessWrapper-Tests'; > load. > > ProcessWrapper new >useStdout; >startWithShellCommand: 'dir | sort'; >upToEnd > > Hernán > > El 23/12/2013 16:06