Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Jun 2013 20:49:39 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r321656 - in head/textproc: . rubygem-loggability
Message-ID:  <201306232049.r5NKndoM075107@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Sun Jun 23 20:49:39 2013
New Revision: 321656
URL: http://svnweb.freebsd.org/changeset/ports/321656

Log:
  A composable logging system built on the standard Logger library. You can add
  Loggability to large libraries and systems, then hook everything up later when
  you know where you want logs to be written, at what level of severity, and in
  which format.
  
  WWW: http://deveiate.org/projects/loggability

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Sun Jun 23 20:45:14 2013	(r321655)
+++ head/textproc/Makefile	Sun Jun 23 20:49:39 2013	(r321656)
@@ -1303,6 +1303,7 @@
     SUBDIR += rubygem-libxml-ruby
     SUBDIR += rubygem-linguistics
     SUBDIR += rubygem-liquid
+    SUBDIR += rubygem-loggability
     SUBDIR += rubygem-loofah
     SUBDIR += rubygem-ltsv
     SUBDIR += rubygem-markaby

Added: head/textproc/rubygem-loggability/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/rubygem-loggability/Makefile	Sun Jun 23 20:49:39 2013	(r321656)
@@ -0,0 +1,16 @@
+# Created by: Steve Wills <swills@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	loggability
+PORTVERSION=	0.6.1
+CATEGORIES=	textproc rubygems
+MASTER_SITES=	RG
+
+MAINTAINER=	ruby@FreeBSD.org
+COMMENT=	A composable logging system built on the standard Logger library
+
+USE_RUBY=	yes
+USE_RUBYGEMS=	yes
+RUBYGEM_AUTOPLIST=	yes
+
+.include <bsd.port.mk>

Added: head/textproc/rubygem-loggability/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/rubygem-loggability/distinfo	Sun Jun 23 20:49:39 2013	(r321656)
@@ -0,0 +1,2 @@
+SHA256 (rubygem/loggability-0.6.1.gem) = bb39d3cbcbe6698e3c9bffd8815536acf98f73d71f135191e1b7e6f58e4897cb
+SIZE (rubygem/loggability-0.6.1.gem) = 26624

Added: head/textproc/rubygem-loggability/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/rubygem-loggability/pkg-descr	Sun Jun 23 20:49:39 2013	(r321656)
@@ -0,0 +1,6 @@
+A composable logging system built on the standard Logger library. You can add
+Loggability to large libraries and systems, then hook everything up later when
+you know where you want logs to be written, at what level of severity, and in
+which format.
+
+WWW: http://deveiate.org/projects/loggability



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306232049.r5NKndoM075107>