Travis-CI for Perl 6

2014-12-31 Thread Gabor Szabo
Hi, Travis-CI does not support Perl 6 yet, but I've managed to put together a set of instructions how can you use a binary build of Rakudo Star 2014.12.1 to have Continuous Integration on Travis-CI: http://perl6maven.com/continuous-integration-for-perl6-modules-using-travis-ci Gabor

Installing dependencies, testing a module

2014-12-31 Thread Gabor Szabo
HI, Given a Perl 6 module that properly lists its dependencies such as https://github.com/supernovus/perl6-web-template/ If I clone the repository, is there a command that would install all the dependencies of the module but not the module itself (e.g. panda installdeps ?) What would be the r

Re: Found no writable directory into which panda could be installed

2014-12-31 Thread Gabor Szabo
I found a solution for myself, but I still think this is a problem: DESTDIR=rakudo-2014-12-1/languages/perl6 ./rakudo-2014-12-1/bin/panda install YAML Gabor On Wed, Dec 31, 2014 at 8:20 PM, Gabor Szabo wrote: > After installing Rakudo star into some other directory using --prefix > > I tried t

Found no writable directory into which panda could be installed

2014-12-31 Thread Gabor Szabo
After installing Rakudo star into some other directory using --prefix I tried to run panda and got the following error: Found no writable directory into which panda could be installed in sub make-default-ecosystem at /home/travis/rakudo-2014-12-1/languages/perl6/lib/Panda/App.pm:18

Re: Profiling Perl 6 code

2014-12-31 Thread Patrick R. Michaud
If you're running Rakudo on MoarVM, try the --profile option. It will create an HTML file that shows a lot of useful information, including time spent in each routine, call graphs, GC allocations, etc. Pm On Wed, Dec 31, 2014 at 09:35:33AM +0200, Gabor Szabo wrote: > The Perl 6 Maven site is a