X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FCPANPLUS%2FDist%2FGentoo.pm;h=0dd2dd73ca2defdb7e333065d472e3c385666116;hb=f2de516209b993fa003e7534ee2b624f7c114481;hp=032d46e886d97571db70ff7c328c1c67cc1aaa2b;hpb=be982bd595059880773785ac66270369de53a309;p=perl%2Fmodules%2FCPANPLUS-Dist-Gentoo.git diff --git a/lib/CPANPLUS/Dist/Gentoo.pm b/lib/CPANPLUS/Dist/Gentoo.pm index 032d46e..0dd2dd7 100644 --- a/lib/CPANPLUS/Dist/Gentoo.pm +++ b/lib/CPANPLUS/Dist/Gentoo.pm @@ -8,6 +8,7 @@ use List::Util qw; use File::Copy (); use File::Path (); use File::Spec; +use POSIX (); use IPC::Cmd (); use Parse::CPAN::Meta (); @@ -53,6 +54,7 @@ This module is a CPANPLUS backend that recursively generates Gentoo ebuilds for The generated ebuilds are placed into the C category. They favour depending on a C, on C, C or C (in that order) rather than C. +Existing ebuilds will be searched into the main C portage tree and then into the overlays listed in C. =head1 OPTIONS @@ -75,9 +77,9 @@ Defaults to C. C -A string formatted as a space-delimited sequence of paths, that lists the different overlays in which existent ebuilds will be looked for. +The path of the overlay in which the generated ebuilds will be written. -Defaults to the value of C as returned by C (usually F). +Defaults to the first overlay listed in C (as returned by C) or F if this variable is empty. =item * @@ -86,7 +88,7 @@ C The directory where C expects to find the source tarballs. You need write permissions on this directory. -Defaults to the value of C as returned by C (usually F). +Defaults to the value of C (as returned by C) or F if this variable is empty. =item * @@ -94,7 +96,7 @@ C The valid C for the generated ebuilds. -Defaults to the value of C as returned by C. +Defaults to the value of C (as returned by C) or C<'x86'> if this variable is empty. =item * @@ -268,6 +270,20 @@ sub format_available { $default_keywords = [ 'x86' ] unless defined $default_keywords; $default_distdir = '/usr/portage/distfiles' unless defined $default_distdir; + my $timestamp = CPANPLUS::Dist::Gentoo::Maps::get_portage_timestamp( + $main_portdir + ); + if (defined $timestamp) { + __PACKAGE__->_notify("Portage tree $main_portdir dates back from UNIX timestamp $timestamp"); + } else { + __PACKAGE__->_notify("Unable to get timestamp for portage tree $main_portdir, using gmtime instead"); + $timestamp = POSIX::mktime(gmtime); + } + if ($timestamp < CPANPLUS::Dist::Gentoo::Maps::TIMESTAMP) { + __PACKAGE__->_abort("Portage tree too old (please run emerge --sync and retry)"); + return $format_available = 0; + } + return $format_available = 1; } @@ -360,7 +376,12 @@ sub prepare { $stat->footer($footer); my $overlay = delete $opts{overlay}; - $overlay = (defined $overlay) ? Cwd::abs_path($overlay) : '/usr/local/portage'; + if (defined $overlay) { + $overlay = Cwd::abs_path($overlay); + } else { + $overlay = $overlays->[0]; + $overlay = '/usr/local/portage' unless defined $overlay; + } $stat->overlay($overlay); my $distdir = delete $opts{distdir}; @@ -889,7 +910,7 @@ Kent Fredric, for testing and suggesting improvements. =head1 COPYRIGHT & LICENSE -Copyright 2008,2009,2010 Vincent Pit, all rights reserved. +Copyright 2008,2009,2010,2011,2012 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.