| twb | (Right?) |
| wolverian | yeah |
| Chicago | Jmax: I use 'perl-cleaner reallyall' on here after my emptytree worlds... Where do I apply UNINST=1? |
| twb | What is the magic sigil for non-greedy regexp match? (?:foo) ? Ah, foo*? |
| jorvis | twb: m/\d+/ (greedy), m/\d+?/ (non-greedy) |
| Prof_Vince | g-cpan creates ebuilds for Perl modules, which are build & installed by emerge |
| jorvis | kind of pointless without something after that example, but you get the idea |
| Prof_Vince | its only really interesting point is that it chooses to install dependencies from the main portage tree when it's possible |
| twb | Actually, never mind. I was trying to do something that's not actually regular, but it's trivial to use chomp() instead. |
| jorvis | I just uploaded my first module to pause.perl.org, how long does it usually take before it creates my author dir on cpan and contains the file? |
| wolverian | twb, perl's regular expressions are not very regular. :) |
| twb | True. |
| action | f00li5h pokes matled |
| f00li5h | pokes matled |
| Daveman | :D |
| Ani-_ | jorvis: what module did you upload? |
| jorvis | Log::Cabin :) |
| f00li5h | Daveman: so what is it that you do dave? |
| Ani-_ | And what is it purpose? |
| jorvis | a logger implementing a selection of the Log4perl API but without the larger overhead (in terms of stats, etc.) |
| twb | Which stupid mistake(s) am I making here? http://twb.ath.cx/tmp/livealloc.init.pl |
| Prof_Vince | perldoc -f chomp |
| twb | Prof_Vince: I still don't understand. |
| Chicago | Jmax: using g-cpan... now I have this error about perl-Test-Simple. http://pastebin.ca/431124 |
| buubot | The paste 431124 has been copied to http://erxz.com/pb/2119 |
| Prof_Vince | you usually don't want its return value |
| twb | Prof_Vince: OK, how about now (refresh URL) |
| Prof_Vince | Chicago: use the -u flag instead of --install sure, don't chomp $2 directly |
| Chicago | Prof_Vince: Same result with g-cpan -u Bundle::CPAN http://pastebin.ca/431128 |
| buubot | The paste 431128 has been copied to http://erxz.com/pb/2120 |
| action | CPAN upload: Log-Cabin-0.01 by JORVIS |
| CPAN | upload: Log-Cabin-0.01 by JORVIS |
| action | CPAN upload: File-chdir-0.06_01 by DAGOLDEN |
| CPAN | upload: File-chdir-0.06_01 by DAGOLDEN |
| Chicago | Prof_Vince: Portage shows only v.67 available. http://gentoo-portage.com/virtual/perl-Test-Simple |
| twb | Prof_Vince: because regexp match variables are immutable? |
| Prof_Vince | Chicago: then do g-cpan -u Test::Simple first |
| Chicago | thanks :) |
| twb | Prof_Vince: working now, thanks. I need to manually close file handles, right? |
| talexb | twb, It is considered good form. |