# HG changeset patch # User Hans-G?nter Theisgen # Date 1641112545 -3600 # Node ID d8b76dbd6692774c7d17e23ed3f45b6e3fe8154f # Parent be217921b3d15281849a6e00d746d8b8f277247a updated perl-net-telnet (3.04 -> 3.05) diff -r be217921b3d1 -r d8b76dbd6692 perl-net-telnet/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-net-telnet/description.txt Sun Jan 02 09:35:45 2022 +0100 @@ -0,0 +1,19 @@ +Net::Telnet allows you to make client connections to a TCP port and do +network I/O, especially to a port using the TELNET protocol. +Simple I/O methods such as print, get, and getline are provided. +More sophisticated interactive features are provided because connecting +to a TELNET port ultimately means communicating with a program designed +for human interaction. +These interactive features include the ability to specify a time-out and +to wait for patterns to appear in the input stream, such as the prompt +from a shell. +IPv6 support is available when using perl 5.14 or later, see family(). + +Other reasons to use this module than strictly with a TELNET port are: + +- You're not familiar with sockets and you want a simple way to make + client connections to TCP services. +- You want to be able to specify your own time-out while connecting, + reading, or writing. +- You're communicating with an interactive program at the other end of + some socket or pipe and you want to wait for certain patterns to appear. diff -r be217921b3d1 -r d8b76dbd6692 perl-net-telnet/receipt --- a/perl-net-telnet/receipt Sun Jan 02 09:33:18 2022 +0100 +++ b/perl-net-telnet/receipt Sun Jan 02 09:35:45 2022 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-net-telnet" -VERSION="3.04" +VERSION="3.05" CATEGORY="development" SHORT_DESC="Perl extension Net::Telnet." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/Net-Telnet" +WEB_SITE="https://metacpan.org/pod/Net::Telnet" +REPOLOGY="perl:net-telnet" SOURCE="Net-Telnet" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -26,12 +27,11 @@ { perl Makefile.PL && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/lib $fs/usr + cook_copy_folders lib }