summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2021-10-09 16:24:02 +0000
committerJames E Keenan <jkeenan@cpan.org>2021-10-09 19:04:22 -0400
commit503e0d1c055ad6e1e8ee5d18ed7160bba4871300 (patch)
tree488867e482961a71b9cb759c245592f1ae1a1dd4 /dist
parent2a53f25a438715f73b03bc061357a8223b004774 (diff)
downloadperl-503e0d1c055ad6e1e8ee5d18ed7160bba4871300.tar.gz
Send bug reports to GitHub
Mail to 'perlbug@perl.org' now simply triggers a response redirecting sender there.
Diffstat (limited to 'dist')
-rw-r--r--dist/FindBin/lib/FindBin.pm7
-rw-r--r--dist/IO/lib/IO/Dir.pm4
-rw-r--r--dist/IO/lib/IO/Pipe.pm4
-rw-r--r--dist/IO/lib/IO/Poll.pm4
-rw-r--r--dist/IO/lib/IO/Select.pm4
-rw-r--r--dist/IO/lib/IO/Socket.pm6
-rw-r--r--dist/IO/lib/IO/Socket/INET.pm4
-rw-r--r--dist/IO/lib/IO/Socket/UNIX.pm4
-rw-r--r--dist/PathTools/lib/File/Spec/Unix.pm4
9 files changed, 20 insertions, 21 deletions
diff --git a/dist/FindBin/lib/FindBin.pm b/dist/FindBin/lib/FindBin.pm
index a1b768a107..fa61dd334e 100644
--- a/dist/FindBin/lib/FindBin.pm
+++ b/dist/FindBin/lib/FindBin.pm
@@ -61,9 +61,8 @@ workaround was to force the C<BEGIN> block to be executed again:
=head1 AUTHORS
-FindBin is supported as part of the core perl distribution. Please send bug
-reports to E<lt>F<perlbug@perl.org>E<gt> using the perlbug program
-included with perl.
+FindBin is supported as part of the core perl distribution. Please submit bug
+reports at L<https://github.com/Perl/perl5/issues>.
Graham Barr E<lt>F<gbarr@pobox.com>E<gt>
Nick Ing-Simmons E<lt>F<nik@tiuk.ti.com>E<gt>
@@ -91,7 +90,7 @@ our @EXPORT_OK = qw($Bin $Script $RealBin $RealScript $Dir $RealDir);
our %EXPORT_TAGS = (ALL => [qw($Bin $Script $RealBin $RealScript $Dir $RealDir)]);
our @ISA = qw(Exporter);
-our $VERSION = "1.52";
+our $VERSION = "1.53";
# needed for VMS-specific filename translation
if( $^O eq 'VMS' ) {
diff --git a/dist/IO/lib/IO/Dir.pm b/dist/IO/lib/IO/Dir.pm
index e8b2760d63..a471577245 100644
--- a/dist/IO/lib/IO/Dir.pm
+++ b/dist/IO/lib/IO/Dir.pm
@@ -18,7 +18,7 @@ use File::stat;
use File::Spec;
our @ISA = qw(Tie::Hash Exporter);
-our $VERSION = "1.48";
+our $VERSION = "1.49";
our @EXPORT_OK = qw(DIR_UNLINK);
@@ -236,7 +236,7 @@ L<File::stat>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perlbug@perl.org>.
+bugs at L<https://github.com/Perl/perl5/issues>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Pipe.pm b/dist/IO/lib/IO/Pipe.pm
index 87dfd34f85..8b712daf84 100644
--- a/dist/IO/lib/IO/Pipe.pm
+++ b/dist/IO/lib/IO/Pipe.pm
@@ -13,7 +13,7 @@ use strict;
use Carp;
use Symbol;
-our $VERSION = "1.48";
+our $VERSION = "1.49";
sub new {
my $type = shift;
@@ -245,7 +245,7 @@ L<IO::Handle>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perlbug@perl.org>.
+bugs at L<https://github.com/Perl/perl5/issues>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Poll.pm b/dist/IO/lib/IO/Poll.pm
index 62fa702069..b028e754c9 100644
--- a/dist/IO/lib/IO/Poll.pm
+++ b/dist/IO/lib/IO/Poll.pm
@@ -12,7 +12,7 @@ use IO::Handle;
use Exporter ();
our @ISA = qw(Exporter);
-our $VERSION = "1.48";
+our $VERSION = "1.49";
our @EXPORT = qw( POLLIN
POLLOUT
@@ -197,7 +197,7 @@ L<poll(2)>, L<IO::Handle>, L<IO::Select>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perlbug@perl.org>.
+bugs at L<https://github.com/Perl/perl5/issues>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Select.pm b/dist/IO/lib/IO/Select.pm
index 325ef22273..4568b49503 100644
--- a/dist/IO/lib/IO/Select.pm
+++ b/dist/IO/lib/IO/Select.pm
@@ -10,7 +10,7 @@ use strict;
use warnings::register;
require Exporter;
-our $VERSION = "1.48";
+our $VERSION = "1.49";
our @ISA = qw(Exporter); # This is only so we can do version checking
@@ -405,7 +405,7 @@ listening for more connections on a listen socket
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perlbug@perl.org>.
+bugs at L<https://github.com/Perl/perl5/issues>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Socket.pm b/dist/IO/lib/IO/Socket.pm
index bb9f679dda..0e099b6081 100644
--- a/dist/IO/lib/IO/Socket.pm
+++ b/dist/IO/lib/IO/Socket.pm
@@ -23,7 +23,7 @@ require IO::Socket::UNIX if ($^O ne 'epoc' && $^O ne 'symbian');
our @ISA = qw(IO::Handle);
-our $VERSION = "1.48";
+our $VERSION = "1.49";
our @EXPORT_OK = qw(sockatmark);
@@ -916,8 +916,8 @@ L<IO::Socket::IP>
=head1 AUTHOR
-Graham Barr. atmark() by Lincoln Stein. Currently maintained by the
-Perl Porters. Please report all bugs to <perlbug@perl.org>.
+Graham Barr. atmark() by Lincoln Stein. Currently maintained by the Perl
+Porters. Please report all bugs at L<https://github.com/Perl/perl5/issues>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Socket/INET.pm b/dist/IO/lib/IO/Socket/INET.pm
index 253da1420e..a2de00e3c2 100644
--- a/dist/IO/lib/IO/Socket/INET.pm
+++ b/dist/IO/lib/IO/Socket/INET.pm
@@ -14,7 +14,7 @@ use Exporter;
use Errno;
our @ISA = qw(IO::Socket);
-our $VERSION = "1.48";
+our $VERSION = "1.49";
my $EINVAL = exists(&Errno::EINVAL) ? Errno::EINVAL() : 1;
@@ -460,7 +460,7 @@ L<Socket>, L<IO::Socket>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perlbug@perl.org>.
+bugs at L<https://github.com/Perl/perl5/issues>.
=head1 COPYRIGHT
diff --git a/dist/IO/lib/IO/Socket/UNIX.pm b/dist/IO/lib/IO/Socket/UNIX.pm
index cf9b5e4799..60bdc047b5 100644
--- a/dist/IO/lib/IO/Socket/UNIX.pm
+++ b/dist/IO/lib/IO/Socket/UNIX.pm
@@ -11,7 +11,7 @@ use IO::Socket;
use Carp;
our @ISA = qw(IO::Socket);
-our $VERSION = "1.48";
+our $VERSION = "1.49";
IO::Socket::UNIX->register_domain( AF_UNIX );
@@ -162,7 +162,7 @@ L<Socket>, L<IO::Socket>
=head1 AUTHOR
Graham Barr. Currently maintained by the Perl Porters. Please report all
-bugs to <perlbug@perl.org>.
+bugs at L<https://github.com/Perl/perl5/issues>.
=head1 COPYRIGHT
diff --git a/dist/PathTools/lib/File/Spec/Unix.pm b/dist/PathTools/lib/File/Spec/Unix.pm
index df98f580c3..b7907f898c 100644
--- a/dist/PathTools/lib/File/Spec/Unix.pm
+++ b/dist/PathTools/lib/File/Spec/Unix.pm
@@ -3,7 +3,7 @@ package File::Spec::Unix;
use strict;
use Cwd ();
-our $VERSION = '3.81';
+our $VERSION = '3.82';
$VERSION =~ tr/_//d;
=head1 NAME
@@ -530,7 +530,7 @@ Copyright (c) 2004 by the Perl 5 Porters. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
-Please submit bug reports and patches to perlbug@perl.org.
+Please submit bug reports at L<https://github.com/Perl/perl5/issues>.
=head1 SEE ALSO