I worked up a test hack that so far appears to work, using a check with MetaCPAN::Client. Essentially it iterates over each file found, and stops checking after it finds one that's a distribution.

I never thought of the Meta files as Anonymonk suggested. I like that idea better as it will save a load of processing time and in some cases many repeated calls to MetaCPAN's API. I'll write out some test code using a meta parser as well and do some testing.

sub revdeps { my $self = shift; load 'MetaCPAN::Client'; my $mcpan = MetaCPAN::Client->new; my $log = $log->child('revdeps'); $log->_6('running --revdep'); my $mod; find({ wanted => sub { return if $mod; if (-f && $_ =~ /\.pm$/){ $log->_6("processing module '$_'"); s|lib/||; s|/|-|g; s|\.pm||; $log->_6("module file converted to '$_'"); my $dist; eval { $dist = $mcpan->distribution($_); }; $mod = $_ if ref $dist; } }, no_chdir => 1, }, 'lib/' ); $log->_7("using '$mod' as the project we're working on"); my @revdeps = $self->_get_revdeps($mod); return @revdeps; }

In reply to Re: Get the top-level module name from a Git repository/dist directory by stevieb
in thread Get the top-level module name from a Git repository/dist directory by stevieb

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.