svn commit: r319337 - in head/devel: . rubygem-murmurhash3
Martin Wilke
miwi at FreeBSD.org
Wed May 29 00:46:28 UTC 2013
Author: miwi
Date: Wed May 29 00:46:26 2013
New Revision: 319337
URL: http://svnweb.freebsd.org/changeset/ports/319337
Log:
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 at googlemail.com>
Added:
head/devel/rubygem-murmurhash3/
head/devel/rubygem-murmurhash3/Makefile (contents, props changed)
head/devel/rubygem-murmurhash3/distinfo (contents, props changed)
head/devel/rubygem-murmurhash3/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Wed May 29 00:44:15 2013 (r319336)
+++ head/devel/Makefile Wed May 29 00:46:26 2013 (r319337)
@@ -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
Added: head/devel/rubygem-murmurhash3/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-murmurhash3/Makefile Wed May 29 00:46:26 2013 (r319337)
@@ -0,0 +1,17 @@
+# Created by: Gvozdikov Veniamin <g.veniamin at googlemail.com>
+# $FreeBSD$
+
+PORTNAME= murmurhash3
+PORTVERSION= 0.1.3
+CATEGORIES= devel rubygems
+MASTER_SITES= RG
+
+MAINTAINER= g.veniamin at 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>
Added: head/devel/rubygem-murmurhash3/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-murmurhash3/distinfo Wed May 29 00:46:26 2013 (r319337)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/murmurhash3-0.1.3.gem) = 5557fa1bc70df6bb4ad8204a3d6334b883fa72cf90297cecee0d9c5026377d6d
+SIZE (rubygem/murmurhash3-0.1.3.gem) = 8192
Added: head/devel/rubygem-murmurhash3/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/rubygem-murmurhash3/pkg-descr Wed May 29 00:46:26 2013 (r319337)
@@ -0,0 +1,3 @@
+This is an implementation of MurmurHash3 - noncriptographic hash function.
+
+WWW: https://github.com/funny-falcon/murmurhash3-ruby
More information about the svn-ports-all
mailing list