svn commit: r386573 - in head/devel: . rubygem-attr_required
Michael Moll
mmoll at FreeBSD.org
Sat May 16 19:50:37 UTC 2015
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 at 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 at 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
More information about the svn-ports-all
mailing list