Re: Net::SSH2 'hijack'

2006-03-20 Thread David Robins
On Sunday March 19, 2006 07:56, Philippe 'BooK' Bruhat wrote: > Le dimanche 19 mars 2006 à 22:07, Dr Bean écrivait: > > > > But perhaps using the same number more effectively hides the > > other version. > > It hides it so well, that search.cpan is confused: if you go > on http://search.cpan.org/

Automated library installs

2005-11-03 Thread David Robins
I've recently released Net::SSH2, based on libSSH2. My Makefile.PL currently checks for libSSH2 and bails if it can't find it. I was wondering if there was a standard way to install C libraries, or at least a supporting module to help (e.g. I provide it a download location for the latest and p

Compress::Bzip2 patch received?

2004-12-13 Thread David Robins
Marco, did you get the email I wrote to you Saturday (~5pm Eastern US) with the patch (Compress-Bzip2-1.02-1.03.patch.gz) attached? (Sorry to spam the list, but I'm not sure if my email is getting through. FWIW, I can't ping or traceroute all the way to tempest.com.br although DNS lookup succe

Re: Compress::Bzip2 patch, can't reach author

2004-12-11 Thread David Robins
On Saturday December 11, 2004 16:22, Marco Carnut wrote: > Hi David and all, > > Well, something seems to have went wrong, this seems to be the > first email I got from you. Perhaps my spam filters were too > agressive and ate your first message? I'll check this anyway. It's been a long time sin

Compress::Bzip2 patch, can't reach author

2004-12-10 Thread David Robins
I've been sitting on a patch for Compress::Bzip2 for a while; I sent it to the maintainer (Marco Carnut, http://search.cpan.org/~kcarnut/) but he didn't reply. The patch: - fixes a bug with compressing small strings (the allocated buffer is too small) - adds error reporting and checking - adds

Re: CVS version module name (EOT?)

2004-02-05 Thread David Robins
On Wednesday February 4, 2004 18:22, Smylers wrote: > David Robins writes: > > what's a good name for it? CVS::Version? > > Whatever you do, don't call it CVS::Version, because that would mean > storing the file as CVS/Version.pm, which requires a directory called >

Re: CVS version module name

2004-02-04 Thread David Robins
On Wednesday February 4, 2004 17:57, David Wheeler wrote: > On Feb 4, 2004, at 2:34 PM, David Robins wrote: > > And it doesn't work for the comparisons. It'll import a CVS tag, but > > it still thinks 1.2 > 1.10. > > No, it doesn't: > >% perl -Mver

Re: CVS version module name

2004-02-04 Thread David Robins
On Wednesday February 4, 2004 17:43, David Wheeler wrote: > On Feb 4, 2004, at 2:14 PM, David Robins wrote: > > I'm looking for suggestions for a name for a module that allows use of > > CVS > > revisions as perl versions (or for the name of an existing one, but >

CVS version module name

2004-02-04 Thread David Robins
I'm looking for suggestions for a name for a module that allows use of CVS revisions as perl versions (or for the name of an existing one, but I've searched CPAN and perlmonks and didn't find one). It works like: package Foo; use strict; use CVS_Version_Module qw$Revision$; 1; and CVS replaces

RVP module suite proposal

2004-01-03 Thread David Robins
I have a set of RVP modules I'd like to contribute to CPAN, which are described below; they can be downloaded from http://davidrobins.net/code/RVP.tar.gz (not in "CPAN distribution" format yet) for perusal. Note that the modules there are still named 'RVP' and 'RVP::*', I plan to add the 'Net:

Event::IO::Listener/Linear modules proposal

2004-01-03 Thread David Robins
I have two modules that make use of the Event.pm module that would be more generally useful that I'd like to contribute to CPAN: Event::IO::Linear - aggregates received data into 'lines'; handles timeouts; buffers writes. Works with either Unix or Internet sockets (and presumably anything else

Re: HTTP::Parser module

2003-12-14 Thread David Robins
On Sunday December 14, 2003 13:42, A. Pagaltzis wrote: > * David Robins <[EMAIL PROTECTED]> [2003-12-14 19:22]: > > Yes, it is, the return values are just "hints". Of course if > > it asks for n and you give it m < n it'll return back n-m the > > next

Re: HTTP::Parser module

2003-12-14 Thread David Robins
On Sunday December 14, 2003 07:49, Fergal Daly wrote: > On Saturday 13 December 2003 20:39, David Robins wrote: > > parse() will return: > > 0 on completion of request (call request() to get the request, call > > data() to get any extra data) > > >0 meaning we want (

Re: HTTP::Parser module

2003-12-13 Thread David Robins
On Saturday December 13, 2003 06:27, A. Pagaltzis wrote: > * David Robins <[EMAIL PROTECTED]> [2003-12-13 12:08]: > > I'd like to contribute an HTTP::Parser module to CPAN. ... > > "parse" which takes some text and either: > > dies (on error) (I can return

Re: HTTP::Parser module

2003-12-13 Thread David Robins
On Saturday December 13, 2003 14:44, Stas Bekman wrote: > David Robins wrote: > > There are a couple of HTTP parsers in modules (e.g. > > POE::Component::Server::HTTP, HTTP::Daemon, probably in SOAP::Lite too) > > but not a standalone HTTP parser module. > > I think

HTTP::Parser module

2003-12-13 Thread David Robins
There are a couple of HTTP parsers in modules (e.g. POE::Component::Server::HTTP, HTTP::Daemon, probably in SOAP::Lite too) but not a standalone HTTP parser module. I'd like to contribute an HTTP::Parser module to CPAN. It has only two methods, "new" (no parameters) and "parse" which takes som