svn commit: r338441 - in head/sysutils: . rubygem-rubyimpi

Martin Matuska mm at FreeBSD.org
Thu Jan 2 13:38:09 UTC 2014


Author: mm
Date: Thu Jan  2 13:38:08 2014
New Revision: 338441
URL: http://svnweb.freebsd.org/changeset/ports/338441

Log:
  Rubyipmi gem is a ruby wrapper for the freeipmi and ipmitool command line tools.
  It provides a ruby implementation of ipmi commands that will make it simple to
  connect to BMC devices from ruby.
  
  WWW: https://github.com/logicminds/rubyipmi

Added:
  head/sysutils/rubygem-rubyimpi/
  head/sysutils/rubygem-rubyimpi/Makefile   (contents, props changed)
  head/sysutils/rubygem-rubyimpi/distinfo   (contents, props changed)
  head/sysutils/rubygem-rubyimpi/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Thu Jan  2 13:16:19 2014	(r338440)
+++ head/sysutils/Makefile	Thu Jan  2 13:38:08 2014	(r338441)
@@ -822,6 +822,7 @@
     SUBDIR += rubygem-murder
     SUBDIR += rubygem-ohai
     SUBDIR += rubygem-parallel
+    SUBDIR += rubygem-rubyimpi
     SUBDIR += rubygem-sys-admin
     SUBDIR += rubygem-sys-cpu
     SUBDIR += rubygem-sys-filesystem

Added: head/sysutils/rubygem-rubyimpi/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rubygem-rubyimpi/Makefile	Thu Jan  2 13:38:08 2014	(r338441)
@@ -0,0 +1,20 @@
+# Created by: Martin Matuska <mm at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	rubyipmi
+PORTVERSION=	0.7.0
+CATEGORIES=	sysutils rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Command line wrapper for ipmitool and freeipmi
+
+LICENSE=	GPLv3
+
+RUN_DEPENDS=	${LOCALBASE}/bin/bmc-device:${PORTSDIR}/sysutils/freeipmi
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/sysutils/rubygem-rubyimpi/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rubygem-rubyimpi/distinfo	Thu Jan  2 13:38:08 2014	(r338441)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/rubyipmi-0.7.0.gem) = 5b8c00fabb182e913b2586e46dad25eb046517eeb5911b81af4022175c8e6ede
+SIZE (rubygem/rubyipmi-0.7.0.gem) = 45568

Added: head/sysutils/rubygem-rubyimpi/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/rubygem-rubyimpi/pkg-descr	Thu Jan  2 13:38:08 2014	(r338441)
@@ -0,0 +1,5 @@
+Rubyipmi gem is a ruby wrapper for the freeipmi and ipmitool command line tools.
+It provides a ruby implementation of ipmi commands that will make it simple to
+connect to BMC devices from ruby.
+
+WWW: https://github.com/logicminds/rubyipmi


More information about the svn-ports-all mailing list