wok rev 24201

updated perl-digest-md5 (2.55 -> 2.58)
author Hans-G?nter Theisgen
date Fri Dec 31 15:19:54 2021 +0100 (2021-12-31)
parents 62abd6ffd5b0
children 81bba537d500
files perl-digest-md5/description.txt perl-digest-md5/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/perl-digest-md5/description.txt	Fri Dec 31 15:19:54 2021 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +The Digest::MD5 module allows you to use the RSA Data Security Inc.
     1.5 +MD5 Message Digest algorithm from within Perl programs.
     1.6 +The algorithm takes as input a message of arbitrary length and
     1.7 +produces as output a 128-bit "fingerprint" or "message digest"
     1.8 +of the input.
     1.9 +
    1.10 +Note that the MD5 algorithm is not as strong as it used to be.
    1.11 +It has since 2005 been easy to generate different messages that
    1.12 +produce the same MD5 digest.
    1.13 +It still seems hard to generate messages that produce a given digest,
    1.14 +but it is probably wise to move to stronger algorithms for applications
    1.15 +that depend on the digest to uniquely identify a message.
    1.16 +
    1.17 +The Digest::MD5 module provides a procedural interface for simple use,
    1.18 +as well as an object oriented interface that can handle messages of
    1.19 +arbitrary length and which can read files directly.
     2.1 --- a/perl-digest-md5/receipt	Fri Dec 31 15:16:37 2021 +0100
     2.2 +++ b/perl-digest-md5/receipt	Fri Dec 31 15:19:54 2021 +0100
     2.3 @@ -1,12 +1,13 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="perl-digest-md5"
     2.7 -VERSION="2.55"
     2.8 +VERSION="2.58"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Perl extension Digest::MD5::Perl - Perl implementation of Ron Rivests MD5 Algorithm."
    2.11  MAINTAINER="slaxemulator@gmail.com"
    2.12  LICENSE="GPL"
    2.13 -WEB_SITE="https://metacpan.org/release/Digest-MD5"
    2.14 +WEB_SITE="https://metacpan.org/pod/Digest::MD5"
    2.15 +REPOLOGY="perl:digest-md5"
    2.16  
    2.17  SOURCE="Digest-MD5"
    2.18  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.19 @@ -26,12 +27,11 @@
    2.20  {
    2.21  	perl Makefile.PL &&
    2.22  	make &&
    2.23 -	make DESTDIR=$DESTDIR install
    2.24 +	make install DESTDIR=$DESTDIR
    2.25  }
    2.26  
    2.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.28  genpkg_rules()
    2.29  {
    2.30 -	mkdir -p $fs/usr
    2.31 -	cp -a $install/usr/lib	$fs/usr
    2.32 +	cook_copy_folders	lib
    2.33  }