1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

This is an implementation of MurmurHash3 - noncriptographic hash function.

WWW: https://github.com/funny-falcon/murmurhash3-ruby

PR:		ports/178623
Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>
This commit is contained in:
Martin Wilke 2013-05-29 00:46:26 +00:00
parent d07903a74d
commit 9215180e72
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=319337
4 changed files with 23 additions and 0 deletions

View File

@ -4106,6 +4106,7 @@
SUBDIR += rubygem-msgpack
SUBDIR += rubygem-mspec
SUBDIR += rubygem-multi_json
SUBDIR += rubygem-murmurhash3
SUBDIR += rubygem-mutter
SUBDIR += rubygem-ncurses
SUBDIR += rubygem-needle

View File

@ -0,0 +1,17 @@
# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
# $FreeBSD$
PORTNAME= murmurhash3
PORTVERSION= 0.1.3
CATEGORIES= devel rubygems
MASTER_SITES= RG
MAINTAINER= g.veniamin@googlemail.com
COMMENT= Implementation of murmur3 hashing function
RUBY_VER= 1.9
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (rubygem/murmurhash3-0.1.3.gem) = 5557fa1bc70df6bb4ad8204a3d6334b883fa72cf90297cecee0d9c5026377d6d
SIZE (rubygem/murmurhash3-0.1.3.gem) = 8192

View File

@ -0,0 +1,3 @@
This is an implementation of MurmurHash3 - noncriptographic hash function.
WWW: https://github.com/funny-falcon/murmurhash3-ruby