Re: [Pharo-users] [Metacello] Apparent loop in before / after ....

2016-03-26 Thread Damien Pollet
looks like you forgot something :D On 26 March 2016 at 21:56, stepharo wrote: > hi dale > > I'm working a pretty large configuration and I got the following error > messsage (and I do not understand I cannot debug). > Do you have any suggestion because I did not even know that this error > exist

Re: [Pharo-users] [Metacello] about required list

2016-03-26 Thread Cyril Ferlicot Delbecque
On 26/03/2016 22:00, stepharo wrote: > Hi > > using the dependency analyser I see that may packages have the following > dependencies > > for example > > package: 'Math-DistributionGamma' with: [ spec requires: > #('Math-Core' 'Math-DHB-Numerical' 'Math-Series' > 'Math-Core-Distribution')

[Pharo-users] [Metacello] about required list

2016-03-26 Thread stepharo
Hi using the dependency analyser I see that may packages have the following dependencies for example package: 'Math-DistributionGamma' with: [ spec requires: #('Math-Core' 'Math-DHB-Numerical' 'Math-Series' 'Math-Core-Distribution') ]; package: 'Math-DistributionBeta' with: [ spec

[Pharo-users] [Metacello] Apparent loop in before / after ....

2016-03-26 Thread stepharo
hi dale I'm working a pretty large configuration and I got the following error messsage (and I do not understand I cannot debug). Do you have any suggestion because I did not even know that this error exist before. I disabled the validation of the config because it validates packages that I ca

[Pharo-users] [Spec] CheckBoxModel>>enabled: does not work?

2016-03-26 Thread Julien Delplanque
Hello, I am trying to disable a CheckBoxModel using #enabled: method does not works. Any idea? Regards, Julien

Re: [Pharo-users] OpenGL project

2016-03-26 Thread Damien Pollet
On 26 March 2016 at 18:44, Thibault Raffaillac wrote: > Homebrew should place the GLFW folder in /usr/local/include, and cc should > list it among include directories with -v > No. It should put them in `brew --prefix`/include, which only happens to be /usr/local/include if you followed homebrew

Re: [Pharo-users] OpenGL project

2016-03-26 Thread Thibault Raffaillac
> Strange, I tried "brew install glfw3 ? but it does not work. > Instead, I had to do "brew install homebrew/versions/glfw3? Yep good point thank you. > demo.c:2:10: fatal error: 'GLFW/glfw3.h' file not found Homebrew should place the GLFW folder in /usr/local/include, and cc should list it am

Re: [Pharo-users] Making STON exportation lighter

2016-03-26 Thread Sven Van Caekenberghe
Very good ! > On 26 Mar 2016, at 17:08, Offray Vladimir Luna Cárdenas > wrote: > > Hi, > > On 25/03/16 13:10, Offray Vladimir Luna Cárdenas wrote: > > [...] >> >> The next step is to made STON DVCS friendly by removing long lines [2] >> >> [2] >> http://forum.world.st/Citizen-example-for-m

[Pharo-users] Running Pharo 5 on Ubuntu 16.04

2016-03-26 Thread nacho
Hi guys, I'm having some issues in trying to run Pharo 5 in Ubuntu 16.04 1) I've downloaded the sources, images and latest vm from pharo site 2) Unpacked everything into a directory ~/Applications/Pharo 3) chowned and chmoded everythin in that file But when I try to do: ./pharo I get: bash: ./pha

Re: [Pharo-users] Making STON exportation lighter

2016-03-26 Thread Offray Vladimir Luna Cárdenas
Hi, On 25/03/16 13:10, Offray Vladimir Luna Cárdenas wrote: [...] The next step is to made STON DVCS friendly by removing long lines [2] [2] http://forum.world.st/Citizen-example-for-manipulating-a-bibtex-file-tp4784240p4822035.html Done since http://smalltalkhub.com/#!/~Offray/Grafosco

Re: [Pharo-users] OpenGL project

2016-03-26 Thread Alexandre Bergel
Hi Thibault, Strange, I tried "brew install glfw3 “ but it does not work. Instead, I had to do "brew install homebrew/versions/glfw3” When I try to compile your file: -=-=-=-=-=-=-=-=-= /tmp> cc demo.c -lglfw3 -framework OpenGL demo.c:2:10: fatal error: 'GLFW/glfw3.h' file not found #include

[Pharo-users] How to rewrite self should: into self assert:

2016-03-26 Thread stepharo
Hi guys I tried to tools of mark and failed miserably. Any suggestion is welcome. Stef

[Pharo-users] Installing a metalink on a subclass not overriding a method

2016-03-26 Thread Peter Uhnak
Imagine the following: I have a class ‘Parent’ which has the following method Parent>>name: aString name := aString I also have a subclass of a Parent called Child. Now I would like to attach some behavior via MetaLinks for the method ‘name:’ but only for the Child method, is that possible?