devel:languages:perl:CPAN-A CPAN modules not in devel:languages:perl This project builds all cpan modules generated by cpanspec without developer interaction. If you want to fix a package, copypac it from here and then submit it to devel:languages:perl https://download.opensuse.org/repositories/devel:/languages:/perl:/CPAN-A/15.4/ openSUSE:Leap:15.4 openSUSE Leap borrows packages from SLE. The content of the build media is almost the same as Leap:15.2, but the development is drastic different. It includes the binaries (instead of the sources) directly from SLE. https://lists.opensuse.org/opensuse-factory/2020-04/msg00165.html https://download.opensuse.org/distribution/leap/15.4/repo/oss/ openSUSE:Backports:SLE-15-SP4 Backports for SLE-15-SP4 Backports for SLE-15-SP4 https://download.opensuse.org/repositories/openSUSE:/Backports:/SLE-15-SP4/standard/ SUSE:SLE-15-SP4:GA https://download.opensuse.org/repositories/SUSE:/SLE-15-SP4:/GA/pool/ SUSE:SLE-15-SP3:Update SLE 15 SP3 SLE 15 SP3 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15-SP3:GA https://download.opensuse.org/repositories/SUSE:/SLE-15-SP3:/GA/pool/ SUSE:SLE-15-SP2:Update SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15-SP2:GA SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP2:/GA/pool/ SUSE:SLE-15-SP1:Update SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15-SP1:GA SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP1:/GA/pool/ SUSE:SLE-15:Update SLE 15 SLE 15 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15:GA SLE 15 SLE 15 https://download.opensuse.org/repositories/SUSE:/SLE-15:/GA/pool/ perl-App-rlibperl Execute perl prepending relative lib to @INC The 'rlibperl' script simplifies the inclusion of relative library directories with perl. Upon execution the script will look for lib directories relative to the location of the script then re-invoke perl with all supplied command line arguments and any found lib directories added to '@INC'. The script was designed to be installed via local::lib (though local::lib is not required). Once installed, executing the script is just like executing perl except that it adds the local lib directories to '@INC' for you. It also adds the directory of the script to '$PATH' like local::lib does which enables 'system'/'qx'/'exec'/etc. to find executables in that directory. So this: $HOME/perl5/bin/rlibperl -MSome::Module -e 'do_something' is roughly the equivalent of: PATH=$HOME/perl5/bin:$PATH perl \ -I$HOME/perl5/lib/perl5 -MSome::Module -e 'do_something' If that isn't useful enough (it probably isn't) check out App::rbinperl which automatically adds '-S' which makes it just as easy to execute another script in that bin directory.