File: control

package info (click to toggle)
libmoosex-attributeshortcuts-perl 0.037-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 448 kB
  • sloc: perl: 691; makefile: 2
file content (52 lines) | stat: -rw-r--r-- 2,401 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
52
Source: libmoosex-attributeshortcuts-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)
Build-Depends-Indep: libaliased-perl,
                     libmoose-perl,
                     libmoosex-meta-typeconstraint-mooish-perl,
                     libmoosex-role-parameterized-perl,
                     libmoosex-types-common-perl,
                     libmoosex-types-path-class-perl,
                     libmoosex-types-perl,
                     libmoosex-util-perl,
                     libnamespace-autoclean-perl,
                     libpath-class-perl,
                     libtest-checkdeps-perl,
                     libtest-fatal-perl,
                     libtest-moose-more-perl,
                     libtest-requires-perl,
                     libtest-warn-perl,
                     perl,
                     perl | libscalar-list-utils-perl
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributeshortcuts-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libmoosex-attributeshortcuts-perl.git
Homepage: https://metacpan.org/release/MooseX-AttributeShortcuts

Package: libmoosex-attributeshortcuts-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libaliased-perl,
         libmoose-perl,
         libmoosex-meta-typeconstraint-mooish-perl,
         libmoosex-role-parameterized-perl,
         libmoosex-types-common-perl,
         libmoosex-types-perl,
         libmoosex-util-perl,
         libnamespace-autoclean-perl,
         perl | libscalar-list-utils-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.