svn commit: r425059 - in head/devel: . rubygem-micromachine

Steve Wills swills at FreeBSD.org
Tue Nov 1 16:48:16 UTC 2016


Author: swills
Date: Tue Nov  1 16:48:14 2016
New Revision: 425059
URL: https://svnweb.freebsd.org/changeset/ports/425059

Log:
  devel/rubygem-micromachine: create port
  
  There are many finite state machine implementations for Ruby, and they all
  provide a nice DSL for declaring events, exceptions, callbacks, and all kinds
  of niceties in general.
  
  But if all you want is a finite state machine, look no further: this has less
  than 50 lines of code and provides everything a finite state machine must have,
  and nothing more.
  
  WWW: http://github.com/soveran/micromachine

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Nov  1 16:21:46 2016	(r425058)
+++ head/devel/Makefile	Tue Nov  1 16:48:14 2016	(r425059)
@@ -5142,6 +5142,7 @@
     SUBDIR += rubygem-metaid
     SUBDIR += rubygem-metasm
     SUBDIR += rubygem-method_source
+    SUBDIR += rubygem-micromachine
     SUBDIR += rubygem-minitest
     SUBDIR += rubygem-minitest4
     SUBDIR += rubygem-mixlib-authentication

Added: head/devel/rubygem-micromachine/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-micromachine/Makefile	Tue Nov  1 16:48:14 2016	(r425059)
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+PORTNAME=	micromachine
+PORTVERSION=	2.0.0
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Minimal Finite State Machine
+
+USE_RUBY=	yes
+USES=		gem
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-micromachine/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-micromachine/distinfo	Tue Nov  1 16:48:14 2016	(r425059)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1478007628
+SHA256 (rubygem/micromachine-2.0.0.gem) = a8aa5747ac1e6817375b8370139e7e3982aef4f56108ea7545d9288a076a3908
+SIZE (rubygem/micromachine-2.0.0.gem) = 8192

Added: head/devel/rubygem-micromachine/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-micromachine/pkg-descr	Tue Nov  1 16:48:14 2016	(r425059)
@@ -0,0 +1,9 @@
+There are many finite state machine implementations for Ruby, and they all
+provide a nice DSL for declaring events, exceptions, callbacks, and all kinds
+of niceties in general.
+
+But if all you want is a finite state machine, look no further: this has less
+than 50 lines of code and provides everything a finite state machine must have,
+and nothing more.
+
+WWW: http://github.com/soveran/micromachine


More information about the svn-ports-all mailing list