Re: [Pharo-users] Pharo Image Freeze (was Pharo 4 Image Freeze)

2015-06-02 Thread Esteban Lorenzano
yes please and we’ll backport as soon as we have a fix. thanks! > On 02 Jun 2015, at 08:25, Craig Johnson wrote: > > 2015-06-01 23:44 GMT+02:00*Nicolai Hess* nicolaihess at web.de >

[Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Jose San Leandro
Hi, In one of our projects we are using Pharo4. The image gets built by gradle, which loads the Metacello project. Sometimes, we see the build process hangs. It just don't progress. When adding local gitfiletree:// dependencies manually through Monticello after a while Pharo gets frozen. It's not

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Thierry Goubier
Hi Jose, yes, I've noticed that as well. It was, at a point, drastic (i.e. almost allways lock-up) on my work development laptop; it now happens far less often (but it does happens to me from time to time). Dave Lewis, the author of OSProcess, fixed one issue which solved most of the lockups I ha

[Pharo-users] PUngLite can't query large database

2015-06-02 Thread Gareth Cox
Hi I've managed to create a large database, with PUnqLite, that is 562.1MB. I can't seem to query it though. I've set fetchBufferSize: (1024*1024*1023). I've set SmalltalkImage current vm extraVMMemory: (1024*1024*1023). I've played around in the info.plist setting the SqueakMaxHeapSize to ridic

Re: [Pharo-users] Visualizing a repository tree

2015-06-02 Thread Peter Uhnák
HI Offray, I gave it a quick bash and come up with the following code. It's just a prototype and could be greatly simplified. - MCVersionInfo ancestors for whatever reason returned empty array down the line (so its cut off at the end), but I didn't investigate the problem - edge building and poss

Re: [Pharo-users] Pharo Image Freeze (was Pharo 4 Image Freeze)

2015-06-02 Thread Craig Johnson
Ok Case 15669 opened. Craig On 2015/06/02 10:30 AM, Esteban Lorenzano wrote: yes please and we’ll backport as soon as we have a fix. thanks! On 02 Jun 2015, at 08:25, Craig Johnson wrote: 2015-06-01 23:44

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Jose San Leandro
Hi Thierry, ConfigurationOfOSProcess-ThierryGoubier.38.mcz, which corresponds to version 4.6.2. Another workaround that would work for me is to be able to "resume" a previous load attempt of a Metacello project. Or a custom "hook" in Metacello to save the image after every dependency is successfu

[Pharo-users] sorting repositories in monticello browser

2015-06-02 Thread Peter Uhnák
Hi, is it possible to sort repositories in monticello browser? When I have many (20+) packages it is quite hard to find any one. :( Or perhaps even swap repository names around... so instead of http://smalltalkhub.com/#!/~Moose/PetitParser/ github://Uko/QualityAssistant:v0.4.1 gitfiletree:///hom

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Thierry Goubier
2015-06-02 12:14 GMT+02:00 Jose San Leandro : > Hi Thierry, > > ConfigurationOfOSProcess-ThierryGoubier.38.mcz, which corresponds to > version 4.6.2. > Ok, then this is the latest. > > Another workaround that would work for me is to be able to "resume" a > previous load attempt of a Metacello p

Re: [Pharo-users] sorting repositories in monticello browser

2015-06-02 Thread Thierry Goubier
2015-06-02 12:33 GMT+02:00 Peter Uhnák : > Hi, > > is it possible to sort repositories in monticello browser? > When I have many (20+) packages it is quite hard to find any one. :( > > Or perhaps even swap repository names around... > > so instead of > http://smalltalkhub.com/#!/~Moose/PetitParser

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Jose San Leandro
No problem, of course. It's a dual-core running a custom 4.0.4-hardened-r2 kernel, hardened/linux/amd64/selinux profile (but in permissive mode), glibc version 2.20-r2, with multilib and selinux USE flags active. I can provide more information if that helps, of course. Even ssh to a Docker contai

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Thierry Goubier
2015-06-02 15:03 GMT+02:00 Jose San Leandro : > No problem, of course. > > It's a dual-core running a custom 4.0.4-hardened-r2 kernel, > hardened/linux/amd64/selinux profile (but in permissive mode), glibc > version 2.20-r2, with multilib and selinux USE flags active. > > I can provide more inform

Re: [Pharo-users] SmalltalkHub permission denied

2015-06-02 Thread Hilaire
Yes I do. Thanks Hilaire Le 01/06/2015 22:52, Esteban Lorenzano a écrit : > are you entering user and password? > >> On 01 Jun 2015, at 22:30, Hilaire wrote: >> >> Le 01/06/2015 22:28, Hilaire a écrit : >>> Hi, >>> >>> I have permission denied from Monticello when saving a package to >>> Smallt

Re: [Pharo-users] SmalltalkHub permission denied

2015-06-02 Thread Hilaire
Le 02/06/2015 00:58, Ben Coman a écrit : > On Tue, Jun 2, 2015 at 4:28 AM, Hilaire wrote: >> I have permission denied from Monticello when saving a package to >> SmalltalkHub repo. >> Do I miss something? > Can you copy your repo definition (of course minus the password :) > cheers -ben > > MCSmal

Re: [Pharo-users] SmalltalkHub permission denied

2015-06-02 Thread Ben Coman
On Tue, Jun 2, 2015 at 10:27 PM, Hilaire wrote: > Le 02/06/2015 00:58, Ben Coman a écrit : >> On Tue, Jun 2, 2015 at 4:28 AM, Hilaire wrote: >>> I have permission denied from Monticello when saving a package to >>> SmalltalkHub repo. >>> Do I miss something? >> Can you copy your repo definition (

Re: [Pharo-users] SmalltalkHub permission denied

2015-06-02 Thread Hilaire
Le 02/06/2015 17:06, Ben Coman a écrit : > With the Smalltalkhub web interface, searching for 'Cofilair' lists > 'HilaireFernandes/Cofilair' but selecting that says > 'http://smalltalkhub.com/#!/~HilaireFernandes/Cofilair' page does not exist. > > It seems like the repo is missing. It does exist,

Re: [Pharo-users] PUngLite can't query large database

2015-06-02 Thread Paul DeBruicker
Hi Gareth, Sorry for the stupid question but does your query work on a smaller database, one a tenth the size or so? Maybe by using a #haltIf: that checks for memory usage growth will show something interesting. e.g. self haltIf:[Smalltalk vm memoryEnd > 1]. "100MB" And then running

Re: [Pharo-users] Visualizing a repository tree

2015-06-02 Thread Alexandre Bergel
Interesting visualization! Keep going! Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Jun 2, 2015, at 10:57 AM, Peter Uhnák wrote: > > On Tue, Jun 2, 2015 at 3:07 PM, Tudor Girba

Re: [Pharo-users] confirm a291430c0aaf69e0add28d1ecd3fb1ced59a71c7

2015-06-02 Thread seb NZOGANG
a291430c0aaf69e0add28d1ecd3fb1ced59a71c7 2015-06-02 18:52 UTC+02:00, pharo-users-requ...@lists.pharo.org : > Mailing list removal confirmation notice for mailing list Pharo-users > > We have received a request from 41.202.219.67 for the removal of your > email address, "sebnzog...@gmail.com" from

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread David T. Lewis
On Tue, Jun 02, 2015 at 02:34:49PM +0200, Thierry Goubier wrote: > 2015-06-02 12:14 GMT+02:00 Jose San Leandro : > > > Hi Thierry, > > > > ConfigurationOfOSProcess-ThierryGoubier.38.mcz, which corresponds to > > version 4.6.2. > > > > Ok, then this is the latest. > > > > > > Another workaround

[Pharo-users] pillar remove numbering from some headings

2015-06-02 Thread Peter Uhnák
Hi, is there a way to remove heading numbering for some headings? Basically I'm looking for an equivalent of Latex' \subsection*{...}. Thanks, Peter

[Pharo-users] Timezone offset in Date, why?

2015-06-02 Thread Esteban A. Maringolo
I'm debugging the PostgresV3 driver for GLORP, and among other test failures, there is a kind that particularly bugs me: two identical dates do not match, the reason? The internal "start" of aDate (Timespan) is a DateAndTime, and as such has a timezone offset. Is this conceptually right? Esteban

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Thierry Goubier
Hi Dave, Le 03/06/2015 03:15, David T. Lewis a écrit : Hi Thierry and Jose, I am reading this thread with interest and will help if I can. I do have one idea that we have not tried before. I have a theory that this may be an intermittent problem caused by SIGCHLD signals (from the external OS

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Ben Coman
On Wed, Jun 3, 2015 at 1:05 PM, Thierry Goubier wrote: > Hi Dave, > > Le 03/06/2015 03:15, David T. Lewis a écrit : >> >> Hi Thierry and Jose, >> >> I am reading this thread with interest and will help if I can. >> >> I do have one idea that we have not tried before. I have a theory that >> this m

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Jose San Leandro
Hi Dave, Thierry, Here's what I get in all recent attempts: [..] /2.3/lib/gradle-launcher-2.3.jar org.gradle.launcher.GradleMain assemble 18620 pts/5S+ 0:00 | \_ bash /home/chous/toolbox/pharo/pharo Pharo.image config gitfiletree:///home/chous/osoco/open-badges/game-core Configurat

Re: [Pharo-users] Monticello / OS deadlock ?

2015-06-02 Thread Jose San Leandro
Sending the SIGUSR1 signal prints this: 0xb84e2a7c s NonInteractiveUIManager(UIManager)>defer: 0xb84e29f4 s PharoCommandLineHandler class>activateWith: 0xb84f5e08 s [] in BasicCommandLineHandler>activateSubCommand: 0xb84e2e98 s BlockClosure>on:do: 0xb84e2970 s BasicCommandLineHandler>activateSubCo