From owner-svn-ports-head@freebsd.org Fri Oct 9 13:14:11 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 D11049D25A8; Fri, 9 Oct 2015 13:14:11 +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 908861CFD; Fri, 9 Oct 2015 13:14:11 +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 t99DEAB8062997; Fri, 9 Oct 2015 13:14:10 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99DEAZp062993; Fri, 9 Oct 2015 13:14:10 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201510091314.t99DEAZp062993@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:14:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398911 - in head/devel: . rubygem-apipie-params 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:14:12 -0000 Author: mmoll Date: Fri Oct 9 13:14:10 2015 New Revision: 398911 URL: https://svnweb.freebsd.org/changeset/ports/398911 Log: new port: devel/rubygem-apipie-params DSL for Hash/JSON descriptions. Allows description of hash formats using Ruby code, generating a json-schema for it and validating values against it. It's based on the DSL of apipie-rails. WWW: https://github.com/iNecas/apipie-params Added: head/devel/rubygem-apipie-params/ head/devel/rubygem-apipie-params/Makefile (contents, props changed) head/devel/rubygem-apipie-params/distinfo (contents, props changed) head/devel/rubygem-apipie-params/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 13:10:52 2015 (r398910) +++ head/devel/Makefile Fri Oct 9 13:14:10 2015 (r398911) @@ -4596,6 +4596,7 @@ SUBDIR += rubygem-annoy SUBDIR += rubygem-ansi SUBDIR += rubygem-apipie-bindings + SUBDIR += rubygem-apipie-params SUBDIR += rubygem-app_config SUBDIR += rubygem-arrayfields SUBDIR += rubygem-ascii85 Added: head/devel/rubygem-apipie-params/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-apipie-params/Makefile Fri Oct 9 13:14:10 2015 (r398911) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= apipie-params +PORTVERSION= 0.0.4 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mmoll@FreeBSD.org +COMMENT= DSL for describing data structures with json-schema bindings + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/MIT-LICENSE + +NO_ARCH= yes + +USE_RAKE= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-apipie-params/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-apipie-params/distinfo Fri Oct 9 13:14:10 2015 (r398911) @@ -0,0 +1,2 @@ +SHA256 (rubygem/apipie-params-0.0.4.gem) = 2b6235b54f6b5cb8a5ca90fe2ebcc851adf4a346a99c71370839b9ab54d8563f +SIZE (rubygem/apipie-params-0.0.4.gem) = 10240 Added: head/devel/rubygem-apipie-params/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-apipie-params/pkg-descr Fri Oct 9 13:14:10 2015 (r398911) @@ -0,0 +1,6 @@ +DSL for Hash/JSON descriptions. Allows description of hash formats using Ruby +code, generating a json-schema for it and validating values against it. + +It's based on the DSL of apipie-rails. + +WWW: https://github.com/iNecas/apipie-params