CPAN

 view release on metacpan or  search on metacpan

Todo  view on Meta::CPAN


	* Ricardo Signes suggested to discuss PAUSE issues on some list and I
	suggested reviving cpan-workers. Now I am not sure that I'm subscribed
	there. Google suggests the address is cpan-workers@perl.org

	http://www.nntp.perl.org/group/perl.cpan.workers/

	has the last posting from 2005. I'll now retry to send a message.

	update 2008-04-03 akoenig : seems to be disabled. But perl.cpan.discuss
	is in the slow lists and alive and I'm probably not subscribed.

	* Both Barbie and David Golden agreed to my plan to refuse the make
	phase when we are in the make(1) domain AND some files have a future
	timestamp. Slaven is opposed to the idea but has no better suggestion.
	Details in the thread on cpan-testers-discuss starting on 2008-03-28.

	* To understand #34582 I need a perl without Glib, ExtUtils::Depends,
	and ExtUtils::PkgConfig. Then I should issue a 'test Glib'

	No, better would be a perl with ExtUtils::Depends < 0.300 and/or

Todo  view on Meta::CPAN

	LYOKATO/FormValidator-Simple-0.22.tar.gz[263]
	CLACO/DBIx-Class-Validation-0.02001.tar.gz[264]
	GMPASSOS/Safe-World-0.14.tar.gz[285]
	NODINE/Text-Restructured-0.003037.tar.gz[292]
	CFRANKS/HTML-Widget-1.11.tar.gz[303]
	JJORE/B-Generate-1.11.tar.gz[318]
	MIYAGAWA/Email-Find-0.10.tar.gz[436]
	RCAPUTO/POE-Component-Client-DNS-1.00.tar.gz[455]
	JJORE/AI-Prolog-0.739.tar.gz[584]
	DPAVLIN/Search-Estraier-0.08.tar.gz[748]
	RCAPUTO/POE-Component-Client-Keepalive-0.1000.tar.gz[761]
	RCAPUTO/POE-Component-Client-HTTP-0.82.tar.gz[762]
	DMAKI/Xango-1.08.tar.gz[770]
	JMASON/Mail-SpamAssassin-3.2.3.tar.gz[775]
	PIJLL/DateTime-Format-Epoch-0.11.tar.gz[785]
	NEELY/Data-Serializer-0.43.tar.gz[806]
	BBC/Email-MIME-CreateHTML-1.026.tar.gz[841]
	SARTAK/Jifty-0.71129.tar.gz[856]
	NUFFIN/Test-TAP-Model-0.09.tar.gz[934]
	NUFFIN/Test-TAP-HTMLMatrix-0.09.tar.gz[935]
	GAAL/Task-Smoke-0.16.tar.gz[936]

Todo  view on Meta::CPAN

	MIYAGAWA/Email-Find-0.10.tar.gz[241]
	HEX/WWW-Live365-0.12.tar.gz[272]
	BBC/File-Policy-1.005.tar.gz[344]
	BBC/Email-MIME-CreateHTML-1.026.tar.gz[348]
	MIYAGAWA/Email-Valid-Loose-0.05.tar.gz[415]
	MIROD/XML-Twig-3.29.tar.gz[576]
	AMBS/XML/XML-DT-0.47.tar.gz[585]
	TBONE/Net-FTP-Common-6.0.tar.gz[653]
	JMGDOC/OpenOffice-OODoc-2.035.tar.gz[721]
	RCAPUTO/POE-Component-Client-DNS-1.00.tar.gz[728]
	RCAPUTO/POE-Component-Client-Keepalive-0.1000.tar.gz[729]
	CFRANKS/HTML-Widget-1.11.tar.gz[787]
	SRI/Catalyst-Plugin-HTML-Widget-1.1.tar.gz[788]
	YANICK/XML-XPathScript-1.52.tar.gz[836]
	BINGOS/POE-Component-Server-IRC-1.18.tar.gz[873]
	MIYAGAWA/CGI-Untaint-email-0.03.tar.gz[904]
	SCHUBIGER/Module-Build-Convert-0.49.tar.gz[915]
	MUIR/modules/Daemon-Generic-0.51.tar.gz[920]
	JROCKWAY/Directory-Scratch-0.12.tar.gz[984]
	PARDUS/File-MimeInfo/File-MimeInfo-0.14.tar.gz[1077]
	LBROCARD/Test-WWW-Mechanize-Catalyst-0.40.tar.gz[1079]

lib/App/Cpan.pm  view on Meta::CPAN

	return unless $port;

	if ( $ping->can('port_number') ) {
		$ping->port_number($port);
		}
	else {
		$ping->{'port_num'} = $port;
		}

	$ping->hires(1) if $ping->can( 'hires' );
	my( $alive, $rtt ) = eval{ $ping->ping( $url->host ) };
	$alive ? $rtt : undef;
	}

sub _load_local_lib # -I
	{
	$logger->debug( "Loading local::lib" );

	my $rc = _safe_load_module("local::lib");
	unless( $rc ) {
		$logger->logdie( "Could not load local::lib" );
		}

lib/CPAN/Mirrors.pm  view on Meta::CPAN

    return unless $port;

    if ( $ping->can('port_number') ) {
        $ping->port_number($port);
    }
    else {
        $ping->{'port_num'} = $port;
    }

    $ping->hires(1) if $ping->can('hires');
    my ($alive,$rtt) = eval { $ping->ping($self->hostname); };
    my $verbose = $args{verbose};
    if ($verbose && !$alive) {
        printf "(host %s not alive)", $self->hostname;
    }

    $self->{rtt} = $alive ? $rtt : undef;
    $self->{ping_time} = time;

    $self->rtt;
}


1;

=back



( run in 1.005 second using v1.01-cache-2.11-cpan-df04353d9ac )