ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Canary-Stability/Stability.pm
(Generate patch)

Comparing Canary-Stability/Stability.pm (file contents):
Revision 1.2 by root, Thu Jun 4 16:18:26 2015 UTC vs.
Revision 1.10 by root, Mon Apr 22 10:40:01 2019 UTC

1=head1 NAME 1=head1 NAME
2 2
3Canary::Stability - to be done 3Canary::Stability - canary to check perl compatibility for schmorp's modules
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use Canary::Stability; 7 # in Makefile.PL
8 use Canary::Stability DISTNAME => 2001, MINIMUM_PERL_VERSION;
8 9
9=head1 DESCRIPTION 10=head1 DESCRIPTION
10 11
11This is just a placeholder module, to be filled in later. 12This module is used by Schmorp's modules during configuration stage to
13test the installed perl for compatibility with his modules.
12 14
13=over 4 15It's not, at this stage, meant as a tool for other module authors,
16although in principle nothing prevents them from subscribing to the same
17ideas.
18
19See the F<Makefile.PL> in L<Coro> or L<AnyEvent> for usage examples.
14 20
15=cut 21=cut
16 22
17package Canary::Stability; 23package Canary::Stability;
18 24
19BEGIN { 25BEGIN {
20 $VERSION = 2001; # the year perl was accomodating enough to developers to foster weird ideas such as Coro 26 $VERSION = 2013;
21} 27}
22 28
23sub sgr { 29sub sgr {
24 # we just assume ANSI almost everywhere 30 # we just assume ANSI almost everywhere
25
26 # red 31, yellow 33, green 32 31 # red 31, yellow 33, green 32
32 local $| = 1;
27 33
28 $ENV{PERL_CANARY_STABILITY_COLOUR} ne 0 34 $ENV{PERL_CANARY_STABILITY_COLOUR} ne 0
29 and ((-t STDOUT and length $ENV{TERM}) or $ENV{PERL_CANARY_STABILITY_COLOUR}) 35 and ((-t STDOUT and length $ENV{TERM}) or $ENV{PERL_CANARY_STABILITY_COLOUR})
30 and print "\e[$_[0]m"; 36 and print "\e[$_[0]m";
31} 37}
36 $ENV{PERL_CANARY_STABILITY_DISABLE} 42 $ENV{PERL_CANARY_STABILITY_DISABLE}
37 and return; 43 and return;
38 44
39 $minperl ||= 5.008002; 45 $minperl ||= 5.008002;
40 46
47 print <<EOF;
48
49***
50*** Canary::Stability COMPATIBILITY AND SUPPORT CHECK
51*** =================================================
52***
53*** Hi!
54***
55*** I do my best to provide predictable and reliable software.
56***
57*** However, in recent releases, P5P (who maintain perl) have been
58*** introducing regressions that are sometimes subtle and at other times
59*** catastrophic, often for personal preferences with little or no concern
60*** for existing code, most notably CPAN.
61***
62*** For this reason, it has become very hard for me to maintain the level
63*** of reliability and support I have committed myself to in the past, at
64*** least with some perl versions: I simply can't keep up working around new
65*** bugs or gratituous incompatibilities, and in turn you might suffer from
66*** unanticipated problems.
67***
68*** Therefore I have introduced a support and compatibility check, the results
69*** of which follow below, together with a FAQ and some recommendations.
70***
71*** This check is just to let you know that there might be a risk, so you can
72*** make judgement calls on how to proceed - it will not keep the module from
73*** installing or working.
74***
75EOF
76
41 if ($minvers > $VERSION) { 77 if ($minvers > $VERSION) {
42 sgr 33; 78 sgr 33;
43 print <<EOF; 79 print <<EOF;
44
45***
46*** The stability canary says: (nothing, he died of old age). 80*** The stability canary says: (nothing, it died of old age).
47*** 81***
48*** Your Canary::Stability module (used by $distname) is too old. 82*** Your Canary::Stability module (used by $distname) is too old.
49*** This is not a fatal problem - while you might want to upgrade to version 83*** This is not a fatal problem - while you might want to upgrade to version
50*** $minvers (currently installed version: $VERSION) to get better support 84*** $minvers (currently installed version: $VERSION) to get better support
51*** status testing, you might also not want to care at all, and all will 85*** status testing, you might also not want to care at all, and all will
52*** be well as long $distname works well enough for you, as the stability 86*** be well as long $distname works well enough for you, as the stability
53*** canary is only used when installing the distribution. 87*** canary is only used when installing the distribution.
54*** 88***
55
56EOF 89EOF
57 } elsif ($] < $minperl) { 90 } elsif ($] < $minperl) {
58 91
59 sgr 33; 92 sgr 33;
60 print <<EOF; 93 print <<EOF;
61
62***
63*** The stability canary says: chirp... (it seems a bit unhappy). 94*** The stability canary says: chirp (it seems concerned about something).
64*** 95***
65*** Your perl version ($]) is older than the $distname distribution 96*** Your perl version ($]) is older than the $distname distribution
66*** likes ($minperl). This is not a fatal problem - the module might work 97*** likes ($minperl). This is not a fatal problem - the module might work
67*** well with your version of perl, but it does mean the author likely 98*** well with your version of perl, but it does mean the author likely
68*** won't do anything to make it wokr if it breaks. 99*** won't do anything to make it work if it breaks.
69*** 100***
70
71EOF 101EOF
102
103 if ($ENV{AUTOMATED_TESTING}) {
104 print <<EOF;
105*** Since this is an AUTOMATED_TESTING environment, the stability canary
106*** decided to fail cleanly here, rather than to generate a false test
107*** result.
108***
109EOF
110 exit 0;
111 }
112
72 } elsif (defined $Internals::StabilityBranchVersion) { 113 } elsif (defined $Internals::StabilityBranchVersion) {
73 # note to people studying this modules sources: 114 # note to people studying this modules sources:
74 # the above test is not considered a clean or stable way to 115 # the above test is not considered a clean or stable way to
75 # test for the stability branch. 116 # test for the stability branch.
76 117
77 sgr 32; 118 sgr 32;
78 print <<EOF; 119 print <<EOF;
79
80***
81*** The stability canary says: chirp! chirp! (it seems to be quite excited) 120*** The stability canary says: chirp! chirp! (it seems to be quite excited)
82*** 121***
83*** It seems you are running schmorp's stability branch of perl. 122*** It seems you are running schmorp's stability branch of perl.
84*** All should be well, and if it isn't, you should report this as a bug 123*** All should be well, and if it isn't, you should report this as a bug
85*** to the $distname author. 124*** to the $distname author.
86*** 125***
87
88EOF 126EOF
89 } elsif ($] <= 4.020) { 127 } elsif ($] < 5.021) {
90 sgr 32; 128 #sgr 32;
91 print <<EOF; 129 print <<EOF;
92
93***
94*** The stability canary says: chirp! chirp! (it seems to be quite happy) 130*** The stability canary says: chirp! chirp! (it seems to be quite happy)
95*** 131***
96*** Your version of perl ($]) is quite supported by $distname, nothing 132*** Your version of perl ($]) is quite supported by $distname, nothing
97*** else to be said, hope it comes in handy. 133*** else to be said, hope it comes in handy.
98*** 134***
99
100EOF 135EOF
101 } else { 136 } else {
102 sgr 31; 137 sgr 31;
103 print <<EOF; 138 print <<EOF;
104
105***
106*** The stability canary says: (nothing, it was driven away by harsh weather) 139*** The stability canary says: (nothing, it was driven away by harsh weather)
107*** 140***
108*** It seems you are running perl version $], likely the "official" or 141*** It seems you are running perl version $], likely the "official" or
109*** "standard" version. While there is nothing wrong with doing that, 142*** "standard" version. While there is nothing wrong with doing that,
110*** standard perl versions 5.022 and up are not supported by $distname. 143*** standard perl versions 5.022 and up are not supported by $distname.
115*** If everything works fine, you can ignore this message. 148*** If everything works fine, you can ignore this message.
116*** 149***
117EOF 150EOF
118 sgr 0; 151 sgr 0;
119 print <<EOF; 152 print <<EOF;
153***
120*** Stability canary mini-FAQ: 154*** Stability canary mini-FAQ:
121*** 155***
122*** Do I need to do anything? 156*** Do I need to do anything?
123*** With luck, no. While some distributions are known to fail 157*** With luck, no. While some distributions are known to fail
124*** already, most should probably work. This message is here 158*** already, most should probably work. This message is here
137*** 171***
138*** How can I skip this prompt on automated installs? 172*** How can I skip this prompt on automated installs?
139*** Set PERL_CANARY_STABILITY_NOPROMPT=1 in your environment. 173*** Set PERL_CANARY_STABILITY_NOPROMPT=1 in your environment.
140*** More info is in the Canary::Stability manpage. 174*** More info is in the Canary::Stability manpage.
141*** 175***
142*** Long version of this FAQ: http://stabilityperl.schmorp.de/faq.html 176*** Long version of this FAQ: http://stableperl.schmorp.de/faq.html
143*** Stability Branch homepage: http://stabilityperl.schmorp.de/ 177*** Stability Branch homepage: http://stableperl.schmorp.de/
144*** 178***
145 179
146EOF 180EOF
147 181
148 unless ($ENV{PERL_CANARY_STABILITY_NOPROMPT}) { 182 unless ($ENV{PERL_CANARY_STABILITY_NOPROMPT}) {
174 208
175=item C<PERL_CANARY_STABILITY_DISABLE=1> 209=item C<PERL_CANARY_STABILITY_DISABLE=1>
176 210
177Disable this modules functionality completely. 211Disable this modules functionality completely.
178 212
213=item C<AUTOMATED_TESTING=1>
214
215When this variable is set to a true value and the perl minimum version
216requirement is not met, the module will exit, which should skip testing
217under automated testing environments.
218
219This is done to avoid false failure or success reports when the chances of
220success are already quite low and the failures are not supported by the
221author.
222
179=back 223=back
180 224
181=head1 AUTHOR 225=head1 AUTHOR
182 226
183 Marc Lehmann <schmorp@schmorp.de> 227 Marc Lehmann <schmorp@schmorp.de>
184 http://home.schmorp.de/ 228 http://software.schmorp.de/pkg/Canary-Stability.html
185 229
186=cut 230=cut
187 231
1881 2321
189 233

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines