latex-mk fig-pdf bug

2009-09-08 Thread Taylor Venable
/print/latex-mk/patches) that takes care of it. -- Taylor Venable http://metasyntax.net/ --- xfig.mk.in.in.orig Tue Sep 8 21:48:44 2009 +++ xfig.mk.in.in Tue Sep 8 21:49:01 2009 @@ -192,6 +192,6 @@ GMK: $(FIG2DEV) $(FIG2DEV_FLAGS) $(FIG2DEV_EPS_FLAGS) $*.fig $*.eps .fig.pdf : -BMK

luastdlib mutually-recursive require

2009-09-08 Thread Taylor Venable
luastdlib-4p1 has a problem with mutual 'require' calls, namely that base.lua requires list.lua, and list.lua requires base.lua; since Lua only processes a requirement once the result is not infinite recursion at least, but neither file will load correctly. Thus, packages that rely on luastdlib

[UPDATE] CLISP 2.43p1 - 2.47

2009-04-12 Thread Taylor Venable
On 2009-03-06 I sent out a patch to update CLISP from 2.43p0 to 2.47; I haven't heard anything back on that, so I've updated that patch to reflect the fact that CLISP is now at 2.43p1 and I am resending it. -- Taylor Christopher Venable http://real.metasyntax.net:2357/ Index: lang/clisp/Makefile

Re: [UPDATE] CLISP 2.43p1 - 2.47

2009-04-12 Thread Taylor Venable
On Sun, Apr 12, 2009 at 02:22:27PM -0400, Taylor Venable wrote: On 2009-03-06 I sent out a patch to update CLISP from 2.43p0 to 2.47; I haven't heard anything back on that, so I've updated that patch to reflect the fact that CLISP is now at 2.43p1 and I am resending it. I forgot

[UPDATE] lang/chicken 2.6 - 4.0.0

2009-04-12 Thread Taylor Venable
It seems I am not the only person using Lisp languages on OpenBSD after all! And ironically enough this has come up already. Here's my patch to update to the recently released Chicken 4.0.0 but I won't yet ask for it to be included until the other gentleman working on Chicken gets a chance to

Re: [UPDATE] lang/chicken 2.6 - 4.0.0

2009-04-12 Thread Taylor Venable
On Sun, Apr 12, 2009 at 10:46:01PM -0400, Scott Vokes wrote: On Sun, Apr 12, 2009 at 10:06 PM, Taylor Venable tay...@metasyntax.net wrote: It seems I am not the only person using Lisp languages on OpenBSD after all! ?And ironically enough this has come up already. ?Here's my patch

UPDATE: lang/clisp 2.43 - 2.47

2009-03-06 Thread Taylor Venable
I've updated lang/clisp (GNU CLISP Common Lisp implementation) from 2.43 to 2.47 (released October 2008). The patch against current CVS is attached. This is the first time I've done this, so a little more thorough checking may be warranted. One major change from the old version is a reliance on

rlwrap: error: read error on master pty: Interrupted system call

2008-12-15 Thread Taylor Venable
Currently running 4.4-RELEASE on a Dell Inspiron 1501 laptop (dmesg attached). I'm using rlwrap to run ij (the Apache Derby command-line interface) and I get an error when I quit it using ^D: rlwrap: error: read error on master pty: Interrupted system call Additionally, I can't backspace;

Re: www/trac Python files installed chmod 664

2008-06-11 Thread Taylor Venable
On Wed, 11 Jun 2008 05:49:12 -0500 Will Maier [EMAIL PROTECTED] wrote: Hi Taylor- On Tue, Jun 10, 2008 at 11:57:35PM -0400, Taylor Venable wrote: I was just curious if this was a bug because it seemed a bit curious to me that the Python files for Trac 0.10.4 on OpenBSD 4.3 are installed

www/trac Python files installed chmod 664

2008-06-10 Thread Taylor Venable
for any clarification, -- Taylor Venablehttp://real.metasyntax.net:2357/ foldr = lambda f, i, l: (len(l) == 1 and [f(l[0], i)] or [f(l[0], foldr(f, i, l[1:]))])[0]