wok rev 24238
updated perl-mime-base64 (3.15 -> 3.16)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Jan 02 07:16:25 2022 +0100 (2022-01-02) |
parents | c09183e8534a |
children | 796762f3150a |
files | perl-mime-base64/description.txt perl-mime-base64/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-mime-base64/description.txt Sun Jan 02 07:16:25 2022 +0100 1.3 @@ -0,0 +1,7 @@ 1.4 +This module provides functions to encode and decode strings into and from 1.5 +the base64 encoding specified in RFC 2045 - MIME 1.6 +(Multipurpose Internet Mail Extensions). 1.7 +The base64 encoding is designed to represent arbitrary sequences of octets 1.8 +in a form that need not be humanly readable. 1.9 +A 65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6 bits 1.10 +to be represented per printable character.
2.1 --- a/perl-mime-base64/receipt Sun Jan 02 07:13:31 2022 +0100 2.2 +++ b/perl-mime-base64/receipt Sun Jan 02 07:16:25 2022 +0100 2.3 @@ -1,16 +1,17 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-mime-base64" 2.7 -VERSION="3.15" 2.8 +VERSION="3.16" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Perl extension MIME::Base64." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL" 2.13 -WEB_SITE="https://metacpan.org/release/MIME-Base64" 2.14 +WEB_SITE="https://metacpan.org/pod/MIME::Base64" 2.15 +REPOLOGY="perl:mime-base64" 2.16 2.17 SOURCE="MIME-Base64" 2.18 TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" 2.20 +WGET_URL="https://www.cpan.org/modules/by-module/MIME/$TARBALL" 2.21 2.22 DEPENDS="perl" 2.23 BUILD_DEPENDS="perl" 2.24 @@ -26,12 +27,11 @@ 2.25 { 2.26 perl Makefile.PL && 2.27 make && 2.28 - make DESTDIR=$DESTDIR install 2.29 + make install DESTDIR=$DESTDIR 2.30 } 2.31 2.32 # Rules to gen a SliTaz package suitable for Tazpkg. 2.33 genpkg_rules() 2.34 { 2.35 - mkdir -p $fs/usr 2.36 - cp -a $install/usr/lib $fs/usr 2.37 + cook_copy_folders lib 2.38 }