Re: [perl #41386] MANIFEST must die.

2007-02-18 Thread jerry gay
On 2/18/07, Joshua Isom <[EMAIL PROTECTED]> wrote: On Feb 18, 2007, at 7:14 PM, Will Coleda wrote: > > On Feb 17, 2007, at 10:14 AM, Patrick R. Michaud via RT wrote: > > Yes, but our MANIFEST is just a list of everything in the repository > (modulo a single directory that we started skipping in

Re: [perl #41386] MANIFEST must die.

2007-02-18 Thread Joshua Isom
On Feb 18, 2007, at 7:14 PM, Will Coleda wrote: On Feb 17, 2007, at 10:14 AM, Patrick R. Michaud via RT wrote: Yes, but our MANIFEST is just a list of everything in the repository (modulo a single directory that we started skipping in r12600). It's best purpose is probably to make sure tha

Re: [perl #41386] MANIFEST must die.

2007-02-18 Thread Will Coleda
On Feb 17, 2007, at 10:14 AM, Patrick R. Michaud via RT wrote: Just working on bug-day tickets (especially since I'm the release- manager this month :-)... On Wed Jan 31 13:37:54 2007, [EMAIL PROTECTED] wrote: The primary purpose of a MANIFEST in the repository is to tell you which files out

Re: [perl #41529] [BUG]: t/perl/Parrot_Distribution.t test failure

2007-02-18 Thread James E Keenan
jerry gay wrote: On 2/17/07, via RT James Keenan <[EMAIL PROTECTED]> wrote: The file which is failing the test is a Parrot source file (which happens to be a Parrot test file) -- not a Perl source file (which happens to be a Perl test file). So the test at line 75 is correctly formatted. part

[PATCH] retry pir/pasm updates for lang/pir

2007-02-18 Thread Klaas-Jan Stol
hi, attached a new patch, replacing the other one from 2/17. kjs Index: languages/PIR/lib/pasm_args.pg === --- languages/PIR/lib/pasm_args.pg (revision 17016) +++ languages/PIR/lib/pasm_args.pg (working copy) @@ -1,4 +1,4 @@ -grammar

:anon flag bug?

2007-02-18 Thread Klaas-Jan Stol
hi, I was working on a test for addmethod op (ticket #39196: [TODO] tests - need to test addmethod) and tried this: .sub main :main # this works: hello() # while this does not: $P0 = find_name "hello" $P0() .end .sub hello :anon print "Hello world!\n" .end My question is

[PATCH] updates for docs/faq.pod

2007-02-18 Thread Klaas-Jan Stol
hi, I made some small updates to faq.pod, regarding TODO ticket #41312: [TODO] - Docs - update FAQ. updating: * updated languages section * updated PASM to PIR usage * removed VERSION section as suggested in the ticket. It does NOT fix: * I left Parrot/Perl6 in, I'm not sure if it should be

[PATCH] #39615: [TODO] get_outer op not defined in PDDs

2007-02-18 Thread Klaas-Jan Stol
hi, I was browsing the TODO list for some low hanging fruit, and saw a request for updating PDD20. Attached a patch that adds a description of get_outer() according to t/op/lexicals.t to PDD20. regards, klaas-jan Index: docs/pdds/pdd20_lexical_vars.pod ==