Hi Oleg, > I have uploaded my perl module about 3 weeks ago through this form - > https://pause.perl.org/pause/authenquery?ACTION=add_uri > <https://pause.perl.org/pause/authenquery?ACTION=add_uri> > FIle name is Captcha-NocaptchaMailru-v0.1.1.tar.gz > But it seems that it has not been indexed. I can't find it in > https://cpan.metacpan.org/modules/02packages.details.txt > <https://cpan.metacpan.org/modules/02packages.details.txt>
The problem is that you renamed your module, but you didn’t update the name of the .pm file in MANIFEST. As a result, when you ran “make dist”, it didn’t include the .pm file in the tarball: Captcha-NocaptchaMailru-v0.1.1% ls -1R MANIFEST MANIFEST.SKIP META.json META.yml Makefile.PL README lib/ ./lib: Captcha/ ./lib/Captcha: Your MANIFEST file has the line: lib/Captcha/Nocaptcha.pm Which should instead be: lib/Captcha/NocaptchaMailru.pm When you run “perl Makefile.PL” check that you don’t get any error messages, and the same when you run “make dist”. Neil