devel:languages:perl Perl and perl modules ++++++++++ Note: We are going to change the version format of the modules. See https://github.com/openSUSE/cpanspec/issues/47 for context ++++++++++ Perl and a large number of important perl modules and tools. Module updates from CPAN are regularly checked (with scripts from https://github.com/openSUSE/cpanspec ) and put into https://build.opensuse.org/project/show/devel:languages:perl:autoupdate . Please check https://build.opensuse.org/project/show/devel:languages:perl:autoupdate first before doing your own update! An updated version of the module might already be there, just that there is no submit request yet. How to submit a new module here: https://github.com/openSUSE/cpanspec/wiki/Submit-a-new-Perl-module-to-openSUSE https://download.opensuse.org/repositories/devel:/languages:/perl/openSUSE_Tumbleweed/ openSUSE:Tumbleweed Tumbleweed Tumbleweed is the openSUSE Rolling Release This OBS Project represents the content of the currently published snapshot. The newer repository for next publish can be found in openSUSE:Factory standard repository. https://download.opensuse.org/repositories/openSUSE:/Tumbleweed/standard/ openSUSE:Tumbleweed Tumbleweed Tumbleweed is the openSUSE Rolling Release This OBS Project represents the content of the currently published snapshot. The newer repository for next publish can be found in openSUSE:Factory standard repository. https://download.opensuse.org/tumbleweed/repo/oss/ openSUSE:Factory The next openSUSE distribution Any user who wishes to have the newest packages that include, but are not limited to, the Linux kernel, SAMBA, git, desktops, office applications and many other packages, will want Tumbleweed. Tumbleweed appeals to Power Users, Software Developers and openSUSE Contributors. If you require the latest software stacks and Integrated Development Environment or need a stable platform closest to bleeding edge Linux, Tumbleweed is the best choice for you. Staging dashboard is located at: https://build.opensuse.org/staging_workflows/openSUSE:Factory List of known devel projects: https://build.opensuse.org/package/view_file/openSUSE:Factory:Staging/dashboard/devel_projects Have a look at http://en.opensuse.org/Portal:Factory for more details. https://download.opensuse.org/repositories/openSUSE:/Factory/ports/ perl-CPAN-SQLite Maintain and Search a Minimal Cpan Database This package is used for setting up, maintaining, and searching a CPAN database consisting of the information stored in the three main CPAN indices: _$CPAN/modules/03modlist.data.gz_, _$CPAN/modules/02packages.details.txt.gz_, and _$CPAN/authors/01mailrc.txt.gz_. It should be considered at an alpha stage of development. One begins by creating the object as my $obj = CPAN::SQLite->new(%args); which accepts the following arguments: * * 'CPAN => '/path/to/CPAN'' This specifies the path to where the index files are to be stored. This could be a local CPAN mirror, defined here by the presence of a _MIRRORED.BY_ file beneath this directory, or a local directory in which to store these files from a remote CPAN mirror. In the latter case, the index files are fetched from a remote CPAN mirror, using the same list that 'CPAN.pm' uses, if this is configured, and are updated if they are more than one day old. If the 'CPAN' option is not given, it will default to 'cpan_home' of CPAN, if this is configured, with the index files found under 'keep_source_where'. A fatal error results if such a directory isn't found. Updates to these index files are assumed here to be handled by 'CPAN.pm'. * * 'db_dir => '/path/to/db/dir'' This specifies the path to where the database file is found. If not given, it defaults to the 'cpan_home' directory of 'CPAN.pm', if present, or to the directory in which the script was invoked. The name of the database file is 'cpandb.sql'. There are two main methods available.