File: control

package info (click to toggle)
libaccessors-perl 1.01-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 168 kB
  • ctags: 36
  • sloc: perl: 330; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,357 bytes parent folder | download | duplicates (2)
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
Source: libaccessors-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Salvatore Bonaccorso <carnil@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 8),
               libmodule-build-perl,
               perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libaccessors-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libaccessors-perl.git
Homepage: https://metacpan.org/release/accessors

Package: libaccessors-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: Perl module to create accessor methods in caller's package
 The accessors pragma lets you create simple accessors at compile-time.
 .
 This saves you from writing them by hand, which tends to result in
 cut-n-paste errors and a mess of duplicated code. It can also help you reduce
 the ammount of unwanted direct-variable access that may creep into your
 codebase when you're feeling lazy. accessors was designed with laziness in
 mind.
 .
 Method-chaining accessors are generated by default. Note that you can still
 use accessors::chained directly for reasons of backwards compatibility.
 .
 See accessors::classic for accessors that always return the current value if
 you don't like method chaining.