From owner-svn-ports-all@freebsd.org Tue Nov 1 16:48:16 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E125C2AAD4; Tue, 1 Nov 2016 16:48:16 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 087AD15F0; Tue, 1 Nov 2016 16:48:15 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA1GmFMK033862; Tue, 1 Nov 2016 16:48:15 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA1GmErV033856; Tue, 1 Nov 2016 16:48:14 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201611011648.uA1GmErV033856@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 1 Nov 2016 16:48:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425059 - in head/devel: . rubygem-micromachine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Nov 2016 16:48:16 -0000 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@FreeBSD.org +COMMENT= Minimal Finite State Machine + +USE_RUBY= yes +USES= gem + +.include 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