diff options
author | miwi <miwi@FreeBSD.org> | 2013-05-29 08:46:26 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2013-05-29 08:46:26 +0800 |
commit | d0f8486cd8df167ffb1923d720ef169a2ea8de8d (patch) | |
tree | 923195bc25f964881b6ad906df1df895402596b5 /devel | |
parent | 705ad63f8ea7208744acafa1c56a26b002644256 (diff) | |
download | freebsd-ports-gnome-d0f8486cd8df167ffb1923d720ef169a2ea8de8d.tar.gz freebsd-ports-gnome-d0f8486cd8df167ffb1923d720ef169a2ea8de8d.tar.zst freebsd-ports-gnome-d0f8486cd8df167ffb1923d720ef169a2ea8de8d.zip |
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>
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/rubygem-murmurhash3/Makefile | 17 | ||||
-rw-r--r-- | devel/rubygem-murmurhash3/distinfo | 2 | ||||
-rw-r--r-- | devel/rubygem-murmurhash3/pkg-descr | 3 |
4 files changed, 23 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 6d897ff6f015..4c20e0c6fab2 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -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 diff --git a/devel/rubygem-murmurhash3/Makefile b/devel/rubygem-murmurhash3/Makefile new file mode 100644 index 000000000000..1ead0785267e --- /dev/null +++ b/devel/rubygem-murmurhash3/Makefile @@ -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> diff --git a/devel/rubygem-murmurhash3/distinfo b/devel/rubygem-murmurhash3/distinfo new file mode 100644 index 000000000000..ee7d7ad9ad02 --- /dev/null +++ b/devel/rubygem-murmurhash3/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/murmurhash3-0.1.3.gem) = 5557fa1bc70df6bb4ad8204a3d6334b883fa72cf90297cecee0d9c5026377d6d +SIZE (rubygem/murmurhash3-0.1.3.gem) = 8192 diff --git a/devel/rubygem-murmurhash3/pkg-descr b/devel/rubygem-murmurhash3/pkg-descr new file mode 100644 index 000000000000..f692153031e3 --- /dev/null +++ b/devel/rubygem-murmurhash3/pkg-descr @@ -0,0 +1,3 @@ +This is an implementation of MurmurHash3 - noncriptographic hash function. + +WWW: https://github.com/funny-falcon/murmurhash3-ruby |