svn commit: r401751 - in head/devel: . rubygem-configstruct

Marcelo Araujo araujo at FreeBSD.org
Mon Nov 16 04:07:32 UTC 2015


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 <mose at gandi.net>
  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 at 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 <bsd.port.mk>

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


More information about the svn-ports-all mailing list