From owner-svn-ports-all@FreeBSD.ORG Sun Jun 23 20:49:40 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5DAAF14A; Sun, 23 Jun 2013 20:49:40 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 357451CE7; Sun, 23 Jun 2013 20:49:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r5NKneIn075112; Sun, 23 Jun 2013 20:49:40 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r5NKndoM075107; Sun, 23 Jun 2013 20:49:39 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201306232049.r5NKndoM075107@svn.freebsd.org> From: Steve Wills Date: Sun, 23 Jun 2013 20:49:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321656 - in head/textproc: . rubygem-loggability 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.14 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: Sun, 23 Jun 2013 20:49:40 -0000 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 +# $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 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