# HG changeset patch # User Hans-G?nter Theisgen # Date 1640968899 -3600 # Node ID b6c2a8e3c716e6f0ab26170a00e392dda528690a # Parent affc7e322838dd72e12b493842953a750d98a910 updated perl-io-socket-ssl (2.068 -> 2.073) diff -r affc7e322838 -r b6c2a8e3c716 perl-io-socket-ssl/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-io-socket-ssl/description.txt Fri Dec 31 17:41:39 2021 +0100 @@ -0,0 +1,11 @@ +IO::Socket::SSL makes using SSL/TLS much easier by wrapping the necessary +functionality into the familiar IO::Socket interface and providing secure +defaults whenever possible. +This way, existing applications can be made SSL-aware without much effort, +at least if you do blocking I/O and don't use select or poll. + +But, under the hood, SSL is a complex beast. So there are lots of methods +to make it do what you need if the default behavior is not adequate. +Because it is easy to inadvertently introduce critical security bugs or +just hard to debug problems, I would recommend studying the documentation +carefully. diff -r affc7e322838 -r b6c2a8e3c716 perl-io-socket-ssl/receipt --- a/perl-io-socket-ssl/receipt Fri Dec 31 17:33:39 2021 +0100 +++ b/perl-io-socket-ssl/receipt Fri Dec 31 17:41:39 2021 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-io-socket-ssl" -VERSION="2.068" +VERSION="2.073" CATEGORY="development" SHORT_DESC="Perl extension IO::Socket::SSL." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/IO-Socket-SSL" +WEB_SITE="https://metacpan.org/pod/IO::Socket::SSL" +REPOLOGY="perl:io-socket-ssl" SOURCE="IO-Socket-SSL" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -26,12 +27,11 @@ { yes '' | 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 }