Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-31 Thread Tim Mackinnon
I wasn’t clear on which image to retry - the https://ci.inria.fr/pharo/job/Pharo-6.0-Update-Step-3.2-Minimal/lastSuccessfulBuild/artifact/Pharo-minimal-64.zip one still shows as b

Re: [Pharo-users] Problems verifying the cryptographic signature of a file.

2017-07-31 Thread Esteban A. Maringolo
How do check the signature of a file? I guess you must ensure the file creation is complete as well as its digital signing. So if these steps are done asynchronously you should synchronize them by means of a semaphore or similar. Regards! Esteban A. Maringolo 2017-07-31 14:11 GMT-03:00 Offray

[Pharo-users] Problems verifying the cryptographic signature of a file.

2017-07-31 Thread Offray Vladimir Luna Cárdenas
Hi, I'm having problems to verify the cryptographic signature of a file. It seems that the test is running, some times, while the file is being created, and some times when the file writing is finished (which is my purpose). How can I run the cryptographic signature verification only after the wri

Re: [Pharo-users] Pharo 6.0 and 6.1 64 bit freeze on MacMini

2017-07-31 Thread Guillermo Polito
Also, - How did you install pharo? Command line and zero conf? Website download link? - What does it mean to "freeze"? - Do you have an exception? a PharoDebug.log file? a crash.dmp? Can you try to open you image from the command line? $ Pharo.app/Contents/Pharo Pharo.image #I do not remember th

Re: [Pharo-users] Threads safety in Pharo

2017-07-31 Thread Guillermo Polito
I believe there is no such a document. It would be however interesting to investigate it a bit deeper. In general, the problem we talk about when we talk about thread safety is the following: Can we run a workspace in a separate thread than a browser and provide correct results? Can we run two brow

Re: [Pharo-users] Pharo 6.0 and 6.1 64 bit freeze on MacMini

2017-07-31 Thread stephan
On 31-07-17 16:42, TedVanGaalen wrote: I've just installed the 32bit version. same problems here. freezes Where did you install what versions of vm and image on what OS X version? Stephan

Re: [Pharo-users] Pharo 6.0 and 6.1 64 bit freeze on MacMini

2017-07-31 Thread TedVanGaalen
I've just installed the 32bit version. same problems here. freezes -- View this message in context: http://forum.world.st/Pharo-6-0-and-6-1-64-bit-freeze-on-MacMini-tp4957969p4957982.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Iceberg: SCP urls are not limited to 'git@'

2017-07-31 Thread Herby Vojčík
I put this hotfix in my script: "Work around scp url hardwired 'git@'" IceScpRemote class compile: 'canHandleUrl: aRepositoryUrl "Very simplistic implementation that does not cover all cases" ^ aRepositoryUrl matchesRegex: ''([\w.-]+@|ssh\://).*'''. IceScpRemote compile: ((IceScpR

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-31 Thread Pavel Krivanek
2017-07-31 15:28 GMT+02:00 Tim Mackinnon : > Ok (I am reading there is a lot going on for you guys to sort out at the > moment). > > It sounds like a more stable conversion of Pharo 6.1 for 64 bit would be > best to give me a stable platform to run on. > > In that minimal image - what can I rely o

[Pharo-users] Pharo 6.0 and 6.1 64 bit freeze on MacMini

2017-07-31 Thread Ted F.A.van Gaalen
Hi, I reverted to 5.0 because Pharo 6.0 and 6.1 64 bit hangs on my Mac Mini with UDH 4K screen (may that has to do with?) with its maiden image (at first start after download when: I resize or go to full screen. Maybe VM problem? my mac Mini metrics: Hardware Overview: Model Name: Mac min

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-31 Thread Tim Mackinnon
Ok (I am reading there is a lot going on for you guys to sort out at the moment). It sounds like a more stable conversion of Pharo 6.1 for 64 bit would be best to give me a stable platform to run on. In that minimal image - what can I rely on to load code (in trying the 7.0 version it seems li

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-31 Thread Pavel Krivanek
H Tim 2017-07-31 15:07 GMT+02:00 Tim Mackinnon : > Hi Pavel - I’m just revisiting a few of your previous messages on minimal > images as I’m trying to get things working again with Pharo 6.1 now that > you guys have rejigged all of the build pipelines. > > I tried a previous suggestion of: > > Fo

Re: [Pharo-users] Creating the smallest server runtime footprint

2017-07-31 Thread Tim Mackinnon
Hi Pavel - I’m just revisiting a few of your previous messages on minimal images as I’m trying to get things working again with Pharo 6.1 now that you guys have rejigged all of the build pipelines. I tried a previous suggestion of: For Pharo 6: https://ci.inria.fr/pharo/job/Pharo-6.0-Update-St

Re: [Pharo-users] Iceberg and removing packages

2017-07-31 Thread Esteban A. Maringolo
Hi, Yes, I commited. I noticed the package wasn't remove from disk because in Github the MyPackage-Tests.package folder was still there. And in the iceberg local directory it was there as well. I removed it manually with this commit:

Re: [Pharo-users] Iceberg and removing packages

2017-07-31 Thread Esteban Lorenzano
Did you commit? > On 31 Jul 2017, at 14:06, Esteban A. Maringolo wrote: > > That's exactly what I did. But after synchronizing the repo, the > package wasn't listed on Iceberg but it still was in in the repo. > It happened with another package in another repo as well. > > If it happens again I'

Re: [Pharo-users] Iceberg and removing packages

2017-07-31 Thread Esteban A. Maringolo
That's exactly what I did. But after synchronizing the repo, the package wasn't listed on Iceberg but it still was in in the repo. It happened with another package in another repo as well. If it happens again I'll let you know. Regards! Esteban A. Maringolo 2017-07-31 7:03 GMT-03:00 Esteban Lo

Re: [Pharo-users] Zinc Crash / semaphores

2017-07-31 Thread p...@highoctane.be
I am doing external REST calls indeed. No caching across WASessions. Phil On Mon, Jul 31, 2017 at 1:00 PM, Sven Van Caekenberghe wrote: > Do you make any external (REST/network) calls yourself while handling your > requests ? > > Do you do any kind of caching yourself ? > > > On 31 Jul 2017, a

Re: [Pharo-users] Zinc Crash / semaphores

2017-07-31 Thread Sven Van Caekenberghe
Do you make any external (REST/network) calls yourself while handling your requests ? Do you do any kind of caching yourself ? > On 31 Jul 2017, at 12:40, p...@highoctane.be wrote: > > I have this crash log on a server. > > https://gist.github.com/philippeback/9527b74c081629c2b05466353c4326b3

[Pharo-users] Zinc Crash / semaphores

2017-07-31 Thread p...@highoctane.be
I have this crash log on a server. https://gist.github.com/philippeback/9527b74c081629c2b05466353c4326b3 It is running on Windows 2012 R2 with a Pharo 5.0 There is a SeasideApp. Is there any known semaphore leak? Because this app is very lightly used and I was suprised to see this. Windows may

Re: [Pharo-users] Iceberg and removing packages

2017-07-31 Thread Esteban Lorenzano
Hi, In iceberg, you have to go to package tab and say "remove package from disk" Esteban > On 30 Jul 2017, at 17:01, Esteban A. Maringolo wrote: > > I got into the pharo-local/iceberg/... and git rm'ed the directory, > commited and synchronized the project in Iceberg. > > I hope it doesn't b

Re: [Pharo-users] Performance of zero conf install since 6.1 seems very slow?

2017-07-31 Thread Guillermo Polito
I think it's the entire file server. The thing, i think, is that the VM is much smaller than the image or the sources to download. On Mon, Jul 31, 2017 at 2:26 AM, Tim Mackinnon wrote: > Actually its all over the place - the times vary from seconds (like it > used to work) to 5-10 mins. It’s not

Re: [Pharo-users] How to export critics from Critic Browser?

2017-07-31 Thread Hernán Morales Durand
It looks super cool. Thank you Peter! Hernán 2017-07-31 4:07 GMT-03:00 Peter Uhnak : > Hi, > > I did a small experiment on Travis short while ago that collects the QAs and > prints them to output log. > > Script (you would be interested only in the Smalltalk part of the code): > https://github

Re: [Pharo-users] How to export critics from Critic Browser?

2017-07-31 Thread Peter Uhnak
Hi, I did a small experiment on Travis short while ago that collects the QAs and prints them to output log. Script (you would be interested only in the Smalltalk part of the code): https://github.com/peteruhnak/ugly-pharo-code/blob/master/qa-testing.sh Travis output (expand line 400): https:/