# HG changeset patch # User Hans-G?nter Theisgen # Date 1641113271 -3600 # Node ID 1e0249731b58757d19c53f79b70de0968022810b # Parent 9649fc1e2a4d6a5b6f9d2895029c281f57bd2fd8 updated perl-smtp-ssl (1.01 -> 1.04) diff -r 9649fc1e2a4d -r 1e0249731b58 perl-smtp-ssl/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-smtp-ssl/description.txt Sun Jan 02 09:47:51 2022 +0100 @@ -0,0 +1,13 @@ +DEPRECATED! + +Since Net::SMTP v1.28 (2014-10-08), Net::SMTP itself has support for SMTP +over SSL, and also for STARTTLS. +Use Net::SMTP, not Net::SMTP::SSL. + + +Implements the same API as Net::SMTP, but uses IO::Socket::SSL for its +network operations. +Due to the nature of Net::SMTP's new method, it is not overridden to +make use of a default port for the SMTPS service. +Perhaps future versions will be smart like that. +Port 465 is usually what you want, and it's not a pain to specify that. diff -r 9649fc1e2a4d -r 1e0249731b58 perl-smtp-ssl/receipt --- a/perl-smtp-ssl/receipt Sun Jan 02 09:43:23 2022 +0100 +++ b/perl-smtp-ssl/receipt Sun Jan 02 09:47:51 2022 +0100 @@ -1,17 +1,20 @@ # SliTaz package receipt. PACKAGE="perl-smtp-ssl" -VERSION="1.01" +VERSION="1.04" CATEGORY="development" SHORT_DESC="SSL support for Net::SMTP." MAINTAINER="rocky@slitaz.org" LICENSE="GPL" -DEPENDS="perl perl-io-socket-ssl perl-net-ssleay perl-mime-base64 perl-authen-sasl" -BUILD_DEPENDS="perl" +WEB_SITE="https://metacpan.org/pod/Net::SMTP::SSL" +REPOLOGY="perl:net-smtp-ssl" + SOURCE="Net-SMTP-SSL" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/dist/Net-SMTP-SSL" -WGET_URL="https://metacpan.org/CPAN/authors/id/C/CW/CWEST/$TARBALL" +WGET_URL="https://www.cpan.org/modules/by-module/Net/$TARBALL" + +DEPENDS="perl perl-authen-sasl perl-io-socket-ssl perl-mime-base64 perl-net-ssleay" +BUILD_DEPENDS="perl" current_version() { @@ -22,15 +25,13 @@ # Rules to configure and make the package. compile_rules() { - cd $src yes n | 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 }