File: README

package info (click to toggle)
libdevel-patchperl-perl 0.72-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 304 kB
  • sloc: perl: 2,963; ansic: 45; makefile: 2
file content (56 lines) | stat: -rw-r--r-- 1,592 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
49
50
51
52
53
54
55
56
NAME
    Devel::PatchPerl - Patch perl source a la Devel::PPPort's buildperl.pl

VERSION
    version 0.72

SYNOPSIS
      use strict;
      use warnings;

      use Devel::PatchPerl;

      Devel::PatchPerl->patch_source( '5.6.1', '/path/to/untarred/perl/source/perl-5.6.1' );

DESCRIPTION
    Devel::PatchPerl is a modularisation of the patching code contained in
    Devel::PPPort's "buildperl.pl".

    It does not build perls, it merely provides an interface to the source
    patching functionality.

FUNCTION
    "patch_source"
        Takes two parameters, a "perl" version and the path to unwrapped
        perl source for that version. It dies on any errors.

        If you don't supply a "perl" version, it will attempt to
        auto-determine the "perl" version from the specified path.

        If you don't supply the path to unwrapped perl source, it will
        assume the current working directory.

PLUGIN SYSTEM
    See Devel::PatchPerl::Plugin for details of Devel::PatchPerl's plugin
    system.

CAVEAT
    Devel::PatchPerl is intended only to facilitate the "building" of perls,
    not to facilitate the "testing" of perls. This means that it will not
    patch failing tests in the perl testsuite.

SEE ALSO
    Devel::PPPort

    Devel::PatchPerl::Plugin

AUTHOR
    Chris Williams <chris@bingosnet.co.uk>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2012 by Chris Williams and Marcus
    Holland-Moritz.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.