diff options
author | trociny <trociny@FreeBSD.org> | 2013-12-16 21:15:15 +0000 |
---|---|---|
committer | trociny <trociny@FreeBSD.org> | 2013-12-16 21:15:15 +0000 |
commit | 253105ea035e051f48d037686a3d6faf96236aa6 (patch) | |
tree | d97c926af9831e05d841ca8229f5b7cbd3b40d6e | |
parent | 620846b61fe25263281cd599ff9877f2a41d7f3e (diff) | |
download | FreeBSD-ports-253105ea035e051f48d037686a3d6faf96236aa6.zip FreeBSD-ports-253105ea035e051f48d037686a3d6faf96236aa6.tar.gz |
rubygem-mogilefs-client: MogileFS client library for Ruby [NEW PORT]
MogileFS is an open source distributed filesystem, see: mogilefs.org
for more details. This library allows any Ruby application to read,
write and delete files in a MogileFS instance.
Approved by: bdrewery (mentor)
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/rubygem-mogilefs-client/Makefile | 20 | ||||
-rw-r--r-- | sysutils/rubygem-mogilefs-client/distinfo | 2 | ||||
-rw-r--r-- | sysutils/rubygem-mogilefs-client/pkg-descr | 6 |
4 files changed, 29 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 2de56f5..59c8978 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -816,6 +816,7 @@ SUBDIR += rubygem-hiera-json SUBDIR += rubygem-hiera-puppet SUBDIR += rubygem-log4r + SUBDIR += rubygem-mogilefs-client SUBDIR += rubygem-murder SUBDIR += rubygem-ohai SUBDIR += rubygem-parallel diff --git a/sysutils/rubygem-mogilefs-client/Makefile b/sysutils/rubygem-mogilefs-client/Makefile new file mode 100644 index 0000000..d738ad3 --- /dev/null +++ b/sysutils/rubygem-mogilefs-client/Makefile @@ -0,0 +1,20 @@ +# Created by: Mikolaj Golub <trociny@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= mogilefs-client +PORTVERSION= 3.7.1 +CATEGORIES= sysutils +MASTER_SITES= RG + +MAINTAINER= trociny@FreeBSD.org +COMMENT= MogileFS client library for Ruby + +LICENSE= BSD + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/mog + +.include <bsd.port.mk> diff --git a/sysutils/rubygem-mogilefs-client/distinfo b/sysutils/rubygem-mogilefs-client/distinfo new file mode 100644 index 0000000..6af37cc --- /dev/null +++ b/sysutils/rubygem-mogilefs-client/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/mogilefs-client-3.7.1.gem) = 12b4c9233a6a4f9e11f77870ac0211124bda32f66394d4879883a3fe86420656 +SIZE (rubygem/mogilefs-client-3.7.1.gem) = 121344 diff --git a/sysutils/rubygem-mogilefs-client/pkg-descr b/sysutils/rubygem-mogilefs-client/pkg-descr new file mode 100644 index 0000000..3e4fe3e --- /dev/null +++ b/sysutils/rubygem-mogilefs-client/pkg-descr @@ -0,0 +1,6 @@ +MogileFS is an open source distributed filesystem, see: mogilefs.org +for more details. This library allows any Ruby application to read, +write and delete files in a MogileFS instance. + +Author: Eric Wong <normalperson@yhbt.net> +WWW: http://bogomips.org/mogilefs-client/ |