summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2001-03-16 14:59:20 +0000
committeragc <agc@pkgsrc.org>2001-03-16 14:59:20 +0000
commit7991a61be88cbc5c3a32552c257808cf93cf5653 (patch)
tree93fb867a1c8230f1c2f658dddb6add84c4cca858
parent444a0ad4b33176af556ba08c951422a3d0a3a659 (diff)
downloadpkgsrc-7991a61be88cbc5c3a32552c257808cf93cf5653.tar.gz
The p5-MD5 package has been superceded by p5-Digest-MD5.
Fixes PR 11649, from Christoph Badura. "p5-MD and p5-Digest-MD5 conflict with each other. Apparently p5-Digest-MD5 implements an backwards compatible API. Having two modules that implement the same API is highly undesirable."
-rw-r--r--security/p5-MD5/Makefile22
-rw-r--r--security/p5-MD5/files/md53
-rw-r--r--security/p5-MD5/pkg/DESCR40
-rw-r--r--security/p5-MD5/pkg/PLIST1
4 files changed, 0 insertions, 66 deletions
diff --git a/security/p5-MD5/Makefile b/security/p5-MD5/Makefile
deleted file mode 100644
index 17c64c750fa..00000000000
--- a/security/p5-MD5/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-# $NetBSD: Makefile,v 1.12 2001/02/17 17:49:59 wiz Exp $
-# FreeBSD Id: Makefile,v 1.7 1997/06/24 18:43:23 jfitz Exp
-#
-
-DISTNAME= MD5-1.7
-PKGNAME= p5-MD5-1.7
-CATEGORIES= security perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MD5/}
-
-MAINTAINER= packages@netbsd.org
-HOMEPAGE= http://theory.uwinnipeg.ca/CPAN/data/MD5/MD5.html
-COMMENT= perl5 interface to the RSA Data Security Inc. MD5 algorithm
-
-CONFLICTS+= p5-Digest-MD5-[0-9]*
-
-USE_PERL5= # defined
-PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/MD5/.packlist
-
-do-configure:
- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/security/p5-MD5/files/md5 b/security/p5-MD5/files/md5
deleted file mode 100644
index 7b85f745031..00000000000
--- a/security/p5-MD5/files/md5
+++ /dev/null
@@ -1,3 +0,0 @@
-$NetBSD: md5,v 1.2 1998/08/07 13:27:36 agc Exp $
-
-MD5 (MD5-1.7.tar.gz) = 92b07ec19be88163613dde69939eb48a
diff --git a/security/p5-MD5/pkg/DESCR b/security/p5-MD5/pkg/DESCR
deleted file mode 100644
index 1ac4d065d20..00000000000
--- a/security/p5-MD5/pkg/DESCR
+++ /dev/null
@@ -1,40 +0,0 @@
- The MD5 module allows you to use the RSA Data Security
- Inc. MD5 Message Digest algorithm from within Perl
- programs.
-
- A new MD5 context object is created with the new
- operation. Multiple simultaneous digest contexts can be
- maintained, if desired. The context is updated with the
- add operation which adds the strings contained in the LIST
- parameter. Note, however, that add('foo', 'bar'),
- add('foo') followed by add('bar') and add('foobar') should
- all give the same result.
-
- The final message digest value is returned by the digest
- operation as a 16-byte binary string. This operation
- delivers the result of add operations since the last new
- or reset operation. Note that the digest operation is
- effectively a destructive, read-once operation. Once it
- has been performed, the context must be reset before being
- used to calculate another digest value.
-
- Several convenience functions are also provided. The
- addfile operation takes an open file-handle and reads it
- until end-of file in 1024 byte blocks adding the contents
- to the context. The file-handle can either be specified by
- name or passed as a type-glob reference, as shown in the
- examples below. The hexdigest operation calls digest and
- returns the result as a printable string of hexdecimal
- digits. This is exactly the same operation as performed by
- the unpack operation in the examples below.
-
- The hash operation can act as either a static member
- function (ie you invoke it on the MD5 class as in the
- synopsis above) or as a normal virtual function. In both
- cases it performs the complete MD5 cycle (reset, add,
- digest) on the supplied scalar value. This is convenient
- for handling small quantities of data. When invoked on the
- class a temporary context is created. When invoked through
- an already created context object, this context is used.
- The latter form is slightly more efficient. The hexhash
- operation is analogous to hexdigest.
diff --git a/security/p5-MD5/pkg/PLIST b/security/p5-MD5/pkg/PLIST
deleted file mode 100644
index da3fd99fd9c..00000000000
--- a/security/p5-MD5/pkg/PLIST
+++ /dev/null
@@ -1 +0,0 @@
-@comment $NetBSD: PLIST,v 1.3 2000/08/27 07:11:20 jlam Exp $