From owner-svn-ports-all@freebsd.org Wed Jul 5 23:53:45 2017 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 74B7ED94EDA; Wed, 5 Jul 2017 23:53:45 +0000 (UTC) (envelope-from sunpoet@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 507B4759C8; Wed, 5 Jul 2017 23:53:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v65NriZq073828; Wed, 5 Jul 2017 23:53:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v65NrhYG073824; Wed, 5 Jul 2017 23:53:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201707052353.v65NrhYG073824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 5 Jul 2017 23:53:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r445099 - in head/devel: . rubygem-protocol X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . rubygem-protocol X-SVN-Commit-Revision: 445099 X-SVN-Commit-Repository: ports 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.23 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: Wed, 05 Jul 2017 23:53:45 -0000 Author: sunpoet Date: Wed Jul 5 23:53:43 2017 New Revision: 445099 URL: https://svnweb.freebsd.org/changeset/ports/445099 Log: Add rubygem-protocol 1.0.1 This library offers an implementation of protocols against which you can check the conformity of your classes or instances of your classes. They are a bit like Java Interfaces, but as mixin modules they can also contain already implemented methods. Additionally you can define preconditions/postconditions for methods specified in a protocol. WWW: http://flori.github.io/protocol/ WWW: https://github.com/flori/protocol Added: head/devel/rubygem-protocol/ head/devel/rubygem-protocol/Makefile (contents, props changed) head/devel/rubygem-protocol/distinfo (contents, props changed) head/devel/rubygem-protocol/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jul 5 21:07:39 2017 (r445098) +++ head/devel/Makefile Wed Jul 5 23:53:43 2017 (r445099) @@ -5523,6 +5523,7 @@ SUBDIR += rubygem-progressbar SUBDIR += rubygem-progressbar09 SUBDIR += rubygem-protected_attributes + SUBDIR += rubygem-protocol SUBDIR += rubygem-pry SUBDIR += rubygem-pry-rails SUBDIR += rubygem-pry-remote-em Added: head/devel/rubygem-protocol/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-protocol/Makefile Wed Jul 5 23:53:43 2017 (r445099) @@ -0,0 +1,19 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= protocol +PORTVERSION= 1.0.1 +CATEGORIES= devel rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Method Protocols for Ruby Classes + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +NO_ARCH= yes +USE_RUBY= yes +USES= gem + +.include Added: head/devel/rubygem-protocol/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-protocol/distinfo Wed Jul 5 23:53:43 2017 (r445099) @@ -0,0 +1,3 @@ +TIMESTAMP = 1499297884 +SHA256 (rubygem/protocol-1.0.1.gem) = f8283f17d5e1a5d6104abf65c7a0b277eb49c1d553375328d83a090da2ebe0b9 +SIZE (rubygem/protocol-1.0.1.gem) = 29184 Added: head/devel/rubygem-protocol/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-protocol/pkg-descr Wed Jul 5 23:53:43 2017 (r445099) @@ -0,0 +1,8 @@ +This library offers an implementation of protocols against which you can check +the conformity of your classes or instances of your classes. They are a bit like +Java Interfaces, but as mixin modules they can also contain already implemented +methods. Additionally you can define preconditions/postconditions for methods +specified in a protocol. + +WWW: http://flori.github.io/protocol/ +WWW: https://github.com/flori/protocol