File: control

package info (click to toggle)
libextutils-builder-perl 0.019-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 284 kB
  • sloc: perl: 1,394; makefile: 2
file content (48 lines) | stat: -rw-r--r-- 1,870 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
Source: libextutils-builder-perl
Standards-Version: 4.7.2
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders:
 gregor herrmann <gregoa@debian.org>,
Section: perl
Testsuite: autopkgtest-pkg-perl
Build-Depends:
 debhelper-compat (= 13),
Build-Depends-Indep:
 libextutils-config-perl <!nocheck>,
 libextutils-helpers-perl (>= 0.027) <!nocheck>,
 libscalar-list-utils-perl <!nocheck>,
 libtest-simple-perl <!nocheck>,
 libversion-perl <!nocheck>,
 perl,
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libextutils-builder-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libextutils-builder-perl.git
Homepage: https://metacpan.org/release/ExtUtils-Builder

Package: libextutils-builder-perl
Architecture: all
Depends:
 ${misc:Depends},
 ${perl:Depends},
 libextutils-config-perl,
 libextutils-helpers-perl (>= 0.027),
 libscalar-list-utils-perl,
 libversion-perl,
Description: ExtUtils::Builder Plan framework
 Writing extensions for various build tools can be a daunting task.
 ExtUtils::Builder tries to abstract steps of build processes into reusable
 building blocks for creating platform and build system agnostic executable
 descriptions of work.
 .
 The ExtUtils::Builder Plan framework includes Actions, Nodes and Plans.
 .
 Actions are the cornerstone of the ExtUtils::Builder framework. They provide
 an interface between build tools (e.g. ExtUtils::MakeMaker,
 Module::Build, ...) and building extensions. This allows producing and
 consuming sides to be completely independent from each other. It is a
 flexible abstraction around pieces of work, this work can be a piece of perl
 code, an external command, a mix of those or possibly other things.
 .
 Nodes are composite Actions.
 .
 Plans are the equivalent of a (piece of a) Makefile. They are a bunch of
 nodes that should interconnect.