# HG changeset patch # User Hans-G?nter Theisgen # Date 1640960394 -3600 # Node ID 7a6e7ca4947b68677f926d156751380b3f24a13a # Parent 62abd6ffd5b0179acafe3191789656378ecefcc8 updated perl-digest-md5 (2.55 -> 2.58) diff -r 62abd6ffd5b0 -r 7a6e7ca4947b perl-digest-md5/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-digest-md5/description.txt Fri Dec 31 15:19:54 2021 +0100 @@ -0,0 +1,16 @@ +The Digest::MD5 module allows you to use the RSA Data Security Inc. +MD5 Message Digest algorithm from within Perl programs. +The algorithm takes as input a message of arbitrary length and +produces as output a 128-bit "fingerprint" or "message digest" +of the input. + +Note that the MD5 algorithm is not as strong as it used to be. +It has since 2005 been easy to generate different messages that +produce the same MD5 digest. +It still seems hard to generate messages that produce a given digest, +but it is probably wise to move to stronger algorithms for applications +that depend on the digest to uniquely identify a message. + +The Digest::MD5 module provides a procedural interface for simple use, +as well as an object oriented interface that can handle messages of +arbitrary length and which can read files directly. diff -r 62abd6ffd5b0 -r 7a6e7ca4947b perl-digest-md5/receipt --- a/perl-digest-md5/receipt Fri Dec 31 15:16:37 2021 +0100 +++ b/perl-digest-md5/receipt Fri Dec 31 15:19:54 2021 +0100 @@ -1,12 +1,13 @@ # SliTaz package receipt. PACKAGE="perl-digest-md5" -VERSION="2.55" +VERSION="2.58" CATEGORY="development" SHORT_DESC="Perl extension Digest::MD5::Perl - Perl implementation of Ron Rivests MD5 Algorithm." MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/Digest-MD5" +WEB_SITE="https://metacpan.org/pod/Digest::MD5" +REPOLOGY="perl:digest-md5" SOURCE="Digest-MD5" TARBALL="$SOURCE-$VERSION.tar.gz" @@ -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 }