Changes between Initial Version and Version 1 of Ticket #64928, comment 2


Ignore:
Timestamp:
Apr 5, 2022, 2:39:29 PM (2 years ago)
Author:
reneeotten (Renee Otten)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64928, comment 2

    initial v1  
    22> I think I've understood that "Config" and "charnames" are things bundled with perl already so I don't need to worry about making ports for those. So it's just List::Util and Test::More. But I don't understand why upt says it can't find them when they're right there on metacpan. Is upt looking at a different web site?
    33
    4 `upt` is looking at `https://fastapi.metacpan.org/v1/release/<name>`, where `name` is the package name that has the `::` replaced by `-`. I'm by no means a Perl expert, but it seems to me the issue here is that `List::Utils` is not the actual package name, but a module provided by `Scalar-List-Utils`; so that's likely what you'll need to package.
     4`upt` is looking at `https://fastapi.metacpan.org/v1/release/<name>`, where `name` is the package name that has the `::` replaced by `-`. I'm by no means a Perl expert, but it seems to me the issue here is that `List::Utils` is not the actual package name, but a module provided by `Scalar-List-Utils`; so that's likely what you'll need to package. Similarly, `Test::More` is a module provided by `Test-Simple`.
    55
    66Regarding the varying error message - I cannot really remember anymore from a few summers ago, but the recursive option might not be deterministic (i.e., it appears to check the dependencies in a semi-random order). One could look into that to find out if that's indeed true and fix it.