Re: [Pharo-users] Planet squeak and friends

2017-06-25 Thread Stephane Ducasse
Please remove planetfr.squeak.org. Bruce you should not be sad. Pharo is getting cooler and cooler the community is growing. Pharoers are delivering amazing tools and frameworks. And it will continue because we are just all pushing in the same direction. Because Pharo is Yours. You can have an imp

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Stephane Ducasse
thanks Pavel this is great to see that happening :) On Sun, Jun 25, 2017 at 6:47 PM, Pavel Krivanek wrote: > Hi, > > if you will do own bootstrap, you can use BaselineOfUI instead of > BaselineOfIDE. But you can use prebuilt image from here: > > https://ci.inria.fr/pharo/view/6.0-SysConf/job/Phar

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Stephane Ducasse
Hilaire I like your goal because this is what we want to achieve. what you should know is that the Pharo packages that we load to create Pharo are not all modular because they were not. We started to get Pharo modular and we will continue. On two fronts: - getting the core smaller - getting pharo

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Stephane Ducasse
Hilaire, Pay attention, we (pharo) bootstrap the minicore image based on git You do not need to bootstrap pharo you can simply apply the buildscript on the minicore image. then we use a buildscript to load pharo packages. In the future we expect that people will be able to - take the miniimage an

Re: [Pharo-users] Teapot and POST:

2017-06-25 Thread Stephane Ducasse
super cool! On Sun, Jun 25, 2017 at 7:35 PM, Attila Magyar wrote: > Hi Stef, > > Yeah, I've just sent a pull request. > > Attila > > > > -- > View this message in context: > http://forum.world.st/Teapot-and-POST-tp4951616p4952553.html > Sent from the Pharo Smalltalk Users mailing list archive at

Re: [Pharo-users] Teapot and POST:

2017-06-25 Thread Attila Magyar
Hi Stef, Yeah, I've just sent a pull request. Attila -- View this message in context: http://forum.world.st/Teapot-and-POST-tp4951616p4952553.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Pavel Krivanek
Hi, if you will do own bootstrap, you can use BaselineOfUI instead of BaselineOfIDE. But you can use prebuilt image from here: https://ci.inria.fr/pharo/view/6.0-SysConf/job/Pharo-6.0-Step-10-01-ConfigurationOfUI/lastSuccessfulBuild/artifact/Pharo-6.0-ConfigurationOfUI.zip Into such image load D

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Hilaire
Hi Pavel, I removed deprecated method uses, then I updated accordingly the 'development' configuration of Dr. Geo. Hope it helps. Thanks Hilaire Le 25/06/2017 à 10:03, Pavel Krivanek a écrit : > > I tried to play a little bit with that. As the first step please check > that Dr. Geo can be load

[Pharo-users] Loading PharoJS Re: PharoJS

2017-06-25 Thread Pierce Ng
Just tried loading PharoJS with this snippet: Gofer it smalltalkhubUser: 'noury' project: 'PharoJS'; configuration; loadStable Loaded cleanly on a fresh 32-bit Pharo-50772 image. Ran almost half the tests during which it created/deleted tabs on my open Chromium browser repeatedly. T

Re: [Pharo-users] Working with a compressed Fuel file?

2017-06-25 Thread stephan
A long time ago, Mariano wrote: > And what happened with the vm gzip crash? Still around? Yep, still crashing the vm. I revisited my MonticelloProjects experiment yesterday, and am still crashing the vm when serializing to a compressed fuel file. I wrote about it at the time, and then gave up

Re: [Pharo-users] PharoJS

2017-06-25 Thread Offray Vladimir Luna Cárdenas
I think that such diversity of tools is healthy and I wouldn't commit on killing anything. Projects would organically found ways of working together. Compared with other languages, I think that Pharo ecosystem is pretty cohesive. I would follow Steph's advice about choosing a theme/project and docu

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Esteban Lorenzano
> On 25 Jun 2017, at 10:41, Pavel Krivanek wrote: > > Thank you for the update, the original script was done for older Iceberg > versions. indeed :) Esteban > > Cheers, > -- Pavel > > 2017-06-25 10:38 GMT+02:00 Esteban Lorenzano >: > Hi! > >> On 25 Jun 2017, a

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Pavel Krivanek
Thank you for the update, the original script was done for older Iceberg versions. Cheers, -- Pavel 2017-06-25 10:38 GMT+02:00 Esteban Lorenzano : > Hi! > > On 25 Jun 2017, at 10:14, Pavel Krivanek wrote: > > You can clone a repository with Iceberg with a script like this: > > target := 'pharo-

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Esteban Lorenzano
> On 25 Jun 2017, at 10:38, Esteban Lorenzano wrote: > > Hi! > >> On 25 Jun 2017, at 10:14, Pavel Krivanek > > wrote: >> >> You can clone a repository with Iceberg with a script like this: >> >> target := 'pharo-core' asFileReference ensureCreateDirectory. >>

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Esteban Lorenzano
Hi! > On 25 Jun 2017, at 10:14, Pavel Krivanek wrote: > > You can clone a repository with Iceberg with a script like this: > > target := 'pharo-core' asFileReference ensureCreateDirectory. > repository := IceRepositoryCreator new > remote: (IceRemote url: 'g...@github.com:pharo-project/p

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Pavel Krivanek
You can clone a repository with Iceberg with a script like this: target := 'pharo-core' asFileReference ensureCreateDirectory. repository := IceRepositoryCreator new remote: (IceRemote url: 'g...@github.com:pharo-project/pharo.git'); location: target; subdirectory:'src'; createRepository. reposito

Re: [Pharo-users] Pharo6 bootstrap how to

2017-06-25 Thread Pavel Krivanek
Hi Hilaire, I tried to play a little bit with that. As the first step please check that Dr. Geo can be loaded properly into the standard Pharo 6 image with the package Deprecated60 unloaded. The Dr. Geo uses some deprecated calls and this package is not present in the smaller images. Cheers, -- P