File: control

package info (click to toggle)
libbest-perl 0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: perl: 2,600; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,244 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Source: libbest-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libmodule-install-perl
Build-Depends-Indep: libtest-exception-perl <!nocheck>,
                     perl
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libbest-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libbest-perl.git
Homepage: https://metacpan.org/release/Best
Rules-Requires-Root: no

Package: libbest-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: fallbackable module loader
 Best.pm attempts to load Perl modules from a list, stopping at the first
 successful load and failing only if no alternative was found.
 .
 Often there are several possible providers of some functionality your program
 needs, but you don't know which is available at the run site. For example,
 one of the modules may be implemented with XS, or not in the core Perl
 distribution and thus not necessarily installed. With Best.pm, this can
 be as simple as:
 .
  use Best qw/YAML::Syck YAML/;