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 32 33 34 35 36
  
     | 
    
      Source: libautobox-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Angel Abad <angel@debian.org>,
           Xavier Guimard <yadd@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libipc-system-simple-perl <!nocheck>,
               libscope-guard-perl <!nocheck>,
               libtest-fatal-perl (>= 0.017) <!nocheck>,
               libversion-perl <!nocheck>,
               perl-xs-dev,
               perl:native
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libautobox-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libautobox-perl.git
Homepage: https://metacpan.org/release/autobox
Rules-Requires-Root: no
Package: libautobox-perl
Architecture: any
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends},
         libscope-guard-perl,
         libversion-perl
Description: Perl pragma for method calls on native types
 autobox is a Perl pragma that enables method calls on Perl's native data types
 including numeric values (integers and floats), strings, arrays, hashes and
 even code references in a simple and consistent way.
 .
 When a method is invoked on something which is not a blessed object reference,
 autobox looks for the method in a package whose name corresponds to the ref()
 type of the value. This design means extending the default functionality for
 new methods on a type-by-type basis is very simple.
 
     |