Re: getting rid of some unmaintained modules

2004-05-07 Thread Mark Stosberg
On Sat, May 08, 2004 at 01:00:36AM -0200, Gabor Szabo wrote: > > I have released 3 modules to CPAN earlier, when I thought it is fun to > have some modules up there. Actually they don't do much there so I'd > like to get rid of them. > Two of them have never really worked so I can safely assume no

Re: getting rid of some unmaintained modules

2004-05-07 Thread _brian_d_foy
In article <[EMAIL PROTECTED]>, Sherzod Ruzmetov <[EMAIL PROTECTED]> wrote: > Instead of removing any modules, edit the docs of the library stating the > modules are obsolete, unfinished, broken etc. If there are any other modules > that you know of to be used as an alternative, list them, but kee

Re: getting rid of some unmaintained modules

2004-05-07 Thread Sherzod Ruzmetov
Instead of removing any modules, edit the docs of the library stating the modules are obsolete, unfinished, broken etc. If there are any other modules that you know of to be used as an alternative, list them, but keep the latest revisions of your libraries on CPAN. Even if you think noone is using

getting rid of some unmaintained modules

2004-05-07 Thread Gabor Szabo
I have released 3 modules to CPAN earlier, when I thought it is fun to have some modules up there. Actually they don't do much there so I'd like to get rid of them. Two of them have never really worked so I can safely assume no one uses them. I think I can just delete all of their copies from CPAN

Re: Finding installed modules under a given namespace

2004-05-07 Thread Jose Alves de Castro
> Class::Factory::Util might be helpful. It is :-) I can already do what I wanted :-) > -dave Thanks :-) jac -- Josà Alves de Castro <[EMAIL PROTECTED]> Telbit - Tecnologias de InformaÃÃo

Re: Finding installed modules under a given namespace

2004-05-07 Thread Dave Rolsky
On Fri, 7 May 2004, Jose Alves de Castro wrote: > I have a module (Lingua::Identify) which needs to be aware of all > installed modules under its namespace (Lingua::Identify::*) and do some > stuff for each of them... kind of like > > for (Lingua::Identify::*) { # some stuff here } > > I have no i

Finding installed modules under a given namespace

2004-05-07 Thread Jose Alves de Castro
I have a module (Lingua::Identify) which needs to be aware of all installed modules under its namespace (Lingua::Identify::*) and do some stuff for each of them... kind of like for (Lingua::Identify::*) { # some stuff here } I have no idea how to do this, though... :-| Any hints? TIA, jac --