mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 21:00:30 -04:00
The murmur hash algorithm by Austin Appleby is an exteremely fast
algorithm that combines both excellent collision resistence and distribution characteristics. WWW: http://search.cpan.org/dist/Digest-MurmurHash/
This commit is contained in:
parent
a151b7a0ad
commit
5e6efc4566
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=288309
5 changed files with 36 additions and 0 deletions
|
@ -497,6 +497,7 @@
|
||||||
SUBDIR += p5-Digest-MD5-M4p
|
SUBDIR += p5-Digest-MD5-M4p
|
||||||
SUBDIR += p5-Digest-MD5-Reverse
|
SUBDIR += p5-Digest-MD5-Reverse
|
||||||
SUBDIR += p5-Digest-ManberHash
|
SUBDIR += p5-Digest-ManberHash
|
||||||
|
SUBDIR += p5-Digest-MurmurHash
|
||||||
SUBDIR += p5-Digest-Nilsimsa
|
SUBDIR += p5-Digest-Nilsimsa
|
||||||
SUBDIR += p5-Digest-Pearson
|
SUBDIR += p5-Digest-Pearson
|
||||||
SUBDIR += p5-Digest-Pearson-PurePerl
|
SUBDIR += p5-Digest-Pearson-PurePerl
|
||||||
|
|
21
security/p5-Digest-MurmurHash/Makefile
Normal file
21
security/p5-Digest-MurmurHash/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# New ports collection makefile for: Digest::MurmurHash
|
||||||
|
# Date created: 31 Dec 2011
|
||||||
|
# Whom: Jun Kuriyama <kuriyama@FreeBSD.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= Digest-MurmurHash
|
||||||
|
PORTVERSION= 0.11
|
||||||
|
CATEGORIES= security perl5
|
||||||
|
MASTER_SITES= CPAN
|
||||||
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
||||||
|
MAINTAINER= kuriyama@FreeBSD.org
|
||||||
|
COMMENT= Perl extension for XS interface to the MurmurHash algorithm
|
||||||
|
|
||||||
|
PERL_CONFIGURE= yes
|
||||||
|
|
||||||
|
MAN3= Digest::MurmurHash.3
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
2
security/p5-Digest-MurmurHash/distinfo
Normal file
2
security/p5-Digest-MurmurHash/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
SHA256 (Digest-MurmurHash-0.11.tar.gz) = 613ee3f2e46d91be28187499faf1aaebfcf4859843b7a4a3c9839d67aed6980f
|
||||||
|
SIZE (Digest-MurmurHash-0.11.tar.gz) = 32635
|
5
security/p5-Digest-MurmurHash/pkg-descr
Normal file
5
security/p5-Digest-MurmurHash/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
The murmur hash algorithm by Austin Appleby is an exteremely fast
|
||||||
|
algorithm that combines both excellent collision resistence and
|
||||||
|
distribution characteristics.
|
||||||
|
|
||||||
|
WWW: http://search.cpan.org/dist/Digest-MurmurHash/
|
7
security/p5-Digest-MurmurHash/pkg-plist
Normal file
7
security/p5-Digest-MurmurHash/pkg-plist
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/MurmurHash/.packlist
|
||||||
|
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/MurmurHash/MurmurHash.bs
|
||||||
|
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/MurmurHash/MurmurHash.so
|
||||||
|
%%SITE_PERL%%/%%PERL_ARCH%%/Digest/MurmurHash.pm
|
||||||
|
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Digest
|
||||||
|
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/MurmurHash
|
||||||
|
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest
|
Loading…
Add table
Reference in a new issue