Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

What is the colon : in perl library.

by redflammingo (Initiate)
on Apr 28, 2014 at 10:54 UTC ( [id://1084110]=perlquestion: print w/replies, xml ) Need Help??

redflammingo has asked for the wisdom of the Perl Monks concerning the following question:

Hi Monks,

perl-libs = 4:5.10.1-129.el6 is needed by perl-4:5.10.1-129.el6.x86_64

What does the colon mean, in 4:5.10... in above perl lib line.

I got that message when I executed below command to downgrade perl version:

rpm -ivh --test perl-5.10.1-129.el6.x86_64.rpm error: Failed dependencies:

perl-libs = 4:5.10.1-129.el6 is needed by perl-4:5.10.1-129.el6.x86_64

Thanks.

John

Replies are listed 'Best First'.
Re: What is the colon : in perl library.
by tobyink (Canon) on Apr 28, 2014 at 12:46 UTC

    This "4:" part is nothing to do with Perl's version numbering, nor with any Perl modules.

    It's the rpm's "epoch". Many package managers (RPM is one; Debian packages do much the same) support an optional "epoch" which overrides the software's normal version number when it comes to figuring out whether version A is newer than version B.

    An example of why package managers do this sort of thing. Consider package "foobar" which has versions "1.0", "1.1", ... "1.9". Now perhaps the developer releases "1.10" and "1.11" next, but the packager realises that RPM will treat "foobar-1.10" as being identical to "foobar-1.1", and "foobar-1.11" as older than "foobar-1.2". So the packager bumps the epoch, calling them "foobar-2:1.10" and "foobar-2:1.11". This ensures that they'll be seen as newer than "foobar-1.9".

    use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name
Re: What is the colon : in perl library.
by Bloodnok (Vicar) on Apr 28, 2014 at 11:03 UTC
    The problem would appear to be specific to an un-satisfied RPM dependency, not a perl module - I don't have an RPM based distro on which to play, but would suggest that, rather than down-versioning what appears to be the system perl, I'd attempt to add a new perl, at your required version, at a suitably alternative installation root (using the --prefix path option) - if that's at all possible using the RPM packages.

    Otherwise, I'd suggest the use of perlbrew.

    A user level that continues to overstate my experience :-))
Re: What is the colon : in perl library.
by karlgoethebier (Abbot) on Apr 28, 2014 at 11:27 UTC
      Why is this a case of LMGTFY?

      Cheers Rolf

      ( addicted to the Perl Programming Language)

        Kindliness, perhaps.

        Regards, Karl

        «The Crux of the Biscuit is the Apostrophe»

Re: What is the colon : in perl library. (rpm
by Anonymous Monk on Apr 28, 2014 at 11:03 UTC
    That is some kind of rpmitis :) not specific to perl :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1084110]
Approved by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-23 10:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found