wok-current rev 24236
updated perl-lwp-protocol-https (6.07 -> 6.10)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 07:09:29 2022 +0100 (2022-01-02) |
parents | 53660c632117 |
children | c09183e8534a |
files | perl-lwp-protocol-https/description.txt perl-lwp-protocol-https/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-lwp-protocol-https/description.txt Sun Jan 02 07:09:29 2022 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +The LWP::Protocol::https module provides support for using https schemed 1.5 +URLs with LWP. 1.6 +This module is a plug-in to the LWP protocol handling, so you don't use it 1.7 +directly. Once the module is installed LWP is able to access sites using 1.8 +HTTP over SSL/TLS. 1.9 + 1.10 +If hostname verification is requested by LWP::UserAgent's ssl_opts, 1.11 +and neither SSL_ca_file nor SSL_ca_path is set, then SSL_ca_file is implied 1.12 +to be the one provided by Mozilla::CA. 1.13 +If the Mozilla::CA module isn't available SSL requests will fail. 1.14 +Either install this module, set up an alternative SSL_ca_file or disable 1.15 +hostname verification. 1.16 + 1.17 +This module used to be bundled with the libwww-perl, but it was unbundled 1.18 +in v6.02 in order to be able to declare its dependencies properly for the 1.19 +CPAN tool-chain. 1.20 +Applications that need https support can just declare their dependency on 1.21 +LWP::Protocol::https and will no longer need to know what underlying modules 1.22 +to install.
2.1 --- a/perl-lwp-protocol-https/receipt Sun Jan 02 07:05:50 2022 +0100 2.2 +++ b/perl-lwp-protocol-https/receipt Sun Jan 02 07:09:29 2022 +0100 2.3 @@ -1,17 +1,18 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-lwp-protocol-https" 2.7 -VERSION="6.07" 2.8 +VERSION="6.10" 2.9 CATEGORY="development" 2.10 SHORT_DESC="LWP::Protocol::https module is a Perl extension." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL" 2.13 +WEB_SITE="https://metacpan.org/pod/LWP::Protocol::https" 2.14 +REPOLOGY="perl:lwp-protocol-https" 2.15 +SOURCE="LWP-Protocol-https" 2.16 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.17 +WGET_URL="https://www.cpan.org/modules/by-module/LWP/$TARBALL" 2.18 DEPENDS="libwww-perl perl-io-socket-ssl" 2.19 BUILD_DEPENDS="$DEPENDS" 2.20 -SOURCE="LWP-Protocol-https" 2.21 -TARBALL="$SOURCE-$VERSION.tar.gz" 2.22 -WEB_SITE="https://metacpan.org/dist/LWP-Protocol-https" 2.23 -WGET_URL="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/$TARBALL" 2.24 2.25 current_version() 2.26 { 2.27 @@ -24,12 +25,11 @@ 2.28 { 2.29 perl Makefile.PL && 2.30 make && 2.31 - make DESTDIR=$DESTDIR install 2.32 + make install DESTDIR=$DESTDIR 2.33 } 2.34 2.35 # Rules to gen a SliTaz package suitable for Tazpkg. 2.36 genpkg_rules() 2.37 { 2.38 - mkdir -p $fs/usr 2.39 - cp -a $install/usr/lib $fs/usr 2.40 + cook_copy_folders lib 2.41 }