File: control

package info (click to toggle)
libmoosex-attributeshortcuts-perl 0.024-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 312 kB
  • ctags: 9
  • sloc: perl: 326; makefile: 2
file content (51 lines) | stat: -rw-r--r-- 2,392 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
43
44
45
46
47
48
49
50
51
Source: libmoosex-attributeshortcuts-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Alessandro Ghedini <ghedo@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: libautobox-core-perl,
                     libautobox-junctions-perl,
                     liblist-allutils-perl,
                     libmoose-perl,
                     libmoosex-role-parameterized-perl,
                     libmoosex-types-common-perl,
                     libmoosex-types-path-class-perl,
                     libmoosex-types-perl,
                     libnamespace-autoclean-perl,
                     libpackage-deprecationmanager-perl,
                     libpath-class-perl,
                     libtest-checkdeps-perl (>= 0.010),
                     libtest-fatal-perl,
                     libtest-moose-more-perl,
                     libtest-warn-perl,
                     perl (>= 5.11.1) | libtest-simple-perl (>= 0.94),
                     perl
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libmoosex-attributeshortcuts-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmoosex-attributeshortcuts-perl.git
Homepage: https://metacpan.org/release/MooseX-AttributeShortcuts

Package: libmoosex-attributeshortcuts-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libautobox-core-perl,
         libautobox-junctions-perl,
         liblist-allutils-perl,
         libmoose-perl,
         libmoosex-role-parameterized-perl,
         libmoosex-types-common-perl,
         libmoosex-types-perl,
         libnamespace-autoclean-perl,
         libpackage-deprecationmanager-perl
Description: Moose extension providing shorthands for common attribute options
 Ever found yourself repeatedly specifying writers and builders, because
 there's no good shortcut to specifying them? Sometimes you want an  
 attribute to have a read-only public interface, but a private writer. And 
 wouldn't it be easier to just say "builder => 1" and have the attribute 
 construct the canonical "_build_$name" builder name for you?
 .
 MooseX::AttributeShortcuts causes an attribute trait to be applied to all 
 attributes  defined to the using class. This trait extends the attribute 
 option processing to handle the above variations.