NAME CPAN::Info::FromRepoName - Extract/guess information from a repo name VERSION This document describes version 0.001 of CPAN::Info::FromRepoName (from Perl distribution CPAN-Info-FromRepoName), released on 2020-10-02. FUNCTIONS extract_cpan_info_from_repo_name Usage: extract_cpan_info_from_repo_name($repo_name) -> hash Extract/guess information from a repo name. Examples: * Example #1 (perl-): extract_cpan_info_from_repo_name("perl-Foo-Bar"); # -> { dist => "Foo-Bar" } * Example #2 (p5-): extract_cpan_info_from_repo_name("perl-Foo-Bar"); # -> { dist => "Foo-Bar" } * Example #3 (cpan-): extract_cpan_info_from_repo_name("cpan-Foo-Bar"); # -> { dist => "Foo-Bar" } * Example #4 (-perl): extract_cpan_info_from_repo_name("Foo-Bar-perl"); # -> { dist => "Foo-Bar" } * Example #5 (-p5): extract_cpan_info_from_repo_name("Foo-Bar-p5"); # -> { dist => "Foo-Bar" } * Example #6 (-cpan): extract_cpan_info_from_repo_name("Foo-Bar-cpan"); # -> { dist => "Foo-Bar" } * Example #7 (): extract_cpan_info_from_repo_name("CPAN-Foo-Bar"); # -> { dist => "CPAN-Foo-Bar" } * Example #8 (unknown): extract_cpan_info_from_repo_name("\@foo"); # -> undef Guess information from a repo name and return a hash (or undef if nothing can be guessed). Possible keys include "dist" (Perl distribution name). This function is not exported by default, but exportable. Arguments ('*' denotes required arguments): * $repo_name* => *str* Return value: (hash) HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO CPAN::Info::FromURL CPAN::Author::FromRepoName CPAN::Dist::FromRepoName CPAN::Module::FromRepoName CPAN::Release::FromRepoName AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2020 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.