Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
I've gotten tired of rebuilding parrot only to find out, once again, that I've broken it with local changes. Thus, my 'reparrot' script:
#!/bin/bash
cd ~/code/parrot
make realclean
svn up
if svn status | grep -E "^(M|C)"
then
echo Local changes found. Aborting.
exit
fi
perl Configure.pl && make test;
cd languages/perl6/ && make perl6 && make spectest
This should save me a lot of grief.
Can you merge into rebase_rakudo.pl? (Score:1)
Other than the ability to barf on local changes, this is a subset of the already existing languages/perl6/tools/rebase_rakudo.pl . Would you mind merging your idea into that script, for example by adding a new option?
Re: (Score:2)
Ahh! I should check out this directory. Thanks for the tip.
I'll be on holiday for the next couple of weeks, though, and won't have much free time for this (entertaining a friend from the States).