File: control

package info (click to toggle)
libunconstant-perl 0.09-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: perl: 224; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 1,124 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
Source: libunconstant-perl
Maintainer: Bastien Roucariès <rouca@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libscalar-list-utils-perl <!nocheck>,
                     libtest-simple-perl <!nocheck>,
                     perl
Standards-Version: 4.7.2
Homepage: https://metacpan.org/release/unconstant
Rules-Requires-Root: no
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libunconstant-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libunconstant-perl.git

Package: libunconstant-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libscalar-list-utils-perl
Description: unconstant constant keywork for testing or mocking purpose
 unconstant provides an alternative implementation of constant. This
 implementation stops perl from inlining the constant, stops constant folding,
 and stops dead code removal.
 .
 This is useful for testing where a package internally declares and
 uses a constant that you want to change. This is common when wanting to test
 modules that make use of constants.