File: control

package info (click to toggle)
libtoolkit-perl 0.0.2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 92 kB
  • sloc: perl: 135; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,119 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
33
34
35
Source: libtoolkit-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Niko Tyni <ntyni@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9),
               libmodule-build-perl
Build-Depends-Indep: libtest-pod-coverage-perl,
                     libtest-pod-perl,
                     perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libtoolkit-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libtoolkit-perl.git
Homepage: https://metacpan.org/release/Toolkit

Package: libtoolkit-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends}
Description: Keep your handy modules organized
 The Toolkit module provides a standard location to store modules that you use
 all the time, and then loads them for you automatically. For example, instead
 of always writing:
 .
  use strict;
  use warnings;
  use Carp;
  use Smart::Comments;
 .
 in every program/module, you can just write:
 .
  use Toolkit;
 .
 and put all your favorite modules in a file.