svn commit: r445099 - in head/devel: . rubygem-protocol

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Wed Jul 5 23:53:45 UTC 2017


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 <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	protocol
+PORTVERSION=	1.0.1
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	sunpoet at FreeBSD.org
+COMMENT=	Method Protocols for Ruby Classes
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/COPYING
+
+NO_ARCH=	yes
+USE_RUBY=	yes
+USES=		gem
+
+.include <bsd.port.mk>

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


More information about the svn-ports-all mailing list