wok rev 24248

updated perl-net-telnet (3.04 -> 3.05)
author Hans-G?nter Theisgen
date Sun Jan 02 09:35:45 2022 +0100 (2022-01-02)
parents be217921b3d1
children 52fe8c74db68
files perl-net-telnet/description.txt perl-net-telnet/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-net-telnet/description.txt	Sun Jan 02 09:35:45 2022 +0100
     1.3 @@ -0,0 +1,19 @@
     1.4 +Net::Telnet allows you to make client connections to a TCP port and do
     1.5 +network I/O, especially to a port using the TELNET protocol.
     1.6 +Simple I/O methods such as print, get, and getline are provided.
     1.7 +More sophisticated interactive features are provided because connecting
     1.8 +to a TELNET port ultimately means communicating with a program designed
     1.9 +for human interaction.
    1.10 +These interactive features include the ability to specify a time-out and
    1.11 +to wait for patterns to appear in the input stream, such as the prompt
    1.12 +from a shell.
    1.13 +IPv6 support is available when using perl 5.14 or later, see family().
    1.14 +
    1.15 +Other reasons to use this module than strictly with a TELNET port are:
    1.16 +
    1.17 +- You're not familiar with sockets and you want a simple way to make
    1.18 +  client connections to TCP services.
    1.19 +- You want to be able to specify your own time-out while connecting,
    1.20 +  reading, or writing.
    1.21 +- You're communicating with an interactive program at the other end of
    1.22 +  some socket or pipe and you want to wait for certain patterns to appear.
     2.1 --- a/perl-net-telnet/receipt	Sun Jan 02 09:33:18 2022 +0100
     2.2 +++ b/perl-net-telnet/receipt	Sun Jan 02 09:35:45 2022 +0100
     2.3 @@ -1,12 +1,13 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-net-telnet"
     2.7 -VERSION="3.04"
     2.8 +VERSION="3.05"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Perl extension Net::Telnet."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/Net-Telnet"
    2.14 +WEB_SITE="https://metacpan.org/pod/Net::Telnet"
    2.15 +REPOLOGY="perl:net-telnet"
    2.16  
    2.17  SOURCE="Net-Telnet"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19 @@ -26,12 +27,11 @@
    2.20  {
    2.21  	perl Makefile.PL &&
    2.22  	make &&
    2.23 -	make DESTDIR=$DESTDIR install
    2.24 +	make install DESTDIR=$DESTDIR
    2.25  }
    2.26  
    2.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.28  genpkg_rules()
    2.29  {
    2.30 -	mkdir -p $fs/usr
    2.31 -	cp -a $install/usr/lib	$fs/usr
    2.32 +	cook_copy_folders	lib
    2.33  }