Update to 1.40.

This commit is contained in:
Anton Berezin 2005-03-09 07:40:51 +00:00
parent e1488c530f
commit bf425f74f1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=130686
3 changed files with 3 additions and 18 deletions

View File

@ -6,19 +6,15 @@
#
PORTNAME= Crypt-ECB
PORTVERSION= 1.1p2
PORTREVISION= 1
PORTVERSION= 1.40
CATEGORIES= security perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Crypt
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:S/p/-/}
MAINTAINER= tobez@FreeBSD.org
COMMENT= Perl module implementing the ECB encryption algorithm
WRKSRC= ${WRKDIR}/${DISTNAME:S/-2//}
PERL_CONFIGURE= yes
MAN3= Crypt::ECB.3

View File

@ -1,2 +1,2 @@
MD5 (Crypt-ECB-1.1-2.tar.gz) = 8c15a093e500abdd3ac24ca199fae7b9
SIZE (Crypt-ECB-1.1-2.tar.gz) = 14203
MD5 (Crypt-ECB-1.40.tar.gz) = 1f89e3a43271f831718ce9ff7dd9443b
SIZE (Crypt-ECB-1.40.tar.gz) = 14252

View File

@ -1,11 +0,0 @@
--- ECB.pm.orig Mon Dec 27 11:05:33 2004
+++ ECB.pm Mon Dec 27 11:06:45 2004
@@ -274,7 +274,7 @@ sub finish (\$)
$crypt->{Mode} = '';
$crypt->{buffer} = '';
- return '' unless $data;
+ return '' unless defined($data) && length($data) > 0;
my $cipher = $crypt->_getcipher;