How to Install and Uninstall perl-MooseX-SimpleConfig Package on openSuSE Tumbleweed

Last updated: May 20,2024

1. Install "perl-MooseX-SimpleConfig" package

This tutorial shows how to install perl-MooseX-SimpleConfig on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-MooseX-SimpleConfig

2. Uninstall "perl-MooseX-SimpleConfig" package

Here is a brief guide to show you how to uninstall perl-MooseX-SimpleConfig on openSuSE Tumbleweed:

$ sudo zypper remove perl-MooseX-SimpleConfig

3. Information about the perl-MooseX-SimpleConfig package on openSuSE Tumbleweed

Information for package perl-MooseX-SimpleConfig:
-------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-MooseX-SimpleConfig
Version : 0.11-1.29
Arch : noarch
Vendor : openSUSE
Installed Size : 31.3 KiB
Installed : No
Status : not installed
Source package : perl-MooseX-SimpleConfig-0.11-1.29.src
Upstream URL : http://search.cpan.org/dist/MooseX-SimpleConfig/
Summary : A Moose role for setting attributes from a simple configuration file
Description :
This role loads simple files to set object attributes. It is based on the
abstract role the MooseX::ConfigFromFile manpage, and uses the Config::Any
manpage to load your configuration file. the Config::Any manpage will in
turn support any of a variety of different config formats, detected by the
file extension. See the Config::Any manpage for more details about
supported formats.
To pass additional arguments to the Config::Any manpage you must provide a
'config_any_args()' method, for example:
sub config_any_args {
return {
driver_args => { General => { '-InterPolateVars' => 1 } }
};
}
Like all the MooseX::ConfigFromFile manpage -derived file loaders, this
module is automatically supported by the the MooseX::Getopt manpage role as
well, which allows specifying '-configfile' on the command line.