# HG changeset patch # User Hans-G?nter Theisgen # Date 1641103769 -3600 # Node ID 4fa9aa1999b8692a6466e3450381b2b50827cf04 # Parent 53660c632117013b5e2e24a19c60f9f318970921 updated perl-lwp-protocol-https (6.07 -> 6.10) diff -r 53660c632117 -r 4fa9aa1999b8 perl-lwp-protocol-https/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-lwp-protocol-https/description.txt Sun Jan 02 07:09:29 2022 +0100 @@ -0,0 +1,19 @@ +The LWP::Protocol::https module provides support for using https schemed +URLs with LWP. +This module is a plug-in to the LWP protocol handling, so you don't use it +directly. Once the module is installed LWP is able to access sites using +HTTP over SSL/TLS. + +If hostname verification is requested by LWP::UserAgent's ssl_opts, +and neither SSL_ca_file nor SSL_ca_path is set, then SSL_ca_file is implied +to be the one provided by Mozilla::CA. +If the Mozilla::CA module isn't available SSL requests will fail. +Either install this module, set up an alternative SSL_ca_file or disable +hostname verification. + +This module used to be bundled with the libwww-perl, but it was unbundled +in v6.02 in order to be able to declare its dependencies properly for the +CPAN tool-chain. +Applications that need https support can just declare their dependency on +LWP::Protocol::https and will no longer need to know what underlying modules +to install. diff -r 53660c632117 -r 4fa9aa1999b8 perl-lwp-protocol-https/receipt --- a/perl-lwp-protocol-https/receipt Sun Jan 02 07:05:50 2022 +0100 +++ b/perl-lwp-protocol-https/receipt Sun Jan 02 07:09:29 2022 +0100 @@ -1,17 +1,18 @@ # SliTaz package receipt. PACKAGE="perl-lwp-protocol-https" -VERSION="6.07" +VERSION="6.10" CATEGORY="development" SHORT_DESC="LWP::Protocol::https module is a Perl extension." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" +WEB_SITE="https://metacpan.org/pod/LWP::Protocol::https" +REPOLOGY="perl:lwp-protocol-https" +SOURCE="LWP-Protocol-https" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="https://www.cpan.org/modules/by-module/LWP/$TARBALL" DEPENDS="libwww-perl perl-io-socket-ssl" BUILD_DEPENDS="$DEPENDS" -SOURCE="LWP-Protocol-https" -TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/dist/LWP-Protocol-https" -WGET_URL="https://cpan.metacpan.org/authors/id/O/OA/OALDERS/$TARBALL" current_version() { @@ -24,12 +25,11 @@ { 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 }