Pharo-users
By thread
pharo-users@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
October 2010
- 28 participants
- 73 messages
Re: [Pharo-users] Distributing 'minimal' image
by Igor Stasenko
On 1 October 2010 08:48, Mariano Martinez Peck <marianopeck(a)gmail.com> wrote:
>
>
> On Thu, Sep 30, 2010 at 11:07 PM, Johan Fabry <jfabry(a)dcc.uchile.cl> wrote:
>>
>> Hi all,
>>
>> I am planning to put online a minimal image that contains AspectMaps, with
>> some models pre-loaded. Two questions:
>> - Is there an easy way to strip this image of dev tools et cetera?
>
> Not really. The easiest way is to have a Configuration of Metacello that
> takes care of loading all your code with all your dependencies. Then, take a
> PharoCore and load your code there.
> In addition, you may want to evaluate "ScriptLoader cleanUpForProduction" at
> the end. Check the method to see what it does.
>
>>
>> - How can I make it so that I can distribute it without the changes file?
>> (Right now the image complains of a missing changes file if it is not there
>> ...)
>>
>
> I am aware of "Smalltalk abandonSources"Â to avoid using .sources. You won't
> see things like the temp names, and stuff will be decompiled instead.
With a little effort, you can embed source code into method trailers.
Then you won't need .sources nor .chanes to see the real source
instead of decompiling it.
But you will loose method stamps.
> For the .changes you can start the image without them, there will raise a
> popup at the beginning. The problem is if you then do sometthing that should
> be written there. Not sure here...
>
yeah.
> cheers
>
> Mariano
>
>
>
>>
>> Thanks in advance!
>> --
>> Johan Fabry
>> jfabry(a)dcc.uchile.cl - http://dcc.uchile.cl/~jfabry
>> PLEIAD Lab - Computer Science Department (DCC) - University of Chile
>>
>>
>>
>>
>> _______________________________________________
>> Pharo-users mailing list
>> Pharo-users(a)lists.gforge.inria.fr
>> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
>
>
> _______________________________________________
> Pharo-users mailing list
> Pharo-users(a)lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
>
>
--
Best regards,
Igor Stasenko AKA sig.
Oct. 1, 2010
Re: [Pharo-users] Distributing 'minimal' image
by Mariano Martinez Peck
On Thu, Sep 30, 2010 at 11:07 PM, Johan Fabry <jfabry(a)dcc.uchile.cl> wrote:
> Hi all,
>
> I am planning to put online a minimal image that contains AspectMaps, with
> some models pre-loaded. Two questions:
> - Is there an easy way to strip this image of dev tools et cetera?
>
Not really. The easiest way is to have a Configuration of Metacello that
takes care of loading all your code with all your dependencies. Then, take a
PharoCore and load your code there.
In addition, you may want to evaluate "ScriptLoader cleanUpForProduction" at
the end. Check the method to see what it does.
> - How can I make it so that I can distribute it without the changes file?
> (Right now the image complains of a missing changes file if it is not there
> ...)
>
>
I am aware of "Smalltalk abandonSources" to avoid using .sources. You won't
see things like the temp names, and stuff will be decompiled instead.
For the .changes you can start the image without them, there will raise a
popup at the beginning. The problem is if you then do sometthing that should
be written there. Not sure here...
cheers
Mariano
> Thanks in advance!
> --
> Johan Fabry
> jfabry(a)dcc.uchile.cl - http://dcc.uchile.cl/~jfabry<http://dcc.uchile.cl/%7Ejfabry>
> PLEIAD Lab - Computer Science Department (DCC) - University of Chile
>
>
>
>
> _______________________________________________
> Pharo-users mailing list
> Pharo-users(a)lists.gforge.inria.fr
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
>
Oct. 1, 2010
Re: [Pharo-users] Pharo-users Digest, Vol 9, Issue 32
by -Martin Ramos
hi guillermo, i ´m from Quilmes, Argentina, im study in the UNQ university,
i´m very happy to share experiences with you.
2010/9/30 <pharo-users-request(a)lists.gforge.inria.fr>
> Send Pharo-users mailing list submissions to
> pharo-users(a)lists.gforge.inria.fr
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
> or, via email, send a message with subject or body 'help' to
> pharo-users-request(a)lists.gforge.inria.fr
>
> You can reach the person managing the list at
> pharo-users-owner(a)lists.gforge.inria.fr
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Pharo-users digest..."
>
>
> Today's Topics:
>
> 1. Re: [Pharo-project] [ANN] Pharo 1.1.1 OneClickCogVm
> (Mariano Martinez Peck)
> 2. Re: [Pharo-project] [ANN] Pharo 1.1.1 OneClickCogVm
> (Igor Stasenko)
> 3. Hello (-Martin Ramos)
> 4. Re: Hello (St?phane Ducasse)
> 5. Re: Hello (Guillermo Polito)
> 6. Distributing 'minimal' image (Johan Fabry)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 30 Sep 2010 14:16:32 +0200
> From: Mariano Martinez Peck <marianopeck(a)gmail.com>
> Subject: Re: [Pharo-users] [Pharo-project] [ANN] Pharo 1.1.1
> OneClickCogVm
> To: A friendly place where any question about pharo is welcome
> <pharo-users(a)lists.gforge.inria.fr>
> Message-ID:
> <AANLkTikyc=kbqo+tWoCP_-MNsUnSwJgAJivkNkXVg+im(a)mail.gmail.com<kbqo%2BtWoCP_-MNsUnSwJgAJivkNkXVg%2Bim(a)mail.gmail.com>
> >
> Content-Type: text/plain; charset="iso-8859-1"
>
> On Thu, Sep 30, 2010 at 1:44 PM, Tudor Girba <tudor.girba(a)gmail.com>
> wrote:
>
> > Hi Mariano,
> >
> > Is the 1.1.1 dev image available for the old VM?
> >
>
> No, but you can do it by yourself. Just take the PharoCore 1.1.1 (
> https://gforge.inria.fr/frs/download.php/27526/PharoCore-1.1.1.zip)
> And evaluate:
>
>
> Gofer new
> squeaksource: 'MetacelloRepository';
> package: 'ConfigurationOfPharo';
> load.
>
> ((Smalltalk at: #ConfigurationOfPharo) project version: '1.1') perform:
> #silently: with: true; perform: #load.
>
>
>
> >
> > I was a bit away, and I am not sure of the status. If there is something
> I
> > can do, please let me know.
> >
> > Cheers,
> > Doru
> >
> >
> > On 25 Sep 2010, at 19:49, Mariano Martinez Peck wrote:
> >
> > >
> > >
> > > On Sat, Sep 25, 2010 at 7:09 PM, Tudor Girba <tudor.girba(a)gmail.com>
> > wrote:
> > > Hi Mariano,
> > >
> > > This is a good and needed step.
> > >
> > > Now, just a problem: 1.1.1dev image does not work with the regular VM.
> > This is probably because you saved it again after you opened it with the
> Cog
> > VM. It would be great if the released dev image would work with both.
> > >
> > > Excellent suggestion :)
> > > Thanks doru.
> > >
> > >
> > > Cheers,
> > > Doru
> > >
> > >
> > >
> > > On 25 Sep 2010, at 17:56, Mariano Martinez Peck wrote:
> > >
> > > > Hi. This is not an official release. I didn't do all the formal
> > procedure for releasing a Pharo image. My idea is try to push CogVM and
> try
> > to get as much as testers as possible. Try to report issues and help
> Eliot.
> > For that purpose, I think having a one click image is worth it.
> > > >
> > > > So.....I build a Pharo dev on top of the PharoCore 1.1.1 (which has
> > some fixes over 1.1 and the CogVM necessary changes). I build the image
> with
> > exactly the same versions of the external packages than Pharo 1.1.
> > > >
> > > > If you want to download that this Pharo1.1.1 dev image that works
> with
> > Cog here is the link:
> > > >
> > > >
> >
> https://gforge.inria.fr/frs/download.php/27516/Pharo-1.1.1-dev10.09.1.zip
> > > >
> > > > In addition, and thanks to Lukas, we could generate OneClicks with
> > CogVM. Here you can have a OneClick using the above image:
> > > >
> > > >
> >
> https://gforge.inria.fr/frs/download.php/27524/Pharo-1.1.1-OneClickCogVM.zip
> > > >
> > > > Notice that this is not an official release and that there are
> > failing/errors tests. I've already sent emails for them and hopefully
> > someone may fix them. The only thing is not supported is the TestCoverage
> > (since it uses objects as methods, with is not yet supported in CogVM).
> > > >
> > > > Cheers
> > > >
> > > > Mariano
> > > > _______________________________________________
> > > > Pharo-users mailing list
> > > > Pharo-users(a)lists.gforge.inria.fr
> > > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
> > >
> > > --
> > > www.tudorgirba.com
> > >
> > > "The coherence of a trip is given by the clearness of the goal."
> > >
> > >
> > >
> > >
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > Pharo-project(a)lists.gforge.inria.fr
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> > >
> > > _______________________________________________
> > > Pharo-project mailing list
> > > Pharo-project(a)lists.gforge.inria.fr
> > > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
> >
> > --
> > www.tudorgirba.com
> >
> > "In a world where everything is moving ever faster,
> > one might have better chances to win by moving slower."
> >
> >
> >
> >
> > _______________________________________________
> > Pharo-users mailing list
> > Pharo-users(a)lists.gforge.inria.fr
> > http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
> >
>
Oct. 1, 2010