From owner-svn-ports-head@FreeBSD.ORG Fri Dec 19 17:24:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D5159B1; Fri, 19 Dec 2014 17:24:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 3E796224D; Fri, 19 Dec 2014 17:24:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBJHOFNu056430; Fri, 19 Dec 2014 17:24:15 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBJHOE76056425; Fri, 19 Dec 2014 17:24:14 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201412191724.sBJHOE76056425@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Fri, 19 Dec 2014 17:24:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374956 - in head/sysutils: . rubygem-logify X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Dec 2014 17:24:15 -0000 Author: pawel Date: Fri Dec 19 17:24:13 2014 New Revision: 374956 URL: https://svnweb.freebsd.org/changeset/ports/374956 QAT: https://qat.redports.org/buildarchive/r374956/ Log: Logify is an incredibly light-weight Ruby logger with a developer-friendly API and no dependencies. It is intentionally very opinionated and is optimized for speed. This combination makes it perfect for command line applications. WWW: https://github.com/sethvargo/logify PR: 195706 Submitted by: Michael Moll Added: head/sysutils/rubygem-logify/ head/sysutils/rubygem-logify/Makefile (contents, props changed) head/sysutils/rubygem-logify/distinfo (contents, props changed) head/sysutils/rubygem-logify/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Fri Dec 19 17:21:37 2014 (r374955) +++ head/sysutils/Makefile Fri Dec 19 17:24:13 2014 (r374956) @@ -823,6 +823,7 @@ SUBDIR += rubygem-hiera SUBDIR += rubygem-librarian-puppet SUBDIR += rubygem-log4r + SUBDIR += rubygem-logify SUBDIR += rubygem-mogilefs-client SUBDIR += rubygem-murder SUBDIR += rubygem-ohai Added: head/sysutils/rubygem-logify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-logify/Makefile Fri Dec 19 17:24:13 2014 (r374956) @@ -0,0 +1,18 @@ +# Created by: Michael Moll +# $FreeBSD$ + +PORTNAME= logify +PORTVERSION= 0.2.0 +CATEGORIES= sysutils ruby +MASTER_SITES= RG + +MAINTAINER= kvedulv@kvedulv.de +COMMENT= Lightweight logging library for Ruby + +LICENSE= APACHE20 + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include Added: head/sysutils/rubygem-logify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-logify/distinfo Fri Dec 19 17:24:13 2014 (r374956) @@ -0,0 +1,2 @@ +SHA256 (rubygem/logify-0.2.0.gem) = dea5393f34c81a4996428a36711a7c70866182b1f6b58a9099b7dc9c57e9b0a7 +SIZE (rubygem/logify-0.2.0.gem) = 14336 Added: head/sysutils/rubygem-logify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-logify/pkg-descr Fri Dec 19 17:24:13 2014 (r374956) @@ -0,0 +1,5 @@ +Logify is an incredibly light-weight Ruby logger with a developer-friendly API +and no dependencies. It is intentionally very opinionated and is optimized +for speed. This combination makes it perfect for command line applications. + +WWW: https://github.com/sethvargo/logify