Debian.pm 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Copyright © 2009 Raphaël Hertzog <hertzog@debian.org>
  2. # This program is free software; you can redistribute it and/or modify
  3. # it under the terms of the GNU General Public License as published by
  4. # the Free Software Foundation; either version 2 of the License, or
  5. # (at your option) any later version.
  6. # This program is distributed in the hope that it will be useful,
  7. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. # GNU General Public License for more details.
  10. # You should have received a copy of the GNU General Public License along
  11. # with this program; if not, write to the Free Software Foundation, Inc.,
  12. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  13. package Dpkg::Vendor::Debian;
  14. use strict;
  15. use warnings;
  16. use Dpkg::Vendor::Default;
  17. our @ISA = qw(Dpkg::Vendor::Default);
  18. =head1 NAME
  19. Dpkg::Vendor::Debian - Debian vendor object
  20. =head1 DESCRIPTION
  21. This object is empty. It inherits everything from
  22. Dpkg::Vendor::Default.
  23. =cut
  24. 1;