From owner-svn-ports-all@freebsd.org Mon Nov 16 04:07:32 2015 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 CAE1BA30B9E; Mon, 16 Nov 2015 04:07:32 +0000 (UTC) (envelope-from araujo@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 7586917DE; Mon, 16 Nov 2015 04:07:32 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAG47VRB029073; Mon, 16 Nov 2015 04:07:31 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAG47VX2029068; Mon, 16 Nov 2015 04:07:31 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201511160407.tAG47VX2029068@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Mon, 16 Nov 2015 04:07:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401751 - in head/devel: . rubygem-configstruct 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.20 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: Mon, 16 Nov 2015 04:07:32 -0000 Author: araujo Date: Mon Nov 16 04:07:30 2015 New Revision: 401751 URL: https://svnweb.freebsd.org/changeset/ports/401751 Log: This gem is a lib for managing configfile for cli applications, including: - call a setup of the config file if it does not exist - edit configuration and update the config file WWW: https://github.com/mose/configstruct PR: ports/204588 Submitted by: mose Sponsored by: gandi.net Added: head/devel/rubygem-configstruct/ head/devel/rubygem-configstruct/Makefile (contents, props changed) head/devel/rubygem-configstruct/distinfo (contents, props changed) head/devel/rubygem-configstruct/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Nov 16 03:50:24 2015 (r401750) +++ head/devel/Makefile Mon Nov 16 04:07:30 2015 (r401751) @@ -4702,6 +4702,7 @@ SUBDIR += rubygem-concurrent-ruby SUBDIR += rubygem-concurrent-ruby-edge SUBDIR += rubygem-configatron + SUBDIR += rubygem-configstruct SUBDIR += rubygem-configuration SUBDIR += rubygem-cool.io SUBDIR += rubygem-crack Added: head/devel/rubygem-configstruct/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-configstruct/Makefile Mon Nov 16 04:07:30 2015 (r401751) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= configstruct +PORTVERSION= 0.1.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= mose@mose.com +COMMENT= Lib for managing config files based on OpenStruct + +LICENSE= MIT + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/devel/rubygem-configstruct/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-configstruct/distinfo Mon Nov 16 04:07:30 2015 (r401751) @@ -0,0 +1,2 @@ +SHA256 (rubygem/configstruct-0.1.0.gem) = b7d9095066bae2f04b988b24277023e85e2c794fa1025f0c7d6d9e9305e094fa +SIZE (rubygem/configstruct-0.1.0.gem) = 8192 Added: head/devel/rubygem-configstruct/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-configstruct/pkg-descr Mon Nov 16 04:07:30 2015 (r401751) @@ -0,0 +1,5 @@ +This gem is a lib for managing configfile for cli applications, including: +- call a setup of the config file if it does not exist +- edit configuration and update the config file + +WWW: https://github.com/mose/configstruct