wok rev 24251

updated perl-smtp-ssl (1.01 -> 1.04)
author Hans-G?nter Theisgen
date Sun Jan 02 09:47:51 2022 +0100 (2022-01-02)
parents 9649fc1e2a4d
children 9645753904c8
files perl-smtp-ssl/description.txt perl-smtp-ssl/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-smtp-ssl/description.txt	Sun Jan 02 09:47:51 2022 +0100
     1.3 @@ -0,0 +1,13 @@
     1.4 +DEPRECATED!
     1.5 +
     1.6 +Since Net::SMTP v1.28 (2014-10-08), Net::SMTP itself has support for SMTP
     1.7 +over SSL, and also for STARTTLS.
     1.8 +Use Net::SMTP, not Net::SMTP::SSL.
     1.9 +
    1.10 +
    1.11 +Implements the same API as Net::SMTP, but uses IO::Socket::SSL for its
    1.12 +network operations.
    1.13 +Due to the nature of Net::SMTP's new method, it is not overridden to
    1.14 +make use of a default port for the SMTPS service.
    1.15 +Perhaps future versions will be smart like that.
    1.16 +Port 465 is usually what you want, and it's not a pain to specify that.
     2.1 --- a/perl-smtp-ssl/receipt	Sun Jan 02 09:43:23 2022 +0100
     2.2 +++ b/perl-smtp-ssl/receipt	Sun Jan 02 09:47:51 2022 +0100
     2.3 @@ -1,17 +1,20 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-smtp-ssl"
     2.7 -VERSION="1.01"
     2.8 +VERSION="1.04"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="SSL support for Net::SMTP."
    2.11  MAINTAINER="rocky@slitaz.org"
    2.12  LICENSE="GPL"
    2.13 -DEPENDS="perl perl-io-socket-ssl perl-net-ssleay perl-mime-base64 perl-authen-sasl"
    2.14 -BUILD_DEPENDS="perl"
    2.15 +WEB_SITE="https://metacpan.org/pod/Net::SMTP::SSL"
    2.16 +REPOLOGY="perl:net-smtp-ssl"
    2.17 +
    2.18  SOURCE="Net-SMTP-SSL"
    2.19  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.20 -WEB_SITE="https://metacpan.org/dist/Net-SMTP-SSL"
    2.21 -WGET_URL="https://metacpan.org/CPAN/authors/id/C/CW/CWEST/$TARBALL"
    2.22 +WGET_URL="https://www.cpan.org/modules/by-module/Net/$TARBALL"
    2.23 +
    2.24 +DEPENDS="perl perl-authen-sasl perl-io-socket-ssl perl-mime-base64 perl-net-ssleay"
    2.25 +BUILD_DEPENDS="perl"
    2.26  
    2.27  current_version()
    2.28  {
    2.29 @@ -22,15 +25,13 @@
    2.30  # Rules to configure and make the package.
    2.31  compile_rules()
    2.32  {
    2.33 -	cd $src
    2.34  	yes n | perl Makefile.PL &&
    2.35  	make &&
    2.36 -	make DESTDIR=$DESTDIR install
    2.37 +	make install DESTDIR=$DESTDIR
    2.38  }
    2.39  
    2.40  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.41  genpkg_rules()
    2.42  {
    2.43 -	mkdir -p $fs/usr
    2.44 -	cp -a $install/usr/lib $fs/usr
    2.45 +	cook_copy_folders	lib
    2.46  }