Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Module / Build / PPMMaker.pm
CommitLineData
3fea05b9 1package Module::Build::PPMMaker;
2
3use strict;
4use vars qw($VERSION);
5$VERSION = '0.35';
6$VERSION = eval $VERSION;
7
8# This code is mostly borrowed from ExtUtils::MM_Unix 6.10_03, with a
9# few tweaks based on the PPD spec at
10# http://www.xav.com/perl/site/lib/XML/PPD.html
11
12# The PPD spec is based on <http://www.w3.org/TR/NOTE-OSD>
13
14sub new {
15 my $package = shift;
16 return bless {@_}, $package;
17}
18
19sub make_ppd {
20 my ($self, %args) = @_;
21 my $build = delete $args{build};
22
23 my @codebase;
24 if (exists $args{codebase}) {
25 @codebase = ref $args{codebase} ? @{$args{codebase}} : ($args{codebase});
26 } else {
27 my $distfile = $build->ppm_name . '.tar.gz';
28 print "Using default codebase '$distfile'\n";
29 @codebase = ($distfile);
30 }
31
32 my %dist;
33 foreach my $info (qw(name author abstract version)) {
34 my $method = "dist_$info";
35 $dist{$info} = $build->$method() or die "Can't determine distribution's $info\n";
36 }
37 $dist{version} = $self->_ppd_version($dist{version});
38
39 $self->_simple_xml_escape($_) foreach $dist{abstract}, @{$dist{author}};
40
41 # TODO: could add <LICENSE HREF=...> tag if we knew what the URLs were for
42 # various licenses
43 my $ppd = <<"PPD";
44<SOFTPKG NAME=\"$dist{name}\" VERSION=\"$dist{version}\">
45 <TITLE>$dist{name}</TITLE>
46 <ABSTRACT>$dist{abstract}</ABSTRACT>
47@{[ join "\n", map " <AUTHOR>$_</AUTHOR>", @{$dist{author}} ]}
48 <IMPLEMENTATION>
49PPD
50
51 # TODO: We could set <IMPLTYPE VALUE="PERL" /> or maybe
52 # <IMPLTYPE VALUE="PERL/XS" /> ???
53
54 # We don't include recommended dependencies because PPD has no way
55 # to distinguish them from normal dependencies. We don't include
56 # build_requires dependencies because the PPM installer doesn't
57 # build or test before installing. And obviously we don't include
58 # conflicts either.
59
60 foreach my $type (qw(requires)) {
61 my $prereq = $build->$type();
62 while (my ($modname, $spec) = each %$prereq) {
63 next if $modname eq 'perl';
64
65 my $min_version = '0.0';
66 foreach my $c ($build->_parse_conditions($spec)) {
67 my ($op, $version) = $c =~ /^\s* (<=?|>=?|==|!=) \s* ([\w.]+) \s*$/x;
68
69 # This is a nasty hack because it fails if there is no >= op
70 if ($op eq '>=') {
71 $min_version = $version;
72 last;
73 }
74 }
75
76 # Another hack - dependencies are on modules, but PPD expects
77 # them to be on distributions (I think).
78 $modname =~ s/::/-/g;
79
80 $ppd .= sprintf(<<'EOF', $modname, $self->_ppd_version($min_version));
81 <DEPENDENCY NAME="%s" VERSION="%s" />
82EOF
83
84 }
85 }
86
87 # We only include these tags if this module involves XS, on the
88 # assumption that pure Perl modules will work on any OS. PERLCORE,
89 # unfortunately, seems to indicate that a module works with _only_
90 # that version of Perl, and so is only appropriate when a module
91 # uses XS.
92 if (keys %{$build->find_xs_files}) {
93 my $perl_version = $self->_ppd_version($build->perl_version);
94 $ppd .= sprintf(<<'EOF', $perl_version, $^O, $self->_varchname($build->config) );
95 <PERLCORE VERSION="%s" />
96 <OS NAME="%s" />
97 <ARCHITECTURE NAME="%s" />
98EOF
99 }
100
101 foreach my $codebase (@codebase) {
102 $self->_simple_xml_escape($codebase);
103 $ppd .= sprintf(<<'EOF', $codebase);
104 <CODEBASE HREF="%s" />
105EOF
106 }
107
108 $ppd .= <<'EOF';
109 </IMPLEMENTATION>
110</SOFTPKG>
111EOF
112
113 my $ppd_file = "$dist{name}.ppd";
114 my $fh = IO::File->new(">$ppd_file")
115 or die "Cannot write to $ppd_file: $!";
116 $fh->binmode(":utf8") if $fh->can("binmode");
117 print $fh $ppd;
118 close $fh;
119
120 return $ppd_file;
121}
122
123sub _ppd_version {
124 my ($self, $version) = @_;
125
126 # generates something like "0,18,0,0"
127 return join ',', (split(/\./, $version), (0)x4)[0..3];
128}
129
130sub _varchname { # Copied from PPM.pm
131 my ($self, $config) = @_;
132 my $varchname = $config->{archname};
133 # Append "-5.8" to architecture name for Perl 5.8 and later
134 if ($] >= 5.008) {
135 my $vstring = sprintf "%vd", $^V;
136 $vstring =~ s/\.\d+$//;
137 $varchname .= "-$vstring";
138 }
139 return $varchname;
140}
141
142{
143 my %escapes = (
144 "\n" => "\\n",
145 '"' => '&quot;',
146 '&' => '&amp;',
147 '>' => '&gt;',
148 '<' => '&lt;',
149 );
150 my $rx = join '|', keys %escapes;
151
152 sub _simple_xml_escape {
153 $_[1] =~ s/($rx)/$escapes{$1}/go;
154 }
155}
156
1571;
158__END__
159
160
161=head1 NAME
162
163Module::Build::PPMMaker - Perl Package Manager file creation
164
165
166=head1 SYNOPSIS
167
168 On the command line, builds a .ppd file:
169 ./Build ppd
170
171
172=head1 DESCRIPTION
173
174This package contains the code that builds F<.ppd> "Perl Package
175Description" files, in support of ActiveState's "Perl Package
176Manager". Details are here:
177L<http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/>
178
179
180=head1 AUTHOR
181
182Dave Rolsky <autarch@urth.org>, Ken Williams <kwilliams@cpan.org>
183
184
185=head1 COPYRIGHT
186
187Copyright (c) 2001-2006 Ken Williams. All rights reserved.
188
189This library is free software; you can redistribute it and/or
190modify it under the same terms as Perl itself.
191
192
193=head1 SEE ALSO
194
195perl(1), Module::Build(3)
196
197=cut