line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
920
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
73
|
|
2
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
63
|
|
3
|
|
|
|
|
|
|
package AAAA::Mail::SpamAssassin; |
4
|
|
|
|
|
|
|
# git description: v0.001-1-g4fcbc88 |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
BEGIN { |
7
|
1
|
|
|
1
|
|
67
|
$AAAA::Mail::SpamAssassin::AUTHORITY = 'cpan:SCHWIGON'; |
8
|
|
|
|
|
|
|
} |
9
|
|
|
|
|
|
|
{ |
10
|
|
|
|
|
|
|
$AAAA::Mail::SpamAssassin::VERSION = '0.002'; |
11
|
|
|
|
|
|
|
} |
12
|
|
|
|
|
|
|
# ABSTRACT: making Mail::SpamAssassin installable |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
1; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=pod |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=encoding utf-8 |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
AAAA::Mail::SpamAssassin - making Mail::SpamAssassin installable |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 SYNOPSIS |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
# in Makefile.PL |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
requires 'AAAA::Mail::SpamAssassin'; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 DESCRIPTION |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
For some reason dependency resolution via the CPAN toolchains does not |
35
|
|
|
|
|
|
|
work very well for L. To install it without manual |
36
|
|
|
|
|
|
|
work you need dependencies installed beforehand. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
C is a L-style distribution that makes |
39
|
|
|
|
|
|
|
sure that dependencies are installed so that L |
40
|
|
|
|
|
|
|
installation does not complain. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
If you have a dependency on L add |
43
|
|
|
|
|
|
|
C as an additional dependency and (only) the |
44
|
|
|
|
|
|
|
most crucial dependencies will be installed before |
45
|
|
|
|
|
|
|
L. |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
Why the C<'AAAA'>? L and L install prereqs sorted |
48
|
|
|
|
|
|
|
alphabetically, the C<'AAAA'> ensures that this prereq is installed |
49
|
|
|
|
|
|
|
before L. Simples. |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head1 Acknowledgements |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
Idea shamelessly stolen from Chris C Williams' |
54
|
|
|
|
|
|
|
L. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
=head1 SEE ALSO |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
L |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
L |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=head1 AUTHOR |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Steffen Schwigon |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
This software is copyright (c) 2012 by Steffen Schwigon. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
71
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=cut |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
__END__ |