/usr/share/perl5/Net/Rendezvous.pm is in libnet-bonjour-perl 0.96-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | package Net::Rendezvous;
=head1 NAME
Net::Rendezvous - Module for DNS service discovery (Apple's Rendezvous)
=head1 SYNOPSIS
B<This module is deprecated. Use L<Net::Bonjour>>.
=head1 SEE ALSO
L<Net::Bonjour>
=head1 COPYRIGHT
This library is free software and can be distributed or modified under the same terms as Perl itself.
Rendezvous (in this context) is a trademark of Apple Computer, Inc.
Bonjour (in this context) is a trademark of Apple Computer, Inc.
=head1 AUTHORS
The Net::Rendezvous module was created by George Chlipala <george@walnutcs.com>
=cut
use strict;
use Net::Bonjour;
use Net::Rendezvous::Entry;
use vars qw($VERSION $AUTOLOAD @ISA);
our $VERSION = '0.92';
our @ISA = ('Net::Bonjour');
1;
|