File: control

package info (click to toggle)
libnamespace-autoclean-perl 0.28-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 504 kB
  • ctags: 106
  • sloc: perl: 573; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,942 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
32
33
34
35
36
37
38
39
40
41
42
Source: libnamespace-autoclean-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ryan Niebur <ryan@debian.org>,
           Salvatore Bonaccorso <carnil@debian.org>,
           Jonathan Yu <jawnsy@cpan.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9)
# don't build-depend on libmoosex-role-withoverloading-perl
# and libmoosex-markasmethods-perl to avoid a loop
Build-Depends-Indep: libb-hooks-endofscope-perl (>= 0.12),
                     libmoo-perl,
                     libmoose-perl (>= 2),
                     libmouse-perl,
                     libnamespace-clean-perl (>= 0.20),
                     libsub-identify-perl,
                     libtest-requires-perl,
                     perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libnamespace-autoclean-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libnamespace-autoclean-perl.git
Testsuite: autopkgtest-pkg-perl
Homepage: https://metacpan.org/release/namespace-autoclean

Package: libnamespace-autoclean-perl
Architecture: all
Depends: libb-hooks-endofscope-perl (>= 0.12),
         libnamespace-clean-perl (>= 0.20),
         libsub-identify-perl,
         ${misc:Depends},
         ${perl:Depends}
Description: module to remove imported symbols after compilation
 namespace::autoclean is a Perl pragma that keeps your namespace clean by
 removing all imported symbols at the end of the current package's compile
 cycle. Perhaps most importantly, this means that imported functions will no
 longer be made accidentally accessible to users outside of your package via
 method invocations.
 .
 This module differs from namespace::clean (see libnamespace-clean-perl) in
 that it cleans all imported functions, whether or not the imports happened
 prior to using the pragma. Things that "look" like a method (according to
 Class::MOP) will be left alone.