File: control

package info (click to toggle)
libdevel-refcount-perl 0.10-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 136 kB
  • ctags: 3
  • sloc: perl: 150; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,437 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
Source: libdevel-refcount-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonathan Yu <jawnsy@cpan.org>,
           gregor herrmann <gregoa@debian.org>,
           Xavier Guimard <x.guimard@free.fr>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 9.20120312),
               libmodule-build-perl,
               libtest-fatal-perl,
               libtest-pod-perl,
               perl
Standards-Version: 3.9.4
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdevel-refcount-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdevel-refcount-perl.git
Homepage: https://metacpan.org/release/Devel-Refcount
Testsuite: autopkgtest-pkg-perl

Package: libdevel-refcount-perl
Architecture: any
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends}
Description: Perl module to obtain the reference count of a variable
 Devel::Refcount provides a single function which obtains the reference count
 of the object being pointed to by the passed reference value.
 .
 Internally, Perl maintains a count of the number of 'things' referring to each
 variable, as a means of providing automatic memory management. Every time a
 reference is made to a scalar value, for example, the reference count is
 incremented; every time that reference is lost (eg. when a lexical variable
 goes out of scope) then the reference count is decremented.