wok rev 24225
updated perl-io-socket-ssl (2.068 -> 2.073)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 17:41:39 2021 +0100 (2021-12-31) |
parents | affc7e322838 |
children | 4ec86b9eafba |
files | perl-io-socket-ssl/description.txt perl-io-socket-ssl/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-io-socket-ssl/description.txt Fri Dec 31 17:41:39 2021 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +IO::Socket::SSL makes using SSL/TLS much easier by wrapping the necessary 1.5 +functionality into the familiar IO::Socket interface and providing secure 1.6 +defaults whenever possible. 1.7 +This way, existing applications can be made SSL-aware without much effort, 1.8 +at least if you do blocking I/O and don't use select or poll. 1.9 + 1.10 +But, under the hood, SSL is a complex beast. So there are lots of methods 1.11 +to make it do what you need if the default behavior is not adequate. 1.12 +Because it is easy to inadvertently introduce critical security bugs or 1.13 +just hard to debug problems, I would recommend studying the documentation 1.14 +carefully.
2.1 --- a/perl-io-socket-ssl/receipt Fri Dec 31 17:33:39 2021 +0100 2.2 +++ b/perl-io-socket-ssl/receipt Fri Dec 31 17:41:39 2021 +0100 2.3 @@ -1,12 +1,13 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-io-socket-ssl" 2.7 -VERSION="2.068" 2.8 +VERSION="2.073" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl extension IO::Socket::SSL." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/IO-Socket-SSL" 2.14 +WEB_SITE="https://metacpan.org/pod/IO::Socket::SSL" 2.15 +REPOLOGY="perl:io-socket-ssl" 2.16 2.17 SOURCE="IO-Socket-SSL" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 @@ -26,12 +27,11 @@ 2.20 { 2.21 yes '' | 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 }