Date: Sat, 16 May 2015 19:50:36 +0000 (UTC) From: Michael Moll <mmoll@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386573 - in head/devel: . rubygem-attr_required Message-ID: <201505161950.t4GJoaUG062307@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mmoll Date: Sat May 16 19:50:35 2015 New Revision: 386573 URL: https://svnweb.freebsd.org/changeset/ports/386573 Log: new port: security/rubygem-attr_required This gem provides implementations of attr_required and attr_optional (like attr_accessor) for Ruby. WWW: https://github.com/nov/attr_required PR: 199921 Differential Revision: https://reviews.freebsd.org/D2561 Submitted by: Torsten Zuehlsdorff <ports@toco-domains.de> Approved by: mat (mentor) Added: head/devel/rubygem-attr_required/ head/devel/rubygem-attr_required/Makefile (contents, props changed) head/devel/rubygem-attr_required/distinfo (contents, props changed) head/devel/rubygem-attr_required/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat May 16 19:44:53 2015 (r386572) +++ head/devel/Makefile Sat May 16 19:50:35 2015 (r386573) @@ -4409,6 +4409,7 @@ SUBDIR += rubygem-atomic SUBDIR += rubygem-atoulme-antwrap SUBDIR += rubygem-attic + SUBDIR += rubygem-attr_required SUBDIR += rubygem-authlogic SUBDIR += rubygem-awesome_print SUBDIR += rubygem-axiom-types Added: head/devel/rubygem-attr_required/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-attr_required/Makefile Sat May 16 19:50:35 2015 (r386573) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= attr_required +PORTVERSION= 1.0.0 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Ruby implementations of attr_required and attr_optional + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +post-install: + ${CHMOD} -R go-w ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ + +.include <bsd.port.mk> Added: head/devel/rubygem-attr_required/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-attr_required/distinfo Sat May 16 19:50:35 2015 (r386573) @@ -0,0 +1,2 @@ +SHA256 (rubygem/attr_required-1.0.0.gem) = ac0d5cd4f55bca3acc3f7d1a56f5bf92d9a01a42c21bec8cbc37f177a2505c5d +SIZE (rubygem/attr_required-1.0.0.gem) = 8704 Added: head/devel/rubygem-attr_required/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-attr_required/pkg-descr Sat May 16 19:50:35 2015 (r386573) @@ -0,0 +1,7 @@ +This gem provides implementations of attr_required and attr_optional +(like attr_accessor) for Ruby. + +This can help RFC library developers to define which attributes +are REQUIRED and which are OPTIONAL. + +WWW: https://github.com/nov/attr_required
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505161950.t4GJoaUG062307>