Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Dec 2014 17:24:14 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r374956 - in head/sysutils: . rubygem-logify
Message-ID:  <201412191724.sBJHOE76056425@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <kvedulv@kvedulv.de>

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 <kvedulv@kvedulv.de>
+# $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 <bsd.port.mk>

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



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