Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Hernán Morales Durand
Hi Thierry, Big thanks, with your suggestions I could install my package with the DeployUtils depdendency resolved, and all its dependencies (SystemLogger) also were loaded. I have to modify manually the baseline: method in my config because the Versionner expected a ConfigurationOf to be added as

Re: [Pharo-users] Roasssal not working on Windows with Pharo 6.1

2017-09-27 Thread Hernán Morales Durand
I couldn't reproduce any problem installing Pharo 6.1 in Windows 8.1 from command line: wget -O- get.pharo.org/61+vm | bash - And then installing Roassal from the Catalog Browser. All the examples ran wiithout problems. Cheers Hernán 2017-09-23 5:57 GMT-03:00 kmo : > Is it just me or my system

Re: [Pharo-users] X11 options on Ubuntu VM / Athens rendering problems

2017-09-27 Thread Igor Stasenko
imo, best what could be done is to forget about 32-bit version and use 64-bit VM & libs, to avoid problems like above. but for that, i need a 64-bit VM/image pair for a start, because one that you gave me is 32-bit.. and hence drags all the trouble with all this .so dependency zoo.. -- Best regar

Re: [Pharo-users] X11 options on Ubuntu VM / Athens rendering problems

2017-09-27 Thread Igor Stasenko
apparently the SDL2 library is not in LD search path ldd libSDL2DisplayPlugin.so linux-gate.so.1 => (0xf77e9000) libSDL2-2.0.so.0 => not found libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf75dd000) /lib/ld-linux.so.2 (0x56573000) so it simply doesn't starts, so i installed sudo apt-get in

Re: [Pharo-users] X11 options on Ubuntu VM / Athens rendering problems

2017-09-27 Thread Igor Stasenko
okay, first, i have to change the path to SDL2 library, because on my machine it's in /usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0 but there's another trouble: browsing is incredibly slooow... First, i used finder to look for 'libSDL2-2.0.so.0' in sources. it took like 2 minutes to go through first f

Re: [Pharo-users] X11 options on Ubuntu VM / Athens rendering problems

2017-09-27 Thread Igor Stasenko
On 27 September 2017 at 22:54, Stephane Ducasse wrote: > Igor I will share the dropbox for you. > What would be great is to port the code of clement to Pharo 6.1 or > even 70 to check SDL20 > Esteban was integrating some of the code of ronie. > > Downloading.. Would be nice, if someone could give

Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Hernán Morales Durand
Hi Stef 2017-09-27 4:32 GMT-03:00 Stephane Ducasse : > Hi hernan > > Are you creating a configurationOf or a baselineOf? ConfigurationOf > Do you have the Log and StringStreamLogger in your image? Because I > have the impression that they are not in > the DeployUtils package. If I install Deplo

Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Dale Henrichs
Hernán. Well I tried to look at this, but the first problem I ran into is that the package name is a Symbol (#ConfigurationOfSystemLogger) and the package name is supposed to be a String --- I'm trying to look at this from GemStone --- the package name is also a Symbol (#DeployUtils), so I can

Re: [Pharo-users] Roasssal not working on Windows with Pharo 6.1

2017-09-27 Thread Jan Blizničenko
I recommend replacing your VM by last stable one from http://files.pharo.org/vm/pharo-spur32/win/stable-20170827.zip and if it does not help, replacing the image by current one from http://files.pharo.org/image/60/60510.zip You probably use older image or VM that either contained some kind of bug

Re: [Pharo-users] X11 options on Ubuntu VM / Athens rendering problems

2017-09-27 Thread Stephane Ducasse
Igor I will share the dropbox for you. What would be great is to port the code of clement to Pharo 6.1 or even 70 to check SDL20 Esteban was integrating some of the code of ronie. Stef On Wed, Sep 27, 2017 at 1:05 PM, Igor Stasenko wrote: > i'm on ubuntu right now, so i could help with trying &

Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Stephane Ducasse
Thierry what is import: and why should it be recursive? On Wed, Sep 27, 2017 at 9:41 AM, Thierry Goubier wrote: > Hi Hernán, > > I think what is happening is you're not including completely the DeployUtils > baseline. You need to write something like: > > spec baseline: 'DeployUtils' with: [ >

Re: [Pharo-users] X11 options on Ubuntu VM / Athens rendering problems

2017-09-27 Thread Igor Stasenko
i'm on ubuntu right now, so i could help with trying & testing things and/or diagnosing problems. Just tell me what to do -- Best regards, Igor Stasenko.

Re: [Pharo-users] [Pharo-dev] Scraping HTML chapter 2 (soon chapter 3 coming)

2017-09-27 Thread Tudor Girba
Nice work! Doru > On Sep 27, 2017, at 9:25 AM, Stephane Ducasse wrote: > > I came with the idea of this booklet thank to Peter Kenny that kindly > answered a question on the Pharo mailing-list. > To help, Peter showed to a Pharoer how to scrap a web site > using XPath. In addition, some years

Re: [Pharo-users] Force headless mode

2017-09-27 Thread Cyril Ferlicot
On Wed, Sep 27, 2017 at 9:21 AM, Stephane Ducasse wrote: > What is important is to understand the ratio attacker vs. defense. > It is important not to be paranoid. > - against who are you protect yourself? > - if you do not ship source code (or if you ofuscate it) > - you can try remove the decomp

Re: [Pharo-users] Force headless mode

2017-09-27 Thread Cyril Ferlicot
On Tue, Sep 26, 2017 at 8:03 PM, Peter Uhnák wrote: > Out of curiosity... how does enforcing headlessness protects code? Wouldn't > it be still accessible via e.g. TelePharo, or startup script override, or > anything? > > Peter > > This is a first step. This is not all we will do but it is a step

Re: [Pharo-users] Force headless mode

2017-09-27 Thread Cyril Ferlicot
On Tue, Sep 26, 2017 at 7:04 PM, Sven Van Caekenberghe wrote: > > > Why not do as follows: > > (1) add some startup code inside the image that tests if the image is running > headless, if not exit > (2) remove some of the command line handlers (especially the ones that > execute or load code) >

Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Thierry Goubier
Hi Hernán, I think what is happening is you're not including completely the DeployUtils baseline. You need to write something like: spec baseline: 'DeployUtils' with: [ spec repository: 'github://fstephany/DeployUtils/repository']; import: 'DeployUtils'. And have one of the packages (or

Re: [Pharo-users] How to find if a method is being executed in a given process

2017-09-27 Thread Stephane Ducasse
Ah ok So you should look at what Pablo did because he is handling this case for code update, the idea is that he will put on the stack a kind of notifier so that you get aware when the m is not on the stack anymore. Stef On Mon, Sep 25, 2017 at 6:05 PM, Steven Costiou wrote: > Le 2017-09-25

Re: [Pharo-users] How to include DeployUtils in a Configuration?

2017-09-27 Thread Stephane Ducasse
Hi hernan Are you creating a configurationOf or a baselineOf? Do you have the Log and StringStreamLogger in your image? Because I have the impression that they are not in the DeployUtils package. Are the classes coming from the SystemLogger we wrote with Norbert? Because if this is the case you sh

Re: [Pharo-users] X11 options on Ubuntu VM / Athens rendering problems

2017-09-27 Thread Stephane Ducasse
Hi jeff you should give a try so that you can push esteban in his fight for a free host and strong SDL2.0 Stef On Mon, Sep 25, 2017 at 7:51 AM, Clément Bera wrote: > > > On Mon, Sep 25, 2017 at 2:33 AM, J.F. Rick wrote: >> >> Hi Clement and and Stef, >> >> thanks for sharing. The video looks c

Re: [Pharo-users] Force headless mode

2017-09-27 Thread Stephane Ducasse
What is important is to understand the ratio attacker vs. defense. It is important not to be paranoid. - against who are you protect yourself? - if you do not ship source code (or if you ofuscate it) - you can try remove the decompiler I do not think that people will do much. Now again how much tim