Jump to letter: [
          
            ABCDEFGHIJKLMNOPQRSTUVWXYZ
          ]
        
        perl-parent - Establish an ISA relationship with base classes at compile time
        
        
        - Description:
- Allows you to both load one or more modules, while setting up inheritance
from those modules at the same time. Mostly similar in effect to:
	package Baz;
	BEGIN {
		require Foo;
		require Bar;
		push @ISA, qw(Foo Bar);
	}
Packages
        
        
            | perl-parent-0.237-1.el8.noarch
              [18 KiB] | Changelog
              by Paul Howarth (2018-07-07): - Update to 0.237
  - Don't load vars.pm (CPAN RT#132077)
- Drop legacy Group: tag
- Drop buildroot cleaning in %install section |