Thank you everyone for your responses. Since it turns out I don't greatly care about the non-latest package versions, I'll be weeding these out as I build the hash, resulting in a scan through the full data just one time, rather than for each lookup. I'll be using the application name as the key, and the latest version as the value, so I end up with with this:

%apps = ( gcc => '3.3.1', gzip => '1.2.4a', make => '3.79.1', );

Then I can check defined($apps{gcc}) to see if gcc is installed, and $apps{gcc} to get the latest version. Thanks saintmike for guiding me down that path.

As for determining which version is the latest in any given case, in the 150 applications in my full list, cmp works in almost every case. I handle the remaining 5 or 6 packages by exception, but I'll be looking into the Versions module that Cody Pendant suggested to try to reduce the number of exceptions. Thanks again!



tektsu
kiku wa ittoki no haji kikanu wa matsudai no haji

In reply to Re: Finding the latest available version of a program by tektsu
in thread Finding the latest available version of a program by tektsu

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.