Re: [Pharo-users] Launching Pharo 4 image in new Pharo 5 Launcher fails

2016-08-02 Thread Ben Coman
On Tue, Aug 2, 2016 at 10:50 PM, Brad Selfridge wrote: > I've downloaded and installed the new Pharo 5 One Click environment. I've > also downloaded the new Pharo 5 Launcher. I can build and run a Pharo 5 > image from the launcher, but when I build or try to open a Pharo 4

Re: [Pharo-users] Script to migrate all mcz packages to git?

2016-08-02 Thread Nicolas Passerini
On Tue, Aug 2, 2016 at 1:23 PM, Peter Uhnak wrote: > At the time of the (post) writing it did preserve commit dates, but there > was no metadata-less yet. > > In any case, I don't see a reason why it shouldn't preserve commit dates > with metadata-less — it goes mcz by mcz and

Re: [Pharo-users] Script to migrate all mcz packages to git?

2016-08-02 Thread Peter Uhnák
On Tue, Aug 2, 2016 at 9:07 PM, Thierry Goubier wrote: > Le 02/08/2016 à 13:23, Peter Uhnak a écrit : > >> On Tue, Aug 02, 2016 at 01:04:10PM +0200, Nicolas Passerini wrote: >> >>> There is this script from Peter Uhnak >>> >>>

Re: [Pharo-users] Script to migrate all mcz packages to git?

2016-08-02 Thread Dale Henrichs
Holger, It looks like Frank Shearar tackled this problem a while ago[1]. His solution is based on using gitocello[2], but it could possibly be adapted for GitFileTree ... Thierry would be able to tell ... Dale [1] http://www.lshift.net/blog/2012/08/20/monticello-git/ [2]

Re: [Pharo-users] Script to migrate all mcz packages to git?

2016-08-02 Thread Thierry Goubier
Le 02/08/2016 à 13:23, Peter Uhnak a écrit : On Tue, Aug 02, 2016 at 01:04:10PM +0200, Nicolas Passerini wrote: There is this script from Peter Uhnak https://www.peteruhnak.com/blog/2016/03/02/moving-project-from-smalltalkhub-to-github/#Copying-repository but it will not be able to preserve

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Brad Selfridge
Are you trying to use Pharo headless or with the IDE? - Brad Selfridge -- View this message in context: http://forum.world.st/I-can-t-run-Pharo5-on-Linux-Ubuntu-14-04-4-LTS-tp4909028p4909192.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Davide Varvello via Pharo-users
--- Begin Message --- Thanks Sven, you are right, curling get.pharo.org/50+vm does not give any problem. The issue isn't related to the libraries but it depends on http://files.pharo.org/platform/Pharo5.0-linux.zip After unzipping the file, it extracts a script "pharo" that contains:

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Sven Van Caekenberghe
Davide, It certainly works headless: $ cat /etc/issue Ubuntu 14.04.4 LTS \n \l $ mkdir pharo5 $ cd pharo5 $ curl get.pharo.org/50+vm | bash % Total% Received % Xferd Average Speed TimeTime Time Current Dload Upload Total SpentLeft

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Davide Varvello via Pharo-users
--- Begin Message --- Hi Brad Unfortunately the ia32-libs package is no longer loadable on Ubuntu 14. See http://pharo.org/gnu-linux-installation Davide Brad Selfridge wrote > Did you run: > > sudo apt-get install ia32-libs > > I have Pharo running on Ubuntu 14.04. There seemed to have been

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Brad Selfridge
Did you run: sudo apt-get install ia32-libs I have Pharo running on Ubuntu 14.04. There seemed to have been better instructions months ago and specific Ubuntu install ppa's but that changed. Now it's more confusing for those Ubuntu users. - Brad Selfridge -- View this message in

[Pharo-users] Launching Pharo 4 image in new Pharo 5 Launcher fails

2016-08-02 Thread Brad Selfridge
I've downloaded and installed the new Pharo 5 One Click environment. I've also downloaded the new Pharo 5 Launcher. I can build and run a Pharo 5 image from the launcher, but when I build or try to open a Pharo 4 image the launcher just goes away and the dev image is not opened. I suspect that

[Pharo-users] State of ZeroMQ bindings and polling

2016-08-02 Thread Holger Freyther
Hi, I wonder if someone is using ZeroMQ with Pharo. Is it in production? How does it work? I specially wonder about the polling integration. Is there some integration? How does it work? h.

Re: [Pharo-users] Script to migrate all mcz packages to git?

2016-08-02 Thread Peter Uhnak
On Tue, Aug 02, 2016 at 01:04:10PM +0200, Nicolas Passerini wrote: > There is this script from Peter Uhnak > https://www.peteruhnak.com/blog/2016/03/02/moving-project-from-smalltalkhub-to-github/#Copying-repository > > but it will not be able to preserve commit date. At the time of the (post)

Re: [Pharo-users] Script to migrate all mcz packages to git?

2016-08-02 Thread Nicolas Passerini
There is this script from Peter Uhnak https://www.peteruhnak.com/blog/2016/03/02/moving-project-from-smalltalkhub-to-github/#Copying-repository but it will not be able to preserve commit date. Preserving commit dates... I think it could only be possible in metadata-ful git repositories, which I

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Davide Varvello via Pharo-users
--- Begin Message --- But it does not work Davide Davide Varvello wrote > Thanks Peter, I already checked libx11 with ldd and everything is resolved > > Davide > Peter Uhnak wrote >> On Tue, Aug 02, 2016 at 12:51:12AM -0700, Davide Varvello via Pharo-users >> wrote: >> >> You could try to

[Pharo-users] Script to migrate all mcz packages to git?

2016-08-02 Thread Holger Freyther
Hi, I think I have seen something but can't find it right now. I would like to move to git but preserve the history (and my commit messages and the commit date/time). Is there a script that goes through all versions of a package and copies them to git repository? Will it be able to preserve

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Davide Varvello via Pharo-users
--- Begin Message --- Thanks Peter, I already checked libx11 with ldd and everything is resolved Davide Peter Uhnak wrote > On Tue, Aug 02, 2016 at 12:51:12AM -0700, Davide Varvello via Pharo-users > wrote: > > You could try to install pharo from the PPA > > sudo add-apt-repository

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Peter Uhnak
On Tue, Aug 02, 2016 at 12:51:12AM -0700, Davide Varvello via Pharo-users wrote: You could try to install pharo from the PPA sudo add-apt-repository ppa:pharo/stable sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install pharo-vm-core I am not sure if it's up to date (I

Re: [Pharo-users] I can't run Pharo5 on Linux Ubuntu 14.04.4 LTS

2016-08-02 Thread Davide Varvello via Pharo-users
--- Begin Message --- Nobody? Davide Davide Varvello wrote > Hi guys, > I'm trying to run Pharo5 on Linux Ubuntu 14.04.4 LTS with no luck. > > I downloaded the default GNU/linux zip from > http://pharo.org/gnu-linux-installation > Than I followed the instruction for Debian 8 as suggested: >