Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37041701
en ru br
ALT Linux repos
S:0.241-alt1
5.0: 0.221-alt2

Group :: Development/Perl
RPM: perl-parent

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Current version: 0.241-alt1
Build date: 15 february 2023, 15:29 ( 58.2 weeks ago )
Size: 14.96 Kb

Home page:   http://search.cpan.org/dist/parent/

License: Artistic
Summary: Establish an ISA relationship with base classes at compile time
Description:

"parent" allows you to both load one or more modules, while setting up inheritance from
those modules at the same time

package Baz;
use parent qw(Foo Bar);

mostly is similar in effect to

   package Baz;
   BEGIN {
       require Foo;
       require Bar;
       push @ISA, qw(Foo Bar);
   }

Current maintainer: Michael Bochkaryov

List of contributors

List of rpms provided by this srpm:

  • perl-parent
ACL:
     
    design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    current maintainer: Michael Shigorin