SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 

perl-NNTPClient rpm build for : openSUSE Tumbleweed. For other distributions click perl-NNTPClient.

Name : perl-NNTPClient
Version : 0.37 Vendor : obs://build_opensuse_org/devel:languages:perl
Release : 6.72 Date : 2024-08-05 17:23:34
Group : Development/Libraries/Perl Source RPM : perl-NNTPClient-0.37-6.72.src.rpm
Size : 0.05 MB
Packager : (none)
Summary : Perl 5 module to talk to NNTP (RFC977) server
Description :
This module implements a client interface to NNTP, enabling a Perl 5
application to talk to NNTP servers. It uses the OOP (Object Oriented
Programming) interface introduced with Perl 5.

NNTPClient exports nothing.

A new NNTPClient object must be created with the _new_ method. Once this
has been done, all NNTP commands are accessed through this object.

Here are a couple of short examples. The first prints all articles in the
\"test\" newsgroup:



use News::NNTPClient;

$c = new News::NNTPClient;

($first, $last) = ($c->group(\"test\"));

for (; $first < = $last; $first++) {
print $c->article($first);
}

__END__

This example prints the body of all articles in the \"test\" newsgroup newer
than one hour:



require News::NNTPClient;

$c = new News::NNTPClient;

foreach ($c->newnews(\"test\", time - 3600)) {
print $c->body($_);
}

__END__

RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/devel:/languages:/perl:/CPAN-N/openSUSE_Tumbleweed/noarch

Content of RPM  Provides Requires

Download
ftp.icm.edu.pl  perl-NNTPClient-0.37-6.72.noarch.rpm
     

Provides :
perl(News::NNTPClient)
perl-NNTPClient

Requires :
perl(:MODULE_COMPAT_5.40.0)
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1
rpmlib(PayloadIsZstd) <= 5.4.18-1


Content of RPM :
/usr/lib/perl5/vendor_perl/5.40.0/News
/usr/lib/perl5/vendor_perl/5.40.0/News/NNTPClient.pm
/usr/share/doc/packages/perl-NNTPClient
/usr/share/doc/packages/perl-NNTPClient/README
/usr/share/man/man3/News::NNTPClient.3pm.gz

 
ICM