home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / apache / files / ActivePerl-5.6.1.638-MSWin32-x86.msi / _994c4bfef06e3340daee8acb1f689312 < prev    next >
Encoding:
Text File  |  2004-04-13  |  36.3 KB  |  1,167 lines

  1. @rem = '--*-Perl-*--
  2. @echo off
  3. if "%OS%" == "Windows_NT" goto WinNT
  4. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  5. goto endofperl
  6. :WinNT
  7. perl -x -S %0 %*
  8. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  9. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  10. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
  11. goto endofperl
  12. @rem ';
  13. #!perl
  14. #line 15
  15.     eval 'exec C:\p4view\Apps\ActivePerl\MSI\data\ActivePerl\Perl\bin\perl.exe -S $0 ${1+"$@"}'
  16.     if $running_under_some_shell;
  17.  
  18. my $config_tag1 = 'v5.6.1 - Tue Apr 13 19:24:10 2004';
  19.  
  20. my $patchlevel_date = 1081909330;
  21. my $patch_tags = '+ACTIVEPERL_LOCAL_PATCHES_ENTRY ';
  22. my @patches = (
  23.     'ACTIVEPERL_LOCAL_PATCHES_ENTRY'
  24. );
  25.  
  26. use Config;
  27. use File::Spec;        # keep perlbug Perl 5.005 compatible
  28. use Getopt::Std;
  29. use strict;
  30.  
  31. sub paraprint;
  32.  
  33. BEGIN {
  34.     eval "use Mail::Send;";
  35.     $::HaveSend = ($@ eq "");
  36.     eval "use Mail::Util;";
  37.     $::HaveUtil = ($@ eq "");
  38. };
  39.  
  40. my $Version = "1.33";
  41.  
  42. # Changed in 1.06 to skip Mail::Send and Mail::Util if not available.
  43. # Changed in 1.07 to see more sendmail execs, and added pipe output.
  44. # Changed in 1.08 to use correct address for sendmail.
  45. # Changed in 1.09 to close the REP file before calling it up in the editor.
  46. #                 Also removed some old comments duplicated elsewhere.
  47. # Changed in 1.10 to run under VMS without Mail::Send; also fixed
  48. #                 temp filename generation.
  49. # Changed in 1.11 to clean up some text and removed Mail::Send deactivator.
  50. # Changed in 1.12 to check for editor errors, make save/send distinction
  51. #                 clearer and add $ENV{REPLYTO}.
  52. # Changed in 1.13 to hopefully make it more difficult to accidentally
  53. #                 send mail
  54. # Changed in 1.14 to make the prompts a little more clear on providing
  55. #                 helpful information. Also let file read fail gracefully.
  56. # Changed in 1.15 to add warnings to stop people using perlbug for non-bugs.
  57. #                 Also report selected environment variables.
  58. # Changed in 1.16 to include @INC, and allow user to re-edit if no changes.
  59. # Changed in 1.17 Win32 support added.  GSAR 97-04-12
  60. # Changed in 1.18 add '-ok' option for reporting build success. CFR 97-06-18
  61. # Changed in 1.19 '-ok' default not '-v'
  62. #                 add local patch information
  63. #                 warn on '-ok' if this is an old system; add '-okay'
  64. # Changed in 1.20 Added patchlevel.h reading and version/config checks
  65. # Changed in 1.21 Added '-nok' for reporting build failure DFD 98-05-05
  66. # Changed in 1.22 Heavy reformatting & minor bugfixes HVDS 98-05-10
  67. # Changed in 1.23 Restore -ok(ay): say 'success'; don't prompt
  68. # Changed in 1.24 Added '-F<file>' to save report HVDS 98-07-01
  69. # Changed in 1.25 Warn on failure to open save file. HVDS 98-07-12
  70. # Changed in 1.26 Don't require -t STDIN for -ok. HVDS 98-07-15
  71. # Changed in 1.27 Added Mac OS and File::Spec support CNANDOR 99-07-27
  72. # Changed in 1.28 Additional questions for Perlbugtron RFOLEY 20.03.2000
  73. # Changed in 1.29 Perlbug(tron): auto(-ok), short prompts RFOLEY 05-05-2000
  74. # Changed in 1.30 Added warnings on failure to open files MSTEVENS 13-07-2000
  75. # Changed in 1.31 Add checks on close().Fix my $var unless. TJENNESS 26-07-2000
  76. # Changed in 1.32 Use File::Spec->tmpdir TJENNESS 20-08-2000
  77. # Changed in 1.33 Don't require -t STDOUT for -ok.
  78.  
  79. # TODO: - Allow the user to re-name the file on mail failure, and
  80. #       make sure failure (transmission-wise) of Mail::Send is
  81. #       accounted for.
  82. #       - Test -b option
  83.  
  84. my( $file, $usefile, $cc, $address, $perlbug, $testaddress, $filename,
  85.     $subject, $from, $verbose, $ed, $outfile, $Is_MacOS, $category, $severity,
  86.     $fh, $me, $Is_MSWin32, $Is_VMS, $msg, $body, $andcc, %REP, $ok);
  87.  
  88. my $perl_version = $^V ? sprintf("v%vd", $^V) : $];
  89.  
  90. my $config_tag2 = "$perl_version - $Config{cf_time}";
  91.  
  92. Init();
  93.  
  94. if ($::opt_h) { Help(); exit; }
  95. if ($::opt_d) { Dump(*STDOUT); exit; }
  96. if (!-t STDIN && !($ok and not $::opt_n)) {
  97.     paraprint <<EOF;
  98. Please use perlbug interactively. If you want to
  99. include a file, you can use the -f switch.
  100. EOF
  101.     die "\n";
  102. }
  103.  
  104. Query();
  105. Edit() unless $usefile || ($ok and not $::opt_n);
  106. NowWhat();
  107. Send();
  108.  
  109. exit;
  110.  
  111. sub ask_for_alternatives { # (category|severity)
  112.     my $name = shift;
  113.     my %alts = (
  114.     'category' => {
  115.         'default' => 'core',
  116.         'ok'      => 'install',
  117.         'opts'    => [qw(core docs install library utilities)], # patch, notabug
  118.     },
  119.     'severity' => {
  120.         'default' => 'low',
  121.         'ok'      => 'none',
  122.         'opts'    => [qw(critical high medium low wishlist none)], # zero
  123.     },
  124.     );
  125.     die "Invalid alternative($name) requested\n" unless grep(/^$name$/, keys %alts);
  126.     my $alt = "";
  127.     if ($ok) {
  128.     $alt = $alts{$name}{'ok'};
  129.     } else {
  130.      my @alts = @{$alts{$name}{'opts'}};
  131.     paraprint <<EOF;
  132. Please pick a \u$name from the following:
  133.  
  134.     @alts
  135.  
  136. EOF
  137.     my $err = 0;
  138.     do {
  139.         if ($err++ > 5) {
  140.         die "Invalid $name: aborting.\n";
  141.         }
  142.         print "Please enter a \u$name [$alts{$name}{'default'}]: ";
  143.         $alt = <>;
  144.         chomp $alt;
  145.         if ($alt =~ /^\s*$/) {
  146.         $alt = $alts{$name}{'default'};
  147.         }
  148.     } while !((($alt) = grep(/^$alt/i, @alts)));
  149.     }
  150.     lc $alt;
  151. }
  152.  
  153. sub Init {
  154.     # -------- Setup --------
  155.  
  156.     $Is_MSWin32 = $^O eq 'MSWin32';
  157.     $Is_VMS = $^O eq 'VMS';
  158.     $Is_MacOS = $^O eq 'MacOS';
  159.  
  160.     @ARGV = split m/\s+/,
  161.         MacPerl::Ask('Provide command-line args here (-h for help):')
  162.         if $Is_MacOS && $MacPerl::Version =~ /App/;
  163.  
  164.     if (!getopts("Adhva:s:b:f:F:r:e:SCc:to:n:")) { Help(); exit; };
  165.  
  166.     # This comment is needed to notify metaconfig that we are
  167.     # using the $perladmin, $cf_by, and $cf_time definitions.
  168.  
  169.     # -------- Configuration ---------
  170.  
  171.     # perlbug address
  172.     $perlbug = 'perlbug@perl.org';
  173.  
  174.     # Test address
  175.     $testaddress = 'perlbug-test@perl.com';
  176.  
  177.     # Target address
  178.     $address = $::opt_a || ($::opt_t ? $testaddress : $perlbug);
  179.  
  180.     # Users address, used in message and in Reply-To header
  181.     $from = $::opt_r || "";
  182.  
  183.     # Include verbose configuration information
  184.     $verbose = $::opt_v || 0;
  185.  
  186.     # Subject of bug-report message
  187.     $subject = $::opt_s || "";
  188.  
  189.     # Send a file
  190.     $usefile = ($::opt_f || 0);
  191.  
  192.     # File to send as report
  193.     $file = $::opt_f || "";
  194.  
  195.     # File to output to
  196.     $outfile = $::opt_F || "";
  197.  
  198.     # Body of report
  199.     $body = $::opt_b || "";
  200.  
  201.     # Editor
  202.     $ed = $::opt_e || $ENV{VISUAL} || $ENV{EDITOR} || $ENV{EDIT}
  203.     || ($Is_VMS && "edit/tpu")
  204.     || ($Is_MSWin32 && "notepad")
  205.     || ($Is_MacOS && '')
  206.     || "vi";
  207.  
  208.     # Not OK - provide build failure template by finessing OK report
  209.     if ($::opt_n) {
  210.     if (substr($::opt_n, 0, 2) eq 'ok' )    {
  211.         $::opt_o = substr($::opt_n, 1);
  212.     } else {
  213.         Help();
  214.         exit();
  215.     }
  216.     }
  217.  
  218.     # OK - send "OK" report for build on this system
  219.     $ok = 0;
  220.     if ($::opt_o) {
  221.     if ($::opt_o eq 'k' or $::opt_o eq 'kay') {
  222.         my $age = time - $patchlevel_date;
  223.         if ($::opt_o eq 'k' and $age > 60 * 24 * 60 * 60 ) {
  224.         my $date = localtime $patchlevel_date;
  225.         print <<"EOF";
  226. "perlbug -ok" and "perlbug -nok" do not report on Perl versions which
  227. are more than 60 days old.  This Perl version was constructed on
  228. $date.  If you really want to report this, use
  229. "perlbug -okay" or "perlbug -nokay".
  230. EOF
  231.         exit();
  232.         }
  233.         # force these options
  234.         unless ($::opt_n) {
  235.         $::opt_S = 1; # don't prompt for send
  236.         $::opt_b = 1; # we have a body
  237.         $body = "Perl reported to build OK on this system.\n";
  238.         }
  239.         $::opt_C = 1; # don't send a copy to the local admin
  240.         $::opt_s = 1; # we have a subject line
  241.         $subject = ($::opt_n ? 'Not ' : '')
  242.             . "OK: perl $perl_version ${patch_tags}on"
  243.             ." $::Config{'archname'} $::Config{'osvers'} $subject";
  244.         $ok = 1;
  245.     } else {
  246.         Help();
  247.         exit();
  248.     }
  249.     }
  250.  
  251.     # Possible administrator addresses, in order of confidence
  252.     # (Note that cf_email is not mentioned to metaconfig, since
  253.     # we don't really want it. We'll just take it if we have to.)
  254.     #
  255.     # This has to be after the $ok stuff above because of the way
  256.     # that $::opt_C is forced.
  257.     $cc = $::opt_C ? "" : (
  258.     $::opt_c || $::Config{'perladmin'}
  259.     || $::Config{'cf_email'} || $::Config{'cf_by'}
  260.     );
  261.  
  262.     # My username
  263.     $me = $Is_MSWin32 ? $ENV{'USERNAME'}
  264.         : $^O eq 'os2' ? $ENV{'USER'} || $ENV{'LOGNAME'}
  265.         : $Is_MacOS ? $ENV{'USER'}
  266.         : eval { getpwuid($<) };    # May be missing
  267.  
  268.     $from = $::Config{'cf_email'}
  269.        if !$from && $::Config{'cf_email'} && $::Config{'cf_by'} && $me &&
  270.                ($me eq $::Config{'cf_by'});
  271. } # sub Init
  272.  
  273. sub Query {
  274.     # Explain what perlbug is
  275.     unless ($ok) {
  276.     paraprint <<EOF;
  277. This program provides an easy way to create a message reporting a bug
  278. in perl, and e-mail it to $address.  It is *NOT* intended for
  279. sending test messages or simply verifying that perl works, *NOR* is it
  280. intended for reporting bugs in third-party perl modules.  It is *ONLY*
  281. a means of reporting verifiable problems with the core perl distribution,
  282. and any solutions to such problems, to the people who maintain perl.
  283.  
  284. If you're just looking for help with perl, try posting to the Usenet
  285. newsgroup comp.lang.perl.misc.  If you're looking for help with using
  286. perl with CGI, try posting to comp.infosystems.www.programming.cgi.
  287. EOF
  288.     }
  289.  
  290.     # Prompt for subject of message, if needed
  291.     unless ($subject) {
  292.     paraprint <<EOF;
  293. First of all, please provide a subject for the
  294. message. It should be a concise description of
  295. the bug or problem. "perl bug" or "perl problem"
  296. is not a concise description.
  297. EOF
  298.     print "Subject: ";
  299.     $subject = <>;
  300.  
  301.     my $err = 0;
  302.     while ($subject !~ /\S/) {
  303.         print "\nPlease enter a subject: ";
  304.         $subject = <>;
  305.         if ($err++ > 5) {
  306.         die "Aborting.\n";
  307.         }
  308.     }
  309.     chop $subject;
  310.     }
  311.  
  312.     # Prompt for return address, if needed
  313.     unless ($from) {
  314.     # Try and guess return address
  315.     my $guess;
  316.  
  317.     $guess = $ENV{'REPLY-TO'} || $ENV{'REPLYTO'} || '';
  318.         if ($Is_MacOS) {
  319.             require Mac::InternetConfig;
  320.             $guess = $Mac::InternetConfig::InternetConfig{
  321.                 Mac::InternetConfig::kICEmail()
  322.             };
  323.         }
  324.  
  325.     unless ($guess) {
  326.         my $domain;
  327.         if ($::HaveUtil) {
  328.         $domain = Mail::Util::maildomain();
  329.         } elsif ($Is_MSWin32) {
  330.         $domain = $ENV{'USERDOMAIN'};
  331.         } else {
  332.         require Sys::Hostname;
  333.         $domain = Sys::Hostname::hostname();
  334.         }
  335.         if ($domain) {
  336.         if ($Is_VMS && !$::Config{'d_socket'}) {
  337.             $guess = "$domain\:\:$me";
  338.         } else {
  339.             $guess = "$me\@$domain" if $domain;
  340.         }
  341.         }
  342.     }
  343.  
  344.     if ($guess) {
  345.         unless ($ok) {
  346.         paraprint <<EOF;
  347. Your e-mail address will be useful if you need to be contacted. If the
  348. default shown is not your full internet e-mail address, please correct it.
  349. EOF
  350.         }
  351.     } else {
  352.         paraprint <<EOF;
  353. So that you may be contacted if necessary, please enter
  354. your full internet e-mail address here.
  355. EOF
  356.     }
  357.  
  358.     if ($ok && $guess) {
  359.         # use it
  360.         $from = $guess;
  361.     } else {
  362.         # verify it
  363.         print "Your address [$guess]: ";
  364.         $from = <>;
  365.         chop $from;
  366.         $from = $guess if $from eq '';
  367.     }
  368.     }
  369.  
  370.     if ($from eq $cc or $me eq $cc) {
  371.     # Try not to copy ourselves
  372.     $cc = "yourself";
  373.     }
  374.  
  375.     # Prompt for administrator address, unless an override was given
  376.     if( !$::opt_C and !$::opt_c ) {
  377.     paraprint <<EOF;
  378. A copy of this report can be sent to your local
  379. perl administrator. If the address is wrong, please
  380. correct it, or enter 'none' or 'yourself' to not send
  381. a copy.
  382. EOF
  383.     print "Local perl administrator [$cc]: ";
  384.     my $entry = scalar <>;
  385.     chop $entry;
  386.  
  387.     if ($entry ne "") {
  388.         $cc = $entry;
  389.         $cc = '' if $me eq $cc;
  390.     }
  391.     }
  392.  
  393.     $cc = '' if $cc =~ /^(none|yourself|me|myself|ourselves)$/i;
  394.     $andcc = " and $cc" if $cc;
  395.  
  396.     # Prompt for editor, if no override is given
  397. editor:
  398.     unless ($::opt_e || $::opt_f || $::opt_b) {
  399.     paraprint <<EOF;
  400. Now you need to supply the bug report. Try to make
  401. the report concise but descriptive. Include any
  402. relevant detail. If you are reporting something
  403. that does not work as you think it should, please
  404. try to include example of both the actual
  405. result, and what you expected.
  406.  
  407. Some information about your local
  408. perl configuration will automatically be included
  409. at the end of the report. If you are using any
  410. unusual version of perl, please try and confirm
  411. exactly which versions are relevant.
  412.  
  413. You will probably want to use an editor to enter
  414. the report. If "$ed" is the editor you want
  415. to use, then just press Enter, otherwise type in
  416. the name of the editor you would like to use.
  417.  
  418. If you would like to use a prepared file, type
  419. "file", and you will be asked for the filename.
  420. EOF
  421.     print "Editor [$ed]: ";
  422.     my $entry =scalar <>;
  423.     chop $entry;
  424.  
  425.     $usefile = 0;
  426.     if ($entry eq "file") {
  427.         $usefile = 1;
  428.     } elsif ($entry ne "") {
  429.         $ed = $entry;
  430.     }
  431.     }
  432.  
  433.     # Prompt for category of bug
  434.     $category ||= ask_for_alternatives('category');
  435.  
  436.     # Prompt for severity of bug
  437.     $severity ||= ask_for_alternatives('severity');
  438.  
  439.     # Generate scratch file to edit report in
  440.     $filename = filename();
  441.  
  442.     # Prompt for file to read report from, if needed
  443.     if ($usefile and !$file) {
  444. filename:
  445.     paraprint <<EOF;
  446. What is the name of the file that contains your report?
  447. EOF
  448.     print "Filename: ";
  449.     my $entry = scalar <>;
  450.     chop $entry;
  451.  
  452.     if ($entry eq "") {
  453.         paraprint <<EOF;
  454. No filename? I'll let you go back and choose an editor again.
  455. EOF
  456.         goto editor;
  457.     }
  458.  
  459.     unless (-f $entry and -r $entry) {
  460.         paraprint <<EOF;
  461. I'm sorry, but I can't read from `$entry'. Maybe you mistyped the name of
  462. the file? If you don't want to send a file, just enter a blank line and you
  463. can get back to the editor selection.
  464. EOF
  465.         goto filename;
  466.     }
  467.     $file = $entry;
  468.     }
  469.  
  470.     # Generate report
  471.     open(REP,">$filename") or die "Unable to create report file `$filename': $!\n";
  472.     my $reptype = !$ok ? "bug" : $::opt_n ? "build failure" : "success";
  473.  
  474.     print REP <<EOF;
  475. This is a $reptype report for perl from $from,
  476. generated with the help of perlbug $Version running under perl $perl_version.
  477.  
  478. EOF
  479.  
  480.     if ($body) {
  481.     print REP $body;
  482.     } elsif ($usefile) {
  483.     open(F, "<$file")
  484.         or die "Unable to read report file from `$file': $!\n";
  485.     while (<F>) {
  486.         print REP $_
  487.     }
  488.     close(F) or die "Error closing `$file': $!";
  489.     } else {
  490.     print REP <<EOF;
  491.  
  492. -----------------------------------------------------------------
  493. [Please enter your report here]
  494.  
  495.  
  496.  
  497. [Please do not change anything below this line]
  498. -----------------------------------------------------------------
  499. EOF
  500.     }
  501.     Dump(*REP);
  502.     close(REP) or die "Error closing report file: $!";
  503.  
  504.     # read in the report template once so that
  505.     # we can track whether the user does any editing.
  506.     # yes, *all* whitespace is ignored.
  507.     open(REP, "<$filename") or die "Unable to open report file `$filename': $!\n";
  508.     while (<REP>) {
  509.     s/\s+//g;
  510.     $REP{$_}++;
  511.     }
  512.     close(REP) or die "Error closing report file `$filename': $!";
  513. } # sub Query
  514.  
  515. sub Dump {
  516.     local(*OUT) = @_;
  517.  
  518.     print OUT <<EFF;
  519. ---
  520. Flags:
  521.     category=$category
  522.     severity=$severity
  523. EFF
  524.     if ($::opt_A) {
  525.     print OUT <<EFF;
  526.     ack=no
  527. EFF
  528.     }
  529.     print OUT <<EFF;
  530. ---
  531. EFF
  532.     print OUT "This perlbug was built using Perl $config_tag1\n",
  533.         "It is being executed now by  Perl $config_tag2.\n\n"
  534.     if $config_tag2 ne $config_tag1;
  535.  
  536.     print OUT <<EOF;
  537. Site configuration information for perl $perl_version:
  538.  
  539. EOF
  540.     if ($::Config{cf_by} and $::Config{cf_time}) {
  541.     print OUT "Configured by $::Config{cf_by} at $::Config{cf_time}.\n\n";
  542.     }
  543.     print OUT Config::myconfig;
  544.  
  545.     if (@patches) {
  546.     print OUT join "\n    ", "Locally applied patches:", @patches;
  547.     print OUT "\n";
  548.     };
  549.  
  550.     print OUT <<EOF;
  551.  
  552. ---
  553. \@INC for perl $perl_version:
  554. EOF
  555.     for my $i (@INC) {
  556.     print OUT "    $i\n";
  557.     }
  558.  
  559.     print OUT <<EOF;
  560.  
  561. ---
  562. Environment for perl $perl_version:
  563. EOF
  564.     my @env =
  565.         qw(PATH LD_LIBRARY_PATH LANG PERL_BADLANG SHELL HOME LOGDIR LANGUAGE);
  566.     push @env, $Config{ldlibpthname} if $Config{ldlibpthname} ne '';
  567.     push @env, grep /^(?:PERL|LC_|LANG)/, keys %ENV;
  568.     my %env;
  569.     @env{@env} = @env;
  570.     for my $env (sort keys %env) {
  571.     print OUT "    $env",
  572.         exists $ENV{$env} ? "=$ENV{$env}" : ' (unset)',
  573.         "\n";
  574.     }
  575.     if ($verbose) {
  576.     print OUT "\nComplete configuration data for perl $perl_version:\n\n";
  577.     my $value;
  578.     foreach (sort keys %::Config) {
  579.         $value = $::Config{$_};
  580.         $value =~ s/'/\\'/g;
  581.         print OUT "$_='$value'\n";
  582.     }
  583.     }
  584. } # sub Dump
  585.  
  586. sub Edit {
  587.     # Edit the report
  588.     if ($usefile || $body) {
  589.     paraprint <<EOF;
  590. Please make sure that the name of the editor you want to use is correct.
  591. EOF
  592.     print "Editor [$ed]: ";
  593.     my $entry =scalar <>;
  594.     chop $entry;
  595.     $ed = $entry unless $entry eq '';
  596.     }
  597.  
  598. tryagain:
  599.     my $sts;
  600.     $sts = system("$ed $filename") unless $Is_MacOS;
  601.     if ($Is_MacOS) {
  602.         require ExtUtils::MakeMaker;
  603.         ExtUtils::MM_MacOS::launch_file($filename);
  604.         paraprint <<EOF;
  605. Press Enter when done.
  606. EOF
  607.         scalar <>;
  608.     }
  609.     if ($sts) {
  610.     paraprint <<EOF;
  611. The editor you chose (`$ed') could apparently not be run!
  612. Did you mistype the name of your editor? If so, please
  613. correct it here, otherwise just press Enter.
  614. EOF
  615.     print "Editor [$ed]: ";
  616.     my $entry =scalar <>;
  617.     chop $entry;
  618.  
  619.     if ($entry ne "") {
  620.         $ed = $entry;
  621.         goto tryagain;
  622.     } else {
  623.         paraprint <<EOF;
  624. You may want to save your report to a file, so you can edit and mail it
  625. yourself.
  626. EOF
  627.     }
  628.     }
  629.  
  630.     return if ($ok and not $::opt_n) || $body;
  631.     # Check that we have a report that has some, eh, report in it.
  632.     my $unseen = 0;
  633.  
  634.     open(REP, "<$filename") or die "Couldn't open `$filename': $!\n";
  635.     # a strange way to check whether any significant editing
  636.     # have been done: check whether any new non-empty lines
  637.     # have been added. Yes, the below code ignores *any* space
  638.     # in *any* line.
  639.     while (<REP>) {
  640.     s/\s+//g;
  641.     $unseen++ if $_ ne '' and not exists $REP{$_};
  642.     }
  643.  
  644.     while ($unseen == 0) {
  645.     paraprint <<EOF;
  646. I am sorry but it looks like you did not report anything.
  647. EOF
  648.     print "Action (Retry Edit/Cancel) ";
  649.     my ($action) = scalar(<>);
  650.     if ($action =~ /^[re]/i) { # <R>etry <E>dit
  651.         goto tryagain;
  652.     } elsif ($action =~ /^[cq]/i) { # <C>ancel, <Q>uit
  653.         Cancel();
  654.     }
  655.     }
  656. } # sub Edit
  657.  
  658. sub Cancel {
  659.     1 while unlink($filename);  # remove all versions under VMS
  660.     print "\nCancelling.\n";
  661.     exit(0);
  662. }
  663.  
  664. sub NowWhat {
  665.     # Report is done, prompt for further action
  666.     if( !$::opt_S ) {
  667.     while(1) {
  668.         paraprint <<EOF;
  669. Now that you have completed your report, would you like to send
  670. the message to $address$andcc, display the message on
  671. the screen, re-edit it, or cancel without sending anything?
  672. You may also save the message as a file to mail at another time.
  673. EOF
  674.       retry:
  675.         print "Action (Send/Display/Edit/Cancel/Save to File): ";
  676.         my $action = scalar <>;
  677.         chop $action;
  678.  
  679.         if ($action =~ /^(f|sa)/i) { # <F>ile/<Sa>ve
  680.         print "\n\nName of file to save message in [perlbug.rep]: ";
  681.         my $file = scalar <>;
  682.         chop $file;
  683.         $file = "perlbug.rep" if $file eq "";
  684.  
  685.         unless (open(FILE, ">$file")) {
  686.             print "\nError opening $file: $!\n\n";
  687.             goto retry;
  688.         }
  689.         open(REP, "<$filename") or die "Couldn't open file `$filename': $!\n";
  690.         print FILE "To: $address\nSubject: $subject\n";
  691.         print FILE "Cc: $cc\n" if $cc;
  692.         print FILE "Reply-To: $from\n" if $from;
  693.         print FILE "\n";
  694.         while (<REP>) { print FILE }
  695.         close(REP) or die "Error closing report file `$filename': $!";
  696.         close(FILE) or die "Error closing $file: $!";
  697.  
  698.         print "\nMessage saved in `$file'.\n";
  699.         exit;
  700.         } elsif ($action =~ /^(d|l|sh)/i ) { # <D>isplay, <L>ist, <Sh>ow
  701.         # Display the message
  702.         open(REP, "<$filename") or die "Couldn't open file `$filename': $!\n";
  703.         while (<REP>) { print $_ }
  704.         close(REP) or die "Error closing report file `$filename': $!";
  705.         } elsif ($action =~ /^se/i) { # <S>end
  706.         # Send the message
  707.         print "Are you certain you want to send this message?\n"
  708.             . 'Please type "yes" if you are: ';
  709.         my $reply = scalar <STDIN>;
  710.         chop $reply;
  711.         if ($reply eq "yes") {
  712.             last;
  713.         } else {
  714.             paraprint <<EOF;
  715. That wasn't a clear "yes", so I won't send your message. If you are sure
  716. your message should be sent, type in "yes" (without the quotes) at the
  717. confirmation prompt.
  718. EOF
  719.         }
  720.         } elsif ($action =~ /^[er]/i) { # <E>dit, <R>e-edit
  721.         # edit the message
  722.         Edit();
  723.         } elsif ($action =~ /^[qc]/i) { # <C>ancel, <Q>uit
  724.         Cancel();
  725.         } elsif ($action =~ /^s/i) {
  726.         paraprint <<EOF;
  727. I'm sorry, but I didn't understand that. Please type "send" or "save".
  728. EOF
  729.         }
  730.     }
  731.     }
  732. } # sub NowWhat
  733.  
  734. sub Send {
  735.     # Message has been accepted for transmission -- Send the message
  736.     if ($outfile) {
  737.     open SENDMAIL, ">$outfile" or die "Couldn't open '$outfile': $!\n";
  738.     goto sendout;
  739.     }
  740.     if ($::HaveSend) {
  741.     $msg = new Mail::Send Subject => $subject, To => $address;
  742.     $msg->cc($cc) if $cc;
  743.     $msg->add("Reply-To",$from) if $from;
  744.  
  745.     $fh = $msg->open;
  746.     open(REP, "<$filename") or die "Couldn't open `$filename': $!\n";
  747.     while (<REP>) { print $fh $_ }
  748.     close(REP) or die "Error closing $filename: $!";
  749.     $fh->close;
  750.  
  751.     print "\nMessage sent.\n";
  752.     } elsif ($Is_VMS) {
  753.     if ( ($address =~ /@/ and $address !~ /^\w+%"/) or
  754.          ($cc      =~ /@/ and $cc      !~ /^\w+%"/) ) {
  755.         my $prefix;
  756.         foreach (qw[ IN MX SMTP UCX PONY WINS ], '') {
  757.         $prefix = "$_%", last if $ENV{"MAIL\$PROTOCOL_$_"};
  758.         }
  759.         $address = qq[${prefix}"$address"] unless $address =~ /^\w+%"/;
  760.         $cc = qq[${prefix}"$cc"] unless !$cc || $cc =~ /^\w+%"/;
  761.     }
  762.     $subject =~ s/"/""/g; $address =~ s/"/""/g; $cc =~ s/"/""/g;
  763.     my $sts = system(qq[mail/Subject="$subject" $filename. "$address","$cc"]);
  764.     if ($sts) {
  765.         die <<EOF;
  766. Can't spawn off mail
  767.     (leaving bug report in $filename): $sts
  768. EOF
  769.     }
  770.     } else {
  771.     my $sendmail = "";
  772.     for (qw(/usr/lib/sendmail /usr/sbin/sendmail /usr/ucblib/sendmail)) {
  773.         $sendmail = $_, last if -e $_;
  774.     }
  775.     if ($^O eq 'os2' and $sendmail eq "") {
  776.         my $path = $ENV{PATH};
  777.         $path =~ s:\\:/: ;
  778.         my @path = split /$Config{'path_sep'}/, $path;
  779.         for (@path) {
  780.         $sendmail = "$_/sendmail", last if -e "$_/sendmail";
  781.         $sendmail = "$_/sendmail.exe", last if -e "$_/sendmail.exe";
  782.         }
  783.     }
  784.  
  785.     paraprint(<<"EOF"), die "\n" if $sendmail eq "";
  786. I am terribly sorry, but I cannot find sendmail, or a close equivalent, and
  787. the perl package Mail::Send has not been installed, so I can't send your bug
  788. report. We apologize for the inconvenience.
  789.  
  790. So you may attempt to find some way of sending your message, it has
  791. been left in the file `$filename'.
  792. EOF
  793.     open(SENDMAIL, "|$sendmail -t -oi") || die "'|$sendmail -t -oi' failed: $!";
  794. sendout:
  795.     print SENDMAIL "To: $address\n";
  796.     print SENDMAIL "Subject: $subject\n";
  797.     print SENDMAIL "Cc: $cc\n" if $cc;
  798.     print SENDMAIL "Reply-To: $from\n" if $from;
  799.     print SENDMAIL "\n\n";
  800.     open(REP, "<$filename") or die "Couldn't open `$filename': $!\n";
  801.     while (<REP>) { print SENDMAIL $_ }
  802.     close(REP) or die "Error closing $filename: $!";
  803.  
  804.     if (close(SENDMAIL)) {
  805.         printf "\nMessage %s.\n", $outfile ? "saved" : "sent";
  806.     } else {
  807.         warn "\nSendmail returned status '", $? >> 8, "'\n";
  808.     }
  809.     }
  810.     1 while unlink($filename);  # remove all versions under VMS
  811. } # sub Send
  812.  
  813. sub Help {
  814.     print <<EOF;
  815.  
  816. A program to help generate bug reports about perl5, and mail them.
  817. It is designed to be used interactively. Normally no arguments will
  818. be needed.
  819.  
  820. Usage:
  821. $0  [-v] [-a address] [-s subject] [-b body | -f inpufile ] [ -F outputfile ]
  822.     [-r returnaddress] [-e editor] [-c adminaddress | -C] [-S] [-t] [-h]
  823. $0  [-v] [-r returnaddress] [-A] [-ok | -okay | -nok | -nokay]
  824.  
  825. Simplest usage:  run "$0", and follow the prompts.
  826.  
  827. Options:
  828.  
  829.   -v    Include Verbose configuration data in the report
  830.   -f    File containing the body of the report. Use this to
  831.         quickly send a prepared message.
  832.   -F    File to output the resulting mail message to, instead of mailing.
  833.   -S    Send without asking for confirmation.
  834.   -a    Address to send the report to. Defaults to `$address'.
  835.   -c    Address to send copy of report to. Defaults to `$cc'.
  836.   -C    Don't send copy to administrator.
  837.   -s    Subject to include with the message. You will be prompted
  838.         if you don't supply one on the command line.
  839.   -b    Body of the report. If not included on the command line, or
  840.         in a file with -f, you will get a chance to edit the message.
  841.   -r    Your return address. The program will ask you to confirm
  842.         this if you don't give it here.
  843.   -e    Editor to use.
  844.   -t    Test mode. The target address defaults to `$testaddress'.
  845.   -d    Data mode.  This prints out your configuration data, without mailing
  846.         anything. You can use this with -v to get more complete data.
  847.   -A    Don't send a bug received acknowledgement to the return address.
  848.   -ok   Report successful build on this system to perl porters
  849.         (use alone or with -v). Only use -ok if *everything* was ok:
  850.         if there were *any* problems at all, use -nok.
  851.   -okay As -ok but allow report from old builds.
  852.   -nok  Report unsuccessful build on this system to perl porters
  853.         (use alone or with -v). You must describe what went wrong
  854.         in the body of the report which you will be asked to edit.
  855.   -nokay As -nok but allow report from old builds.
  856.   -h    Print this help message.
  857.  
  858. EOF
  859. }
  860.  
  861. sub filename {
  862.     my $dir = File::Spec->tmpdir();
  863.     $filename = "bugrep0$$";
  864.     $filename++ while -e File::Spec->catfile($dir, $filename);
  865.     $filename = File::Spec->catfile($dir, $filename);
  866. }
  867.  
  868. sub paraprint {
  869.     my @paragraphs = split /\n{2,}/, "@_";
  870.     print "\n\n";
  871.     for (@paragraphs) {   # implicit local $_
  872.     s/(\S)\s*\n/$1 /g;
  873.     write;
  874.     print "\n";
  875.     }
  876. }
  877.  
  878. format STDOUT =
  879. ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ~~
  880. $_
  881. .
  882.  
  883. __END__
  884.  
  885. =head1 NAME
  886.  
  887. perlbug - how to submit bug reports on Perl
  888.  
  889. =head1 SYNOPSIS
  890.  
  891. B<perlbug> S<[ B<-v> ]> S<[ B<-a> I<address> ]> S<[ B<-s> I<subject> ]>
  892. S<[ B<-b> I<body> | B<-f> I<inputfile> ]> S<[ B<-F> I<outputfile> ]>
  893. S<[ B<-r> I<returnaddress> ]>
  894. S<[ B<-e> I<editor> ]> S<[ B<-c> I<adminaddress> | B<-C> ]>
  895. S<[ B<-S> ]> S<[ B<-t> ]>  S<[ B<-d> ]>  S<[ B<-A> ]>  S<[ B<-h> ]>
  896.  
  897. B<perlbug> S<[ B<-v> ]> S<[ B<-r> I<returnaddress> ]>
  898.  S<[ B<-A> ]> S<[ B<-ok> | B<-okay> | B<-nok> | B<-nokay> ]>
  899.  
  900. =head1 DESCRIPTION
  901.  
  902. A program to help generate bug reports about perl or the modules that
  903. come with it, and mail them.
  904.  
  905. If you have found a bug with a non-standard port (one that was not part
  906. of the I<standard distribution>), a binary distribution, or a
  907. non-standard module (such as Tk, CGI, etc), then please see the
  908. documentation that came with that distribution to determine the correct
  909. place to report bugs.
  910.  
  911. C<perlbug> is designed to be used interactively. Normally no arguments
  912. will be needed.  Simply run it, and follow the prompts.
  913.  
  914. If you are unable to run B<perlbug> (most likely because you don't have
  915. a working setup to send mail that perlbug recognizes), you may have to
  916. compose your own report, and email it to B<perlbug@perl.org>.  You might
  917. find the B<-d> option useful to get summary information in that case.
  918.  
  919. In any case, when reporting a bug, please make sure you have run through
  920. this checklist:
  921.  
  922. =over 4
  923.  
  924. =item What version of Perl you are running?
  925.  
  926. Type C<perl -v> at the command line to find out.
  927.  
  928. =item Are you running the latest released version of perl?
  929.  
  930. Look at http://www.perl.com/ to find out.  If it is not the latest
  931. released version, get that one and see whether your bug has been
  932. fixed.  Note that bug reports about old versions of Perl, especially
  933. those prior to the 5.0 release, are likely to fall upon deaf ears.
  934. You are on your own if you continue to use perl1 .. perl4.
  935.  
  936. =item Are you sure what you have is a bug?
  937.  
  938. A significant number of the bug reports we get turn out to be documented
  939. features in Perl.  Make sure the behavior you are witnessing doesn't fall
  940. under that category, by glancing through the documentation that comes
  941. with Perl (we'll admit this is no mean task, given the sheer volume of
  942. it all, but at least have a look at the sections that I<seem> relevant).
  943.  
  944. Be aware of the familiar traps that perl programmers of various hues
  945. fall into.  See L<perltrap>.
  946.  
  947. Check in L<perldiag> to see what any Perl error message(s) mean.
  948. If message isn't in perldiag, it probably isn't generated by Perl.
  949. Consult your operating system documentation instead.
  950.  
  951. If you are on a non-UNIX platform check also L<perlport>, as some
  952. features may be unimplemented or work differently.
  953.  
  954. Try to study the problem under the Perl debugger, if necessary.
  955. See L<perldebug>.
  956.  
  957. =item Do you have a proper test case?
  958.  
  959. The easier it is to reproduce your bug, the more likely it will be
  960. fixed, because if no one can duplicate the problem, no one can fix it.
  961. A good test case has most of these attributes: fewest possible number
  962. of lines; few dependencies on external commands, modules, or
  963. libraries; runs on most platforms unimpeded; and is self-documenting.
  964.  
  965. A good test case is almost always a good candidate to be on the perl
  966. test suite.  If you have the time, consider making your test case so
  967. that it will readily fit into the standard test suite.
  968.  
  969. Remember also to include the B<exact> error messages, if any.
  970. "Perl complained something" is not an exact error message.
  971.  
  972. If you get a core dump (or equivalent), you may use a debugger
  973. (B<dbx>, B<gdb>, etc) to produce a stack trace to include in the bug
  974. report.  NOTE: unless your Perl has been compiled with debug info
  975. (often B<-g>), the stack trace is likely to be somewhat hard to use
  976. because it will most probably contain only the function names and not
  977. their arguments.  If possible, recompile your Perl with debug info and
  978. reproduce the dump and the stack trace.
  979.  
  980. =item Can you describe the bug in plain English?
  981.  
  982. The easier it is to understand a reproducible bug, the more likely it
  983. will be fixed.  Anything you can provide by way of insight into the
  984. problem helps a great deal.  In other words, try to analyze the
  985. problem (to the extent you can) and report your discoveries.
  986.  
  987. =item Can you fix the bug yourself?
  988.  
  989. A bug report which I<includes a patch to fix it> will almost
  990. definitely be fixed.  Use the C<diff> program to generate your patches
  991. (C<diff> is being maintained by the GNU folks as part of the B<diffutils>
  992. package, so you should be able to get it from any of the GNU software
  993. repositories).  If you do submit a patch, the cool-dude counter at
  994. perlbug@perl.org will register you as a savior of the world.  Your
  995. patch may be returned with requests for changes, or requests for more
  996. detailed explanations about your fix.
  997.  
  998. Here are some clues for creating quality patches: Use the B<-c> or
  999. B<-u> switches to the diff program (to create a so-called context or
  1000. unified diff).  Make sure the patch is not reversed (the first
  1001. argument to diff is typically the original file, the second argument
  1002. your changed file).  Make sure you test your patch by applying it with
  1003. the C<patch> program before you send it on its way.  Try to follow the
  1004. same style as the code you are trying to patch.  Make sure your patch
  1005. really does work (C<make test>, if the thing you're patching supports
  1006. it).
  1007.  
  1008. =item Can you use C<perlbug> to submit the report?
  1009.  
  1010. B<perlbug> will, amongst other things, ensure your report includes
  1011. crucial information about your version of perl.  If C<perlbug> is unable
  1012. to mail your report after you have typed it in, you may have to compose
  1013. the message yourself, add the output produced by C<perlbug -d> and email
  1014. it to B<perlbug@perl.org>.  If, for some reason, you cannot run
  1015. C<perlbug> at all on your system, be sure to include the entire output
  1016. produced by running C<perl -V> (note the uppercase V).
  1017.  
  1018. Whether you use C<perlbug> or send the email manually, please make
  1019. your Subject line informative.  "a bug" not informative.  Neither is
  1020. "perl crashes" nor "HELP!!!".  These don't help.
  1021. A compact description of what's wrong is fine.
  1022.  
  1023. =back
  1024.  
  1025. Having done your bit, please be prepared to wait, to be told the bug
  1026. is in your code, or even to get no reply at all.  The Perl maintainers
  1027. are busy folks, so if your problem is a small one or if it is difficult
  1028. to understand or already known, they may not respond with a personal reply.
  1029. If it is important to you that your bug be fixed, do monitor the
  1030. C<Changes> file in any development releases since the time you submitted
  1031. the bug, and encourage the maintainers with kind words (but never any
  1032. flames!).  Feel free to resend your bug report if the next released
  1033. version of perl comes out and your bug is still present.
  1034.  
  1035. =head1 OPTIONS
  1036.  
  1037. =over 8
  1038.  
  1039. =item B<-a>
  1040.  
  1041. Address to send the report to.  Defaults to `perlbug@perl.org'.
  1042.  
  1043. =item B<-A>
  1044.  
  1045. Don't send a bug received acknowledgement to the reply address.
  1046. Generally it is only a sensible to use this option if you are a
  1047. perl maintainer actively watching perl porters for your message to
  1048. arrive.
  1049.  
  1050. =item B<-b>
  1051.  
  1052. Body of the report.  If not included on the command line, or
  1053. in a file with B<-f>, you will get a chance to edit the message.
  1054.  
  1055. =item B<-C>
  1056.  
  1057. Don't send copy to administrator.
  1058.  
  1059. =item B<-c>
  1060.  
  1061. Address to send copy of report to.  Defaults to the address of the
  1062. local perl administrator (recorded when perl was built).
  1063.  
  1064. =item B<-d>
  1065.  
  1066. Data mode (the default if you redirect or pipe output).  This prints out
  1067. your configuration data, without mailing anything.  You can use this
  1068. with B<-v> to get more complete data.
  1069.  
  1070. =item B<-e>
  1071.  
  1072. Editor to use.
  1073.  
  1074. =item B<-f>
  1075.  
  1076. File containing the body of the report.  Use this to quickly send a
  1077. prepared message.
  1078.  
  1079. =item B<-F>
  1080.  
  1081. File to output the results to instead of sending as an email. Useful
  1082. particularly when running perlbug on a machine with no direct internet
  1083. connection.
  1084.  
  1085. =item B<-h>
  1086.  
  1087. Prints a brief summary of the options.
  1088.  
  1089. =item B<-ok>
  1090.  
  1091. Report successful build on this system to perl porters. Forces B<-S>
  1092. and B<-C>. Forces and supplies values for B<-s> and B<-b>. Only
  1093. prompts for a return address if it cannot guess it (for use with
  1094. B<make>). Honors return address specified with B<-r>.  You can use this
  1095. with B<-v> to get more complete data.   Only makes a report if this
  1096. system is less than 60 days old.
  1097.  
  1098. =item B<-okay>
  1099.  
  1100. As B<-ok> except it will report on older systems.
  1101.  
  1102. =item B<-nok>
  1103.  
  1104. Report unsuccessful build on this system.  Forces B<-C>.  Forces and
  1105. supplies a value for B<-s>, then requires you to edit the report
  1106. and say what went wrong.  Alternatively, a prepared report may be
  1107. supplied using B<-f>.  Only prompts for a return address if it
  1108. cannot guess it (for use with B<make>). Honors return address
  1109. specified with B<-r>.  You can use this with B<-v> to get more
  1110. complete data.  Only makes a report if this system is less than 60
  1111. days old.
  1112.  
  1113. =item B<-nokay>
  1114.  
  1115. As B<-nok> except it will report on older systems.
  1116.  
  1117. =item B<-r>
  1118.  
  1119. Your return address.  The program will ask you to confirm its default
  1120. if you don't use this option.
  1121.  
  1122. =item B<-S>
  1123.  
  1124. Send without asking for confirmation.
  1125.  
  1126. =item B<-s>
  1127.  
  1128. Subject to include with the message.  You will be prompted if you don't
  1129. supply one on the command line.
  1130.  
  1131. =item B<-t>
  1132.  
  1133. Test mode.  The target address defaults to `perlbug-test@perl.com'.
  1134.  
  1135. =item B<-v>
  1136.  
  1137. Include verbose configuration data in the report.
  1138.  
  1139. =back
  1140.  
  1141. =head1 AUTHORS
  1142.  
  1143. Kenneth Albanowski (E<lt>kjahds@kjahds.comE<gt>), subsequently I<doc>tored
  1144. by Gurusamy Sarathy (E<lt>gsar@activestate.comE<gt>), Tom Christiansen
  1145. (E<lt>tchrist@perl.comE<gt>), Nathan Torkington (E<lt>gnat@frii.comE<gt>),
  1146. Charles F. Randall (E<lt>cfr@pobox.comE<gt>), Mike Guy
  1147. (E<lt>mjtg@cam.a.ukE<gt>), Dominic Dunlop (E<lt>domo@computer.orgE<gt>),
  1148. Hugo van der Sanden (E<lt>hv@crypt0.demon.co.ukE<gt>),
  1149. Jarkko Hietaniemi (E<lt>jhi@iki.fiE<gt>), Chris Nandor
  1150. (E<lt>pudge@pobox.comE<gt>), Jon Orwant (E<lt>orwant@media.mit.eduE<gt>,
  1151. and Richard Foley (E<lt>richard@rfi.netE<gt>).
  1152.  
  1153. =head1 SEE ALSO
  1154.  
  1155. perl(1), perldebug(1), perldiag(1), perlport(1), perltrap(1),
  1156. diff(1), patch(1), dbx(1), gdb(1)
  1157.  
  1158. =head1 BUGS
  1159.  
  1160. None known (guess what must have been used to report them?)
  1161.  
  1162. =cut
  1163.  
  1164.  
  1165. __END__
  1166. :endofperl
  1167.