[PATCH] multiple heredoc beginning in the same line

2016-11-30 Thread francois
This is to document the fact that, as in POSIX shell, you can use multiple HEREDOC strings in the same line. --- doc/Language/quoting.pod6 | 14 ++ 1 file changed, 14 insertions(+) diff --git a/doc/Language/quoting.pod6 b/doc/Language/quoting.pod6 index f7fe658..393807b 100644 --- a/

Re: Parrot 0.7.1 "Manu Aloha" released

2008-09-17 Thread Francois Perrad
Patrick R. Michaud a écrit : On behalf of the Parrot team, I'm proud to announce Parrot 0.7.1 "Manu Aloha." Parrot (http://parrotcode.org/) is a virtual machine aimed at running all dynamic languages. As usual, the Windows setup is available on http://parrotwin32.sourceforge.net/ François.

Re: Parrot 0.7.0 "Severe Macaw"

2008-08-20 Thread Francois Perrad
Bob Rogers a écrit : On behalf of the Parrot team, I'm proud to announce Parrot 0.7.0 "Severe Macaw." Parrot (http://parrotcode.org/) is a virtual machine aimed at running all dynamic languages. As usual, the Windows setup is available on http://parrotwin32.sourceforge.net/ François. Parro

Re: [perl #55670] [BUG] cannot build perl6

2008-06-12 Thread Francois Perrad
Klaas-Jan Stol (via RT) a écrit : # New Ticket Created by Klaas-Jan Stol # Please include the string: [perl #55670] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=55670 > hi, I'm having trouble when building perl6: I'm o

Re: [perl #52894] [CAGE] use more File::Temp to avoid permission issues

2008-06-09 Thread Francois Perrad
James Keenan via RT a écrit : On Mon Jun 09 05:00:17 2008, [EMAIL PROTECTED] wrote: Determining whether perldoc is installed... step auto::perldoc died during execution: The fchmod function is unimplemented at config/auto/perldoc.pm line 42. On Windows, the Perl function 'chmod' works with f

Re: [perl #51756] [BUG]: config/auto/crypto.pm causes build failure on Darwin

2008-03-17 Thread Francois PERRAD
Andy Dougherty wrote: On Sat, 15 Mar 2008, James Keenan via RT wrote: On Sat Mar 15 10:50:04 2008, doughera wrote: Ah, I think this one is easy: If I recall correctly, the SHA256_CTX stuff was added in openssl version 0.9.8; I'll bet your system has 0.9.7. Yes. OpenSSL> version OpenSSL 0.

Re: Performance (was Re: Problem with lexical scoping)

2008-02-13 Thread Francois PERRAD
Will Coleda wrote: On Feb 13, 2008 1:41 PM, chromatic <[EMAIL PROTECTED]> wrote: On Wednesday 13 February 2008 06:21:32 [EMAIL PROTECTED] wrote: Should we perhaps add a performance benchmark to the tests? Normalising it to account for hardware variations might be a problem. That's somewhat d

Re: What goes in the API?

2008-02-06 Thread Francois PERRAD
Andy Lester wrote: I had removed the PARROT_API from ld() in list.c because we don't need to offer as a public function to the user a function that computes logs base 2. fperrad reverted that because it broke "make hello". It seems to me that this is backwards, just like my PARROT_APIing some

Re: vtable entries still have double underscore?

2007-12-19 Thread Francois PERRAD
Klaas-Jan Stol wrote: in PIR you can override (or implement) a vtable method using the :vtable flag. before that, in the past, this was done by prefixing the vtable name with 2 underscores. While ack'ing for ".constant" (to be replaced with .macro_const), I found that the following file defines

Re: [perl #47011] [DEPRECATED] VTABLE entry 'new_from_string'

2007-12-03 Thread Francois PERRAD
en we have to setup a convention to pass the flags... but doing this just as a convention seems to be ripe for mistakes; Clues welcome on how to proceed. 'new_from_string' is widely used by .const, for example : .const .String key_print = "print" or .const .Sub _create = 'create' What becomes this kind of constructor ? Francois.

Re: NEWS and PLATFORMS Updates Requested

2007-11-20 Thread Francois PERRAD
At 09:25 18/11/2007 -0800, chromatic wrote: The next release will be on Tuesday evening. Committers, please review your checkins and update NEWS appropriately. Everyone, please submit updates to PLATFORMS. languages/LANGUAGES_STATUS.pod could be updated too. with a special constraint : the ri

Re: Some feedbacks from Lua experience

2007-10-04 Thread Francois PERRAD
At 23:48 03/10/2007 -0700, chromatic wrote: On Wednesday 03 October 2007 12:55:54 François PERRAD wrote: > 3) garbage collection > How write code without GC problems ? > How track down and fix GC problems ? I'm happy to help, but I have difficulty running Lua programs from the command line.

Re: Side effect between exit & .HLL

2006-12-17 Thread Francois PERRAD
At 08:46 12/12/2006 +0100, François PERRAD wrote: With the following code : .sub main print "reached\n" exit 1 print "not reached\n" .end I obtain : reached But after adding a .HLL directive .HLL 'Lua', 'lua_group' .sub main print "reached\n" exit

Re: [PROPOSED PATCH] Add Parrot::Embed to Repository

2006-08-17 Thread Francois PERRAD
At 15:48 15/08/2006 -0700, chromatic wrote: Here's a proposed patch that seems to work okay for me on Linux. It's not great or beautiful, mostly because of the Makefile hackery. It's a starting point though. I suspect Windows might complain. I try it on Win2000 with MinGW. 1) ExtUtils::PkgCo

Re: [perl #37850] [BUG] tcl build trouble on win32

2006-04-25 Thread Francois PERRAD
At 14:04 24/04/2006 -0700, jerry gay wrote: On 4/22/06, Will Coleda via RT <[EMAIL PROTECTED]> wrote: > This issue is long dead, isn't it? > this has been fixed some time ago, yes. however, tcl's not building for me right now for a different reason... This linkage is broken on Win32 since revis

Global not found between PIR and PMC

2006-03-10 Thread Francois PERRAD
In a library (languages/lua/lib/luastring.pir), I declare a global variable ("mt_string"): .namespace [ "Lua" ] .HLL "Lua", "lua_group" .sub init :load, :anon ... .local pmc _lua_mt_string _lua_mt_string = new .LuaTable global "mt_string" = _lua_mt_string ... In a PMC met

Re: add methods in dynpmc

2006-02-07 Thread Francois PERRAD
At 13:53 07/02/2006 +0100, Leopold Toetsch wrote: François PERRAD wrote: Hi all, With the following patch, I try to add two methods (tostring & tonumber) at each Lua PMC. With the first new test, I obtain : Method 'tostring' not found current instr.: '_main' pc 13 (languages\lua\t\pmc\number_1

Re: [perl #37651] [PATCH] Add $LINK_DYNAMIC when linking pbc_merge

2005-11-15 Thread Francois PERRAD
At 08:08 10/11/2005 -0800, you wrote: # New Ticket Created by Nick Glencross # Please include the string: [perl #37651] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=37651 > This patch is required for pbc_merge on some pl

Re: [perl #37455] make hello fails

2005-10-18 Thread Francois PERRAD
At 07:03 17/10/2005 -0700, you wrote: "François PERRAD (via RT)" <[EMAIL PROTECTED]> wrote: > > $ ./parrot -V > This is parrot version 0.3.0-devel (r9493) built for i386-linux. > > $ make hello > ./parrot -o examples/assembly/hello.o examples/assembly/hello.pbc > make EXEC=examples/assembly/he

Re: [perl #36862] [RESOLVED] [PATCH] m4 tests compatible with Win32

2005-08-12 Thread Francois PERRAD
At 10:42 11/08/2005 -0700, you wrote: According to our records, your request regarding "[PATCH] m4 tests compatible with Win32" has been resolved. the patch wasn't correctly applied. the test fails on Win32 : # Failed test (m4\t\builtins\010_sysval.t at line 26) # got: ''$true'

Re: [perl #36843] [PATCH] m4 with MinGW

2005-08-10 Thread Francois PERRAD
At 12:56 09/08/2005 -0700, you wrote: Thanks a lot, I think this is the first large patch for 'm4', that I received. Tests are still completing here on my Linux box. Sorry, but I forgot this part : Index: languages/m4/t/freezing/001_freeze.t ===

Re: [perl #34625] [PATCH] make setup on MSWin32

2005-04-06 Thread Francois PERRAD
ch to SVN). OK, without handling ICU, the patch is shorter. Francois. > Francois Thanks, leo diff -Nur parrot/README.win32 parrot.new/README.win32 --- parrot/README.win32 2005-01-26 12:02:48.0 +0100 +++ parrot.new/README.win32 2005-04-06 13:58:06.0 +0200 @@ -38,8 +38,7

Re: [perl #34605] [PATCH] t/pmc/sys.t failure with MinGW32

2005-03-30 Thread Francois PERRAD
oot directory one directory outside, so that they can be applied with either: patch -p0 or patch -p1 See also: $ perldoc -F docs/submissions.pod I tried to follow the documentation. Francois. Thanks, leo diff -ur parrot/config/init/data.pl parrot.new/config/init/data.pl --- parrot/config/init/data.