wok rev 24190
updated perl-crypt-cbc (2.33 -> 3.04)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 14:34:21 2021 +0100 (2021-12-31) |
parents | 047f73e7e39e |
children | f5b60c3a2ab9 |
files | perl-crypt-cbc/description.txt perl-crypt-cbc/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/perl-crypt-cbc/description.txt Fri Dec 31 14:34:21 2021 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +This module is a Perl-only implementation of the cryptographic 1.5 +cipher block chaining mode (CBC). 1.6 +In combination with a block cipher such as AES or Blowfish, 1.7 +you can encrypt and decrypt messages of arbitrarily long length. 1.8 +The encrypted messages are compatible with the encryption format 1.9 +used by the OpenSSL package. 1.10 + 1.11 +To use this module, you will first create a Crypt::CBC cipher 1.12 +object with new(). 1.13 +At the time of cipher creation, you specify an encryption key 1.14 +to use and, optionally, a block encryption algorithm. 1.15 +You will then call the start() method to initialize the encryption 1.16 +or decryption process, crypt() to encrypt or decrypt one or more 1.17 +blocks of data, and lastly finish(), to pad and encrypt the final 1.18 +block. 1.19 +For your convenience, you can call the encrypt() and decrypt() 1.20 +methods to operate on a whole data value at once.
2.1 --- a/perl-crypt-cbc/receipt Fri Dec 31 14:27:15 2021 +0100 2.2 +++ b/perl-crypt-cbc/receipt Fri Dec 31 14:34:21 2021 +0100 2.3 @@ -1,17 +1,20 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="perl-crypt-cbc" 2.7 -VERSION="2.33" 2.8 +VERSION="3.04" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Crypt::CBC module is a Perl extension." 2.11 MAINTAINER="nneul@neulinger.org" 2.12 -LICENSE="Perl" 2.13 +LICENSE="GPL" 2.14 +WEB_SITE="https://metacpan.org/pod/Crypt::CBC" 2.15 +REPOLOGY="perl:crypt-cbc" 2.16 + 2.17 +SOURCE="Crypt-CBC" 2.18 +TARBALL="$SOURCE-$VERSION.tar.gz" 2.19 +WGET_URL="https://cpan.org/authors/id/L/LD/LDS/$TARBALL" 2.20 + 2.21 DEPENDS="perl" 2.22 BUILD_DEPENDS="perl" 2.23 -SOURCE="Crypt-CBC" 2.24 -TARBALL="$SOURCE-$VERSION.tar.gz" 2.25 -WEB_SITE="https://metacpan.org/dist/Crypt-CBC" 2.26 -WGET_URL="http://cpan.org/authors/id/L/LD/LDS/$TARBALL" 2.27 2.28 current_version() 2.29 { 2.30 @@ -22,16 +25,13 @@ 2.31 # Rules to configure and make the package. 2.32 compile_rules() 2.33 { 2.34 - cd $src 2.35 - perl Makefile.PL 2.36 - make 2.37 - make DESTDIR=$DESTDIR install 2.38 + perl Makefile.PL && 2.39 + make && 2.40 + make install DESTDIR=$DESTDIR 2.41 } 2.42 2.43 # Rules to gen a SliTaz package suitable for Tazpkg. 2.44 genpkg_rules() 2.45 { 2.46 - mkdir -p $fs/usr 2.47 - cp -a $install/usr/lib $fs/usr 2.48 + cook_copy_folders lib 2.49 } 2.50 -