[svn:parrot-pdd] r13766 - in trunk: . docs/pdds/clip

2006-08-02 Thread allison
Author: allison Date: Wed Aug 2 23:08:19 2006 New Revision: 13766 Modified: trunk/docs/pdds/clip/pdd10_embedding.pod Changes in other areas also in this revision: Modified: trunk/ (props changed) Log: [pdd10] An initial stub of the embedding PDD. (Thanks chromatic!) Modified: trunk/do

[perl #40053] Empty PGE rule causes error. rule x { }

2006-08-02 Thread via RT
# New Ticket Created by Kevin Tew # Please include the string: [perl #40053] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40053 > It should die with a more informative error message and a line number or rule name. Null

Re: [perl #40048] [CAGE] t/distro/file_metadata.t doesn't like svk

2006-08-02 Thread chromatic
On Wednesday 02 August 2006 13:13, Will Coleda wrote: > Seems fine, modulo: > > - my @cmd = qw(svn pg Copyright); > + my @cmd = qw(pg Copyright); > > should probably be: > > - my @cmd = qw(svn pg Copyright); > + my @cmd = qw($cmd pg Copyright); > > (though that test is skipped righ

Re: [perl #40048] [CAGE] t/distro/file_metadata.t doesn't like svk

2006-08-02 Thread Will Coleda
Seems fine, modulo: - my @cmd = qw(svn pg Copyright); + my @cmd = qw(pg Copyright); should probably be: - my @cmd = qw(svn pg Copyright); + my @cmd = qw($cmd pg Copyright); (though that test is skipped right now anyway) On Aug 2, 2006, at 3:55 PM, chromatic wrote: On

Re: [perl #40048] [CAGE] t/distro/file_metadata.t doesn't like svk

2006-08-02 Thread chromatic
On Wednesday 02 August 2006 12:53, Will Coleda wrote: > Every single test fails because the file assumes svn instead of svk, > e.g.: > > my @cmd = qw(svn pg svn:mime-type); > @cmd = qw(svn pg svn:keywords); > > one reference is made to 'svk ls', but it's never considered as an > optio

Re: [perl #40048] [CAGE] t/distro/file_metadata.t doesn't like svk

2006-08-02 Thread Will Coleda
Every single test fails because the file assumes svn instead of svk, e.g.: my @cmd = qw(svn pg svn:mime-type); @cmd = qw(svn pg svn:keywords); one reference is made to 'svk ls', but it's never considered as an option to get at the meta data, just as a criteria to then try to get

Re: [perl #40030] [PATCH] compiler/imcc missing dependency

2006-08-02 Thread fonseka
On 8/2/06, Leopold Toetsch <[EMAIL PROTECTED]> wrote: Am Mittwoch, 2. August 2006 19:52 schrieb [EMAIL PROTECTED]: > > There must be some other problem elsewhere. > > Found the problem... it was MY problem... I had rests of an old instalation > of parrot in my /usr/local/lib, and gcc was pulling

Re: [perl #40048] [CAGE] t/distro/file_metadata.t doesn't like svk

2006-08-02 Thread jerry gay
it's not like you to submit bug reports without useful information. how do you quantify "doesn't like svk?" what is the output of C? ~jerry

[perl #40048] [CAGE] t/distro/file_metadata.t doesn't like svk

2006-08-02 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #40048] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=40048 > works fine with svn, but not svk. be nice if it worked under either system. -- Will "C

Re: [perl #40030] [PATCH] compiler/imcc missing dependency

2006-08-02 Thread Leopold Toetsch
Am Mittwoch, 2. August 2006 19:52 schrieb [EMAIL PROTECTED]: > > There must be some other problem elsewhere. > > Found the problem... it was MY problem... I had rests of an old instalation > of parrot in my /usr/local/lib, and gcc was pulling libparrot from there, > making the hole process borked..

Re: [perl #40030] [PATCH] compiler/imcc missing dependency

2006-08-02 Thread fonseka
On 8/1/06, Leopold Toetsch <[EMAIL PROTECTED]> wrote: Am Montag, 31. Juli 2006 22:38 schrieb [EMAIL PROTECTED]: > > The trunk wasn't compilling in my machines... > > After digging into Makefile I found missing depencies linking > miniparrot and parrot +$(IMCC_DIR)/imclexer$(O) $(IMCC_DI

Re: [svn:perl6-synopsis] r10539 - doc/trunk/design/syn

2006-08-02 Thread Aaron Crane
[EMAIL PROTECTED] commits: > +If the first character is a plus or minus, the initial identifier taken > +as a character class, so s/taken/is taken/ -- Aaron Crane

[svn:perl6-synopsis] r10538 - doc/trunk/design/syn

2006-08-02 Thread larry
Author: larry Date: Wed Aug 2 07:53:12 2006 New Revision: 10538 Modified: doc/trunk/design/syn/S05.pod Log: Clarified Unicode property names a bit. Modified: doc/trunk/design/syn/S05.pod == --- doc/trunk/design/syn/

[svn:perl6-synopsis] r10537 - doc/trunk/design/syn

2006-08-02 Thread larry
Author: larry Date: Wed Aug 2 00:20:22 2006 New Revision: 10537 Modified: doc/trunk/design/syn/S02.pod doc/trunk/design/syn/S12.pod Log: Added back in qx forms where x is single modifier character. Modified: doc/trunk/design/syn/S02.pod ===

Re: Shared Lib fro Dynamic PMC

2006-08-02 Thread chromatic
On Tuesday 01 August 2006 23:11, Vishal Soni wrote: > I need to have a shared lib for a Dynamic PMC. The shared lib is generated > from my own code. What is a good location to place the shared lib that I > generate? > > Is lib/blib a good location? > > This is for Byte Code generator. There's bli