From owner-svn-ports-all@FreeBSD.ORG Sat May 16 19:50:37 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7F82C36; Sat, 16 May 2015 19:50:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 897AA1C39; Sat, 16 May 2015 19:50:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4GJobFx063448; Sat, 16 May 2015 19:50:37 GMT (envelope-from mmoll@FreeBSD.org) Received: (from mmoll@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4GJoaUG062307; Sat, 16 May 2015 19:50:36 GMT (envelope-from mmoll@FreeBSD.org) Message-Id: <201505161950.t4GJoaUG062307@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mmoll set sender to mmoll@FreeBSD.org using -f From: Michael Moll Date: Sat, 16 May 2015 19:50:36 +0000 (UTC) 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 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: Sat, 16 May 2015 19:50:37 -0000 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 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 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