diff options
-rw-r--r-- | security/p5-Crypt-ECB/Makefile | 6 | ||||
-rw-r--r-- | security/p5-Crypt-ECB/distinfo | 4 | ||||
-rw-r--r-- | security/p5-Crypt-ECB/files/patch-ECB.pm | 11 |
3 files changed, 3 insertions, 18 deletions
diff --git a/security/p5-Crypt-ECB/Makefile b/security/p5-Crypt-ECB/Makefile index 3232efabb65d..fee79b050aaa 100644 --- a/security/p5-Crypt-ECB/Makefile +++ b/security/p5-Crypt-ECB/Makefile @@ -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 diff --git a/security/p5-Crypt-ECB/distinfo b/security/p5-Crypt-ECB/distinfo index 035688350d24..3e465e572a91 100644 --- a/security/p5-Crypt-ECB/distinfo +++ b/security/p5-Crypt-ECB/distinfo @@ -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 diff --git a/security/p5-Crypt-ECB/files/patch-ECB.pm b/security/p5-Crypt-ECB/files/patch-ECB.pm deleted file mode 100644 index 8a411655aa96..000000000000 --- a/security/p5-Crypt-ECB/files/patch-ECB.pm +++ /dev/null @@ -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; - |