Re: Module takeover procedure (was Re: DBD::SQLite Module Abandoned?)

2009-02-13 Thread Eric Wilhelm
# from David Golden # on Friday 13 February 2009 20:29: >> I really wish there were some sort of standard process drafted that >> would allow CPAN module developers to take over maintainership of >> another (abandoned) module. Perhaps there is, and I'm just not aware >> of it yet? > >There is -- i

Re: DBD::SQLite Module Abandoned?

2009-02-13 Thread David Golden
On Fri, Feb 13, 2009 at 11:16 PM, Jonathan Yu wrote: > I really wish there were some sort of standard process drafted that > would allow CPAN module developers to take over maintainership of > another (abandoned) module. Perhaps there is, and I'm just not aware > of it yet? There is -- it's just

Re: DBD::SQLite Module Abandoned?

2009-02-13 Thread Jonathan Yu
Hi David: Thanks for your reply. Conveniently, I already have access to Adam's repository. However, it appears that the module author is Matt Sergeant - not Adam - so I don't know if he has access to upload modules yet (or they will be flagged as unauthorized). So hopefully he is given comaintain

Re: DBD::SQLite Module Abandoned?

2009-02-13 Thread David Golden
On Fri, Feb 13, 2009 at 11:04 PM, Jonathan Yu wrote: > Hi all: > > I write because one of the modules I use in one of my distributions, > DBD::SQLite, seems to be abandoned by its maintainer. I am wondering > what should be done in such a case, because the backlog of requests in > the RT is gettin

DBD::SQLite Module Abandoned?

2009-02-13 Thread Jonathan Yu
Hi all: I write because one of the modules I use in one of my distributions, DBD::SQLite, seems to be abandoned by its maintainer. I am wondering what should be done in such a case, because the backlog of requests in the RT is getting pretty big, and there are some outstanding patches in the downs

Re: Module::Build equivalent to MakeMaker's LIB= argument?

2009-02-13 Thread Hans Dieter Pearcey
On Fri, Feb 13, 2009 at 12:22:34PM -0800, Bill Ward wrote: > I'm building a "tech stack" - that is, downloading CPAN modules and installing > them in a new directory, not the one that Perl lives in. Until now, all the > modules I build are MakeMaker-based, but I've just started adding a new > Modu

Fwd: Delivery Status Notification (Failure)

2009-02-13 Thread Bill Ward
I sent mail to the author of HTML::Detoxifier but it bounced. Does anyone here have any suggestions for XSS-killers in Perl? -- Forwarded message -- From: Mail Delivery Subsystem Date: Fri, Feb 13, 2009 at 2:13 PM Subject: Delivery Status Notification (Failure) To: william.w...@g

Re: Module::Build equivalent to MakeMaker's LIB= argument?

2009-02-13 Thread David Golden
On Fri, Feb 13, 2009 at 3:22 PM, Bill Ward wrote: > I'm building a "tech stack" - that is, downloading CPAN modules and > installing them in a new directory, not the one that Perl lives in. Until Here's how I've done this -- with files living in "/home/david/perl": * Set PERL5LIB to "/home/davi

Re: Module::Build equivalent to MakeMaker's LIB= argument?

2009-02-13 Thread Bill Ward
On Fri, Feb 13, 2009 at 12:40 PM, Eric Wilhelm wrote: > # from Bill Ward > # on Friday 13 February 2009 12:22: > > >it can't find Module::Build! > > > >I suppose I could use "perl -I" or PERL5LIB to specify the path, but I > > was looking for something analagous to the LIB= argument that I could >

Re: Module::Build equivalent to MakeMaker's LIB= argument?

2009-02-13 Thread Eric Wilhelm
# from Bill Ward # on Friday 13 February 2009 12:22: >it can't find Module::Build! > >I suppose I could use "perl -I" or PERL5LIB to specify the path, but I > was looking for something analagous to the LIB= argument that I could > give to Build.PL, and have that be propagated into the Build script

Re: Text::Abbrev (was: autoabbrev algorithm from Getopt::Long)

2009-02-13 Thread Eric Wilhelm
# from Bill Ward # on Friday 13 February 2009 11:08: >> What's wrong with Text::Abbrev?  It's been part of the core for a >> long time. > >That might be the thing I'm looking for, thanks. It does appear to have an issue with not detecting ambiguous abbreviations. my %hash = abbrev(qw(dog door

Module::Build equivalent to MakeMaker's LIB= argument?

2009-02-13 Thread Bill Ward
I'm building a "tech stack" - that is, downloading CPAN modules and installing them in a new directory, not the one that Perl lives in. Until now, all the modules I build are MakeMaker-based, but I've just started adding a new Module::Build-based module (Net::OAuth, in case you're curious) and am

Re: autoabbrev algorithm from Getopt::Long

2009-02-13 Thread Bill Ward
On Fri, Feb 13, 2009 at 6:22 AM, Darren Chamberlain wrote: > On Fri, Feb 13, 2009 at 09:05, Johan Vromans wrote: > >> I could just extract the code from Getopt::Long but I think it would > >> be a useful thing to have as a CPAN module... > > > > No problem with that, but since this is only suppos

Re: autoabbrev algorithm from Getopt::Long

2009-02-13 Thread Aldo Calpini
Darren Chamberlain wrote: What's wrong with Text::Abbrev? It's been part of the core for a long time. if you ask what's wrong, that's the POD. the name is set to 'abbrev', it sort of even breaks search.cpan.org. I guess many don't know about the module for this reason :-) cheers, Aldo

Re: autoabbrev algorithm from Getopt::Long

2009-02-13 Thread Darren Chamberlain
On Fri, Feb 13, 2009 at 09:05, Johan Vromans wrote: >> I could just extract the code from Getopt::Long but I think it would >> be a useful thing to have as a CPAN module... > > No problem with that, but since this is only supposed to assist > typing, would't looking at readline completions be a be

Re: autoabbrev algorithm from Getopt::Long

2009-02-13 Thread Johan Vromans
[Quoting Bill Ward, on February 12 2009, 16:15, in "autoabbrev algorithm"] > Do you know of any Perl module that provides the algorithm used in > Getopt::Long to implement the automatic abbreviation feature? I'd like to > have that feature available for not just command-line arguments, but > subro