]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/commitdiff
Document C::D::G::{Atom,Version}
authorVincent Pit <vince@profvince.com>
Sun, 29 Nov 2009 01:11:58 +0000 (02:11 +0100)
committerVincent Pit <vince@profvince.com>
Sun, 29 Nov 2009 01:11:58 +0000 (02:11 +0100)
lib/CPANPLUS/Dist/Gentoo/Atom.pm
lib/CPANPLUS/Dist/Gentoo/Version.pm

index 543693e5ab7b8471dfdf10d1f73870fea153074c..e285b0ce32a28b8220f4a4a36739e9bcbe1461c9 100644 (file)
@@ -3,8 +3,24 @@ package CPANPLUS::Dist::Gentoo::Atom;
 use strict;
 use warnings;
 
+=head1 NAME
+
+CPANPLUS::Dist::Gentoo::Version - Gentoo atom object.
+
+=head1 VERSION
+
+Version 0.08
+
+=cut
+
 our $VERSION = '0.08';
 
+=head1 DESCRIPTION
+
+This class models Gentoo atoms.
+
+=cut
+
 use Carp         ();
 use Scalar::Util ();
 
@@ -18,6 +34,14 @@ use CPANPLUS::Dist::Gentoo::Version;
 
 my $version_rx = $CPANPLUS::Dist::Gentoo::Version::version_rx;
 
+=head1 METHODS
+
+=head2 C<< new category => $category, name => $name [, version => $version, range => $range, ebuild => $ebuild ] >>
+
+Creates a new L<CPANPLUS::Dist::Gentoo::Atom> object from the supplied C<$category>, C<$name>, C<$version>, C<$range> and C<$ebuild>.
+
+=cut
+
 sub new {
  my $class = shift;
  $class = ref($class) || $class;
@@ -67,6 +91,12 @@ sub new {
  }, $class;
 }
 
+=head2 C<new_from_ebuild $ebuild>
+
+Creates a new L<CPANPLUS::Dist::Gentoo::Atom> object by inferring the category, name and version from the given C<$ebuild>
+
+=cut
+
 sub new_from_ebuild {
  my $class = shift;
  $class = ref($class) || $class;
@@ -90,6 +120,32 @@ BEGIN {
  eval "sub $_ { \$_[0]->{$_} }" for qw/category name version range ebuild/;
 }
 
+=head2 C<category>
+
+Read-only accessor to the atom category.
+
+=head2 C<name>
+
+Read-only accessor to the atom name.
+
+=head2 C<version>
+
+Read-only accessor to the L<CPANPLUS::Dist::Gentoo::Version> object associated with the atom.
+
+=head2 C<range>
+
+Read-only accessor to the atom range.
+
+=head2 C<ebuild>
+
+Read-only accessor to the path of an optional ebuild associated with the atom.
+
+=head2 C<qualified_name>
+
+Returns the qualified name for the atom, i.e. C<$category/$name>.
+
+=cut
+
 sub qualified_name { join '/', $_[0]->category, $_[0]->name }
 
 sub _spaceship {
@@ -149,6 +205,12 @@ my %order = (
  '>'  =>  2,
 );
 
+=head2 C<and @atoms>
+
+Compute the ranged atom representing the logical AND between C<@atoms> with the same category and name.
+
+=cut
+
 sub and {
  shift unless length ref $_[0];
 
@@ -191,6 +253,12 @@ sub and {
  }
 }
 
+=head2 C<fold @atoms>
+
+Returns a list built from C<@atoms> but where there's only one atom for a given category and name.
+
+=cut
+
 sub fold {
  shift unless length ref $_[0];
 
@@ -205,4 +273,36 @@ sub fold {
  return values %seen;
 }
 
-1;
+=pod
+
+This class provides overloaded methods for numerical comparison, string comparison and strigification.
+
+=head1 SEE ALSO
+
+L<CPANPLUS::Dist::Gentoo>, L<CPANPLUS::Dist::Gentoo::Version>.
+
+=head1 AUTHOR
+
+Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
+
+You can contact me by mail or on C<irc.perl.org> (vincent).
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-cpanplus-dist-gentoo at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CPANPLUS-Dist-Gentoo>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+    perldoc CPANPLUS::Dist::Gentoo
+
+=head1 COPYRIGHT & LICENSE
+
+Copyright 2009 Vincent Pit, all rights reserved.
+
+This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
+
+=cut
+
+1; # End of CPANPLUS::Dist::Gentoo::Atom
index 1214582c08158b4909a18f307336e782000e405d..12f75d6e95dcb5235cecf7754a7911c92272116c 100644 (file)
@@ -3,6 +3,24 @@ package CPANPLUS::Dist::Gentoo::Version;
 use strict;
 use warnings;
 
+=head1 NAME
+
+CPANPLUS::Dist::Gentoo::Version - Gentoo version object.
+
+=head1 VERSION
+
+Version 0.08
+
+=cut
+
+our $VERSION = '0.08';
+
+=head1 DESCRIPTION
+
+This class models Gentoo versions.
+
+=cut
+
 use Scalar::Util ();
 
 use overload (
@@ -10,13 +28,19 @@ use overload (
  '""'  => \&_stringify,
 );
 
-our $VERSION = '0.08';
-
 my $int_rx        = qr/\d+/;
 my $dotted_num_rx = qr/$int_rx(?:\.$int_rx)*/;
 
 our $version_rx = qr/$dotted_num_rx(?:_p$dotted_num_rx)?(?:-r$int_rx)?/;
 
+=head1 METHODS
+
+=head2 C<new $vstring>
+
+Creates a new L<CPANPLUS::Dist::Gentoo::Version> object from the version string C<$vstring>.
+
+=cut
+
 sub new {
  my $class = shift;
  $class = ref($class) || $class;
@@ -45,6 +69,20 @@ BEGIN {
  eval "sub $_ { \$_[0]->{$_} }" for @parts;
 }
 
+=head2 C<version>
+
+Read-only accessor for the C<version> part of the version object.
+
+=head2 C<patch>
+
+Read-only accessor for the C<patch> part of the version object.
+
+=head2 C<revision>
+
+Read-only accessor for the C<revision> part of the version object.
+
+=cut
+
 sub _spaceship {
  my ($v1, $v2, $r) = @_;
 
@@ -80,4 +118,36 @@ sub _stringify {
  $version;
 }
 
-1;
+=pod
+
+This class provides overloaded methods for numerical comparison and strigification.
+
+=head1 SEE ALSO
+
+L<CPANPLUS::Dist::Gentoo>.
+
+=head1 AUTHOR
+
+Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
+
+You can contact me by mail or on C<irc.perl.org> (vincent).
+
+=head1 BUGS
+
+Please report any bugs or feature requests to C<bug-cpanplus-dist-gentoo at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CPANPLUS-Dist-Gentoo>.  I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
+
+=head1 SUPPORT
+
+You can find documentation for this module with the perldoc command.
+
+    perldoc CPANPLUS::Dist::Gentoo
+
+=head1 COPYRIGHT & LICENSE
+
+Copyright 2009 Vincent Pit, all rights reserved.
+
+This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
+
+=cut
+
+1; # End of CPANPLUS::Dist::Gentoo::Version