/usr/share/perl5/App/KGB.pm is in kgb-client 1.33-2ubuntu1.
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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | # vim: ts=4:sw=4:et:ai:sts=4
#
# KGB - an IRC bot helping collaboration
# Copyright © 2008 Martín Ferrari
# Copyright © 2009 Damyan Ivanov
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; either version 2 of the License, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
package App::KGB;
use strict;
use warnings;
=encoding UTF-8
=head1 NAME
App::KGB - collaborative IRC helper
=cut
our $VERSION = '1.33';
=head1 DESCRIPTION
B<App::KGB> is a helper aimed at people working together using version control
systems and IRC. It has two parts:
=over
=item server, L<kgb-bot(1)>
A daemon listening for commit notifications that relays them to IRC.
=item client, L<kgb-client(1)>, L<App::KGB::Client>
Hooks into the version control system and sends commit notifications to the
daemon.
=back
=head2 SUPPORTED VERSION CONTROL SYSTEMS
=over
=item Git
=item Subversion
=back
=head1 SEE ALSO
=over
=item L<kgb-client(1)>
=item L<App::KGB::Client>
=item L<kgb-bot(1)>
=back
=head1 AUTHOR
=over
=item Martin Ferrari L<tincho@debian.org>
=item Damyan Ivanov L<dmn@debian.org>
=back
=head1 LICENSE
Copyright (C) 2008 Martín Ferrari
Copyright (C) 2008-2009 Damyan Ivanov
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 51
Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
=cut
1;
|