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/openSUSE_Tumbleweed/ 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-Algorithm-Graphs-TransitiveClosure Calculate the transitive closure This is an implementation of the well known _Floyd-Warshall_ algorithm. [1,2] The subroutine 'floyd_warshall' takes a directed graph, and calculates its transitive closure, which will be returned. The given graph is actually modified, so be sure to pass a copy of the graph to the routine if you need to keep the original graph. The subroutine takes graphs in one of the two following formats: * floyd_warshall ARRAYREF The graph _G = (V, E)_ is described with a list of lists, '$graph', representing _V x V_. If there is an edge between vertices '$i' and '$j' (or if '$i == $j'), then '$graph -> [$i] -> [$j] == 1'. For all other pairs '($k, $l)' from _V x V_, '$graph -> [$k] -> [$l] == 0'. The resulting '$graph' will have '$graph -> [$i] -> [$j] == 1' iff '$i == $j' or there is a path in _G_ from '$i' to '$j', and '$graph -> [$i] -> [$j] == 0' otherwise. * floyd_warshall HASHREF The graph _G = (V, E)_, with labeled vertices, is described with a hash of hashes, '$graph', representing _V x V_. If there is an edge between vertices '$label1' and '$label2' (or if '$label1 eq $label2'), then '$graph -> {$label1} -> {$label2} == 1'. For all other pairs '($label3, $label4)' from _V x V_, '$graph -> {$label3} -> {$label4}' does not exist. The resulting '$graph' will have '$graph -> {$label1} -> {$label2} == 1' iff '$label1 eq $label2' or there is a path in _G_ from '$label1' to '$label2', and '$graph -> {$label1} -> {$label2}' does not exist otherwise.