# HG changeset patch # User Hans-G?nter Theisgen # Date 1641104185 -3600 # Node ID 1cd78f74c2f3a2119128a8d5a85025db498b2752 # Parent c09183e8534a69eb1e9d4d00de6c853fd00f17ee updated perl-mime-base64 (3.15 -> 3.16) diff -r c09183e8534a -r 1cd78f74c2f3 perl-mime-base64/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-mime-base64/description.txt Sun Jan 02 07:16:25 2022 +0100 @@ -0,0 +1,7 @@ +This module provides functions to encode and decode strings into and from +the base64 encoding specified in RFC 2045 - MIME +(Multipurpose Internet Mail Extensions). +The base64 encoding is designed to represent arbitrary sequences of octets +in a form that need not be humanly readable. +A 65-character subset ([A-Za-z0-9+/=]) of US-ASCII is used, enabling 6 bits +to be represented per printable character. diff -r c09183e8534a -r 1cd78f74c2f3 perl-mime-base64/receipt --- a/perl-mime-base64/receipt Sun Jan 02 07:13:31 2022 +0100 +++ b/perl-mime-base64/receipt Sun Jan 02 07:16:25 2022 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="perl-mime-base64" -VERSION="3.15" +VERSION="3.16" CATEGORY="development" SHORT_DESC="Perl extension MIME::Base64." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/MIME-Base64" +WEB_SITE="https://metacpan.org/pod/MIME::Base64" +REPOLOGY="perl:mime-base64" SOURCE="MIME-Base64" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://cpan.metacpan.org/authors/id/G/GA/GAAS/$TARBALL" +WGET_URL="https://www.cpan.org/modules/by-module/MIME/$TARBALL" DEPENDS="perl" BUILD_DEPENDS="perl" @@ -26,12 +27,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 }