From owner-svn-ports-head@freebsd.org Fri Oct 9 13:10:54 2015 Return-Path: Delivered-To: svn-ports-head@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 366399D2301; Fri, 9 Oct 2015 13:10:54 +0000 (UTC) (envelope-from mmoll@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 E081419D1; Fri, 9 Oct 2015 13:10:53 +0000 (UTC) (envelope-from mmoll@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99DArwM062614; Fri, 9 Oct 2015 13:10:53 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DAqS5062605; Fri, 9 Oct 2015 13:10:52 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091310.t99DAqS5062605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Fri, 9 Oct 2015 13:10:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398910 - in head/devel: . rubygem-algebrick X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 13:10:54 -0000 Author: mmoll Date: Fri Oct 9 13:10:52 2015 New Revision: 398910 URL: https://svnweb.freebsd.org/changeset/ports/398910 Log: new port: devel/rubygem-algebrick Typed structs on steroids based on algebraic types and pattern matching seamlessly integrating with standard Ruby features. WWW: https://github.com/pitr-ch/algebrick Added: head/devel/rubygem-algebrick/ head/devel/rubygem-algebrick/Makefile (contents, props changed) head/devel/rubygem-algebrick/distinfo (contents, props changed) head/devel/rubygem-algebrick/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 12:34:12 2015 (r398909) +++ head/devel/Makefile Fri Oct 9 13:10:52 2015 (r398910) @@ -4589,6 +4589,7 @@ SUBDIR += rubygem-activesupport SUBDIR += rubygem-activesupport4 SUBDIR += rubygem-activesupport41 + SUBDIR += rubygem-algebrick SUBDIR += rubygem-algorithms SUBDIR += rubygem-allison SUBDIR += rubygem-analogger Added: head/devel/rubygem-algebrick/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-algebrick/Makefile Fri Oct 9 13:10:52 2015 (r398910) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= algebrick +PORTVERSION= 0.7.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= Typed structs based on algebraic type definitions + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-algebrick/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-algebrick/distinfo Fri Oct 9 13:10:52 2015 (r398910) @@ -0,0 +1,2 @@ +SHA256 (rubygem/algebrick-0.7.3.gem) = 83d67eff094ed2ca896c44680585d6c8689e73fe3673d6e7fe7e9accabf5c019 +SIZE (rubygem/algebrick-0.7.3.gem) = 26624 Added: head/devel/rubygem-algebrick/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-algebrick/pkg-descr Fri Oct 9 13:10:52 2015 (r398910) @@ -0,0 +1,4 @@ +Typed structs on steroids based on algebraic types and pattern matching +seamlessly integrating with standard Ruby features. + +WWW: https://github.com/pitr-ch/algebrick