$string .= qq{\t@ gpg --verify check_postgres.pl.asc\n};
return $string;
}
+
+ sub manifypods {
+ my $string = shift->SUPER::manifypods(@_);
+ $string .= <<'EOM';
+ pod2html check_postgres.pl > check_postgres.pl.html
+ perl -pi -e "s/<link.*?>//" check_postgres.pl.html
+ perl -pi -e "s~ git clone.*~ git clone http://bucardo.org/check_postgres.git</pre>~" check_postgres.pl.html
+ perl -pi -e "s~<title>\S+(.+)~<title>check_postgres.pl\\1</TITLE>~" check_postgres.pl.html
+ perl -pi -e "s~.*</title>~~" check_postgres.pl.html
+ perl -pi -e "s~</TITLE>~</title>~" check_postgres.pl.html
+ perl -pi -e "s~\`\`(.+?)''~"\\1"~g" check_postgres.pl.html
+ @ rm -f pod2htmd.tmp pod2htmi.tmp
+EOM
+ return $string;
+ }
}
my $output = WriteMakefile(%opts);
Make fsm_pages and fsm_relatins handle 8.4 servers smoothly. (Greg)
Fix missing 'upd' field in show_dbstats (Andras Fabian)
Allow ENV{PGCONTROLDATA} and ENV{PGBINDIR}. (Greg)
- Add various Perl module infratructure, including (e.g. Makefile.PL) (Greg)
+ Add various Perl module infrastructure (e.g. Makefile.PL) (Greg)
Fix incorrect regex in txn_wraparound (Greg)
For txn_wraparound: consistent ordering and fix duplicates in perf output (Andras Fabian)
Add in missing exabyte regex check (Selena Deckelmann)
-----BEGIN PGP SIGNATURE-----
-iEYEABEDAAYFAkn3GRwACgkQvJuQZxSWSsipUgCfSgw0v+Ib9MkS3dI2W2GxQu1D
-JeEAn3fn0FW2jpkxf0uW/xRNoMb00M51
-=jWv7
+iEYEABEDAAYFAkn9z5YACgkQvJuQZxSWSsh72QCg1o645QIAidzcALE6IzNiT/s4
+SCoAoORfQXeoA7CqFwtajUel2r6FVzuH
+=Imx1
-----END PGP SIGNATURE-----
<h1><a name="history">HISTORY</a></h1>
<p>Items not specifically attributed are by Greg Sabino Mullane.</p>
<dl>
-<dt><strong><a name="item_0"><strong>Version 2.8.0</strong> (April ??, 2009)</a></strong></dt>
+<dt><strong><a name="item_0"><strong>Version 2.8.0</strong> (May ??, 2009)</a></strong></dt>
<dd>
<pre>
Make fsm_pages and fsm_relatins handle 8.4 servers smoothly. (Greg)
Fix missing 'upd' field in show_dbstats (Andras Fabian)
Allow ENV{PGCONTROLDATA} and ENV{PGBINDIR}. (Greg)
+ Add various Perl module infrastructure (e.g. Makefile.PL) (Greg)
Fix incorrect regex in txn_wraparound (Greg)
For txn_wraparound: consistent ordering and fix duplicates in perf output (Andras Fabian)
Add in missing exabyte regex check (Selena Deckelmann)
## Check some non-test files
my $critic = Perl::Critic->new(-severity => 1, '-profile-strictness' => 'quiet');
-for my $filename (qw{check_postgres.pl t/CP_Testing.pm}) {
+for my $filename (qw{Makefile.PL check_postgres.pl t/CP_Testing.pm}) {
if ($ENV{TEST_CRITIC_SKIPNONTEST}) {
pass qq{Skipping non-test file "$filename"};
or $policy =~ /RequireVersionVar/o;
}
+ if ($filename =~ /Makefile/o) {
+ next VIO if $policy =~ /RequireVersionVar/o
+ or $policy =~ /ProhibitBooleanGrep/o
+ or $policy =~ /RequireInterpolationOfMetachars/o;
+ }
+
$vios++;
my $f = $v->filename();
my $l = $v->location();