svn commit: r321856 - in head/devel: . rubygem-structured_warnings

Martin Wilke miwi at FreeBSD.org
Thu Jun 27 06:59:31 UTC 2013


Author: miwi
Date: Thu Jun 27 06:59:30 2013
New Revision: 321856
URL: http://svnweb.freebsd.org/changeset/ports/321856

Log:
  This is an implementation of Daniel Berger's proposal of structured warnings
  for Ruby.  They provide dynamic suppression and activation, as well as,
  an inheritance hierarchy to model their relations. This library preserves
  the old warn signature, but additionally allows a raise-like use.
  
  WWW: https://github.com/schmidt/structured_warnings
  
  PR:		ports/179251
  Submitted by:	Mikhail T. <m.tsatsenko at gmail.com>

Added:
  head/devel/rubygem-structured_warnings/
  head/devel/rubygem-structured_warnings/Makefile   (contents, props changed)
  head/devel/rubygem-structured_warnings/distinfo   (contents, props changed)
  head/devel/rubygem-structured_warnings/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Thu Jun 27 06:58:33 2013	(r321855)
+++ head/devel/Makefile	Thu Jun 27 06:59:30 2013	(r321856)
@@ -4210,6 +4210,7 @@
     SUBDIR += rubygem-stream
     SUBDIR += rubygem-streetaddress
     SUBDIR += rubygem-stringex
+    SUBDIR += rubygem-structured_warnings
     SUBDIR += rubygem-subexec
     SUBDIR += rubygem-sugar-high
     SUBDIR += rubygem-sumbur

Added: head/devel/rubygem-structured_warnings/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-structured_warnings/Makefile	Thu Jun 27 06:59:30 2013	(r321856)
@@ -0,0 +1,16 @@
+# Created by: Mikhail T. <m.tsatsenko at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	structured_warnings
+PORTVERSION=	0.1.4
+CATEGORIES=	devel rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby at FreeBSD.org
+COMMENT=	Implementation of structured warnings for Ruby
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/devel/rubygem-structured_warnings/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-structured_warnings/distinfo	Thu Jun 27 06:59:30 2013	(r321856)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/structured_warnings-0.1.4.gem) = c12949d8b384aea2e88f572a7dce88fcab215c9810db40a2a04326aaddf6376d
+SIZE (rubygem/structured_warnings-0.1.4.gem) = 67072

Added: head/devel/rubygem-structured_warnings/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/rubygem-structured_warnings/pkg-descr	Thu Jun 27 06:59:30 2013	(r321856)
@@ -0,0 +1,6 @@
+This is an implementation of Daniel Berger's proposal of structured warnings 
+for Ruby.  They provide dynamic suppression and activation, as well as, 
+an inheritance hierarchy to model their relations. This library preserves 
+the old warn signature, but additionally allows a raise-like use.
+
+WWW: https://github.com/schmidt/structured_warnings


More information about the svn-ports-all mailing list